Compare commits

..

114 commits

Author SHA1 Message Date
6be9e2e39a get double dip accessible via debug console 2026-08-04 22:44:56 -07:00
ef5fca2441 add enemy identity definitions to fix split on death 2026-08-04 22:13:49 -07:00
ce56b6d829 smear out blink times so enemies don't blink in clusters 2026-08-04 21:47:08 -07:00
f4a0dc57c3 blink moves forward a short number of meters, not along waypoint boundaries 2026-08-04 21:03:54 -07:00
dc9184075b grant enemy abilities in debug console 2026-08-04 20:40:32 -07:00
749c9203de Merge pull request '2.0_design_refactor' (#13) from 2.0_design_refactor into main
Reviewed-on: #13
2026-07-31 00:37:38 -07:00
16706a1ecf Scale difficulty by run position; wipe towers at phase end
Follow-up pass on the 2.0 refactor, closing the gap between "waves are drawn
at random" and "difficulty still lives in the enemy assets".

- Enemy health is no longer authored per enemy type. New EnemyScalingConfig
  scales a per-zone HP *budget* by encounter number; per-enemy health is that
  budget divided by the wave's enemy count. Scaling the total rather than the
  per-enemy value keeps enemy count a texture knob (few tanks vs many swarmers)
  instead of a second, uncontrolled difficulty axis. EnemyDefinition.MaxHp
  becomes HpMultiplier, a deviation around 1.0. Speed stays archetype-only and
  unscaled -- escalating it compounds with health and invalidates tower balance
  mid-run.
- GoldConfig entries no longer reference a WaveDefinition. Payout is a property
  of run position, not of which wave got drawn: WaveGoldEntry ->
  EncounterGoldEntry, Waves -> Encounters, keyed by global encounter number.
  Its inspector labels elements "Encounter N" and projects cumulative earnings.
- The wave's voted buffs now show as icon badges in the top bar, read from the
  same RunState slot the spawn path uses so the display can't drift from what
  the enemies actually carry. Hover names the buff; unillustrated cards fall
  back to a lettered badge rather than vanishing.
- Clearing a phase's boss destroys every built tower, unrefunded. Queued build
  jobs still refund -- those towers were never delivered. Runs with the field
  empty, so the walkability churn doesn't hit the re-path scheduler.
- Fixed an RPC codegen break: [ClientRpc] requires a ClientRpc suffix, unlike
  the newer [Rpc(SendTo...)] style this file doesn't use.
- Setup checklist reordered into dependency order; it previously asked for a
  RunDefinition two sections before creating one.

Also carries the editor-side asset reorganisation into Definitions/RunDefinitions
and the sprite move into Enemy/Player draft icon folders.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
2026-07-31 00:32:33 -07:00
4892d7253d First pass at full refactor to 2.0 design
Restructures the game around the cyclical run loop from Game Design Doc V2:
5 waves = a cycle, 3 cycles = a phase, each phase ends in a boss.

- New TD.Gameplay.Waves: WaveGroup / PhaseDefinition / RunDefinition author the
  run as draggable weighted pools; RunState owns phase/cycle position, the drawn
  wave slots, and the per-slot enemy buff sets. WaveManager's flat wave array is
  gone -- it now only runs the encounter RunState points at.
- New TD.Gameplay.EnemyUpgrades: the post-wave enemy-buff vote, with public
  live-replicated ballots so the HUD can show who voted for what.
- Inter-wave flow is now strictly sequential: draft -> vote -> build, each stage
  ending early once every player has acted.
- Enemy abilities inverted from per-instance random rolls to deterministic,
  stacking per-wave-slot sets. Six cards ship: Split (reworked), Flight, Blink,
  No Bounty, Gold Theft, Double Up.
- Tower upgrades are a two-step tree: a draft pick unlocks a node, gold converts
  an already-placed tower in place.
- Boss encounters flag their enemies and drive a boss HP bar.
- Player cap reduced to 3 via MatchRules.MaxPlayers.
- GoldConfig is now keyed by global encounter number rather than wave index.

Compiles clean; NOT yet verified in-engine. Editor wiring still required --
see Docs/2.0_Setup_Checklist.md.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
2026-07-30 17:45:11 -07:00
7e5c3a8279 Merge branch 'enemy-upgrades' 2026-07-28 22:46:37 -07:00
0a70f36838 simpler enemy split 2026-07-28 22:34:25 -07:00
Ben Calegari
0b7bc936ef Add settings menu to control audio and return to main menu 2026-07-28 22:02:28 -07:00
c88d3fc625 Merge branch 'main' of https://git.marlboro-bc.duckdns.org/yeahweregames/UnityTowerDefense 2026-07-28 21:59:00 -07:00
0498e7e786 Updating slow upgrade icon 2026-07-28 21:58:57 -07:00
11ad19992d enemies split, but it needs a bit of work 2026-07-28 21:40:59 -07:00
Ben Calegari
650cef7bfd Add autocomplete to dev console 2026-07-28 21:26:37 -07:00
8714885efa first pass at enemy upgrades 2026-07-28 20:59:43 -07:00
Ben Calegari
726af6d379 Fix retry after defeat 2026-07-28 20:47:06 -07:00
a26d0acbfb upgrades working; fix a small bug in which a base spell could be re-offered after picking an upgrade 2026-07-25 23:46:45 -07:00
2de6d85b2f slow area upgrade test 2026-07-25 23:22:11 -07:00
db9c828e63 start of draft option upgrades 2026-07-22 00:00:05 -07:00
e78ae0cda1 remove duplicate extra gold draft option 2026-07-21 21:23:18 -07:00
330a929985 remove deprecated buff system 2026-07-21 21:20:30 -07:00
35ea90f71b fix slow area spell area of effect 2026-07-21 20:56:55 -07:00
04d7b42e60 basic developer console 2026-07-21 20:37:57 -07:00
4375350901 added text entry system for debug console 2026-07-20 23:48:20 -07:00
e25a691ad9 no project of mine will have folders with spaces in the names 2026-07-18 21:38:16 -07:00
a33d951abd Updates to spells, HUD, Gold, and Camera Controls. New sound effects! 2026-07-18 18:12:56 -07:00
689fe7be88 shitty looking AOE effect for slow area 2026-07-17 00:03:36 -07:00
fe2c59d326 tab once selects builder, tab twice focuses builder 2026-07-16 20:49:13 -07:00
826d7b5037 Merge branch 'fireball-vfx' 2026-07-16 20:26:31 -07:00
c0e963fbeb fireball looks like a big stupid fuckin meatball now 2026-07-16 20:26:12 -07:00
c38d673768 adding sound effect game object to main branch 2026-07-14 23:57:13 -07:00
52f7bfdf51 Merge pull request 'tower-sell' (#12) from tower-sell into main
Reviewed-on: #12
2026-07-14 23:54:08 -07:00
9f87c04b4c reverting 9player changes 2026-07-14 23:28:12 -07:00
adfc6c106c little bit of sound 2026-07-14 23:24:29 -07:00
6c03a2f250 Docs: mark Tower Sell done; note budgeted pathfinding re-path scheduler
Updates Project_Context.md + Project_Roadmap.md for the tower-sell work (refund rules, coin VFX/SFX, refund excluded from income) and the PathfindingService budgeted re-path scheduler that removed the sell/placement frame hitch. Follows commit 0b4cde4 which landed the code + art.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-07-14 23:21:32 -07:00
0b4cde4590 Adding the feature to sell towers with VFX and audio included 2026-07-14 23:15:34 -07:00
dd87fd6d0a terrible looking placeholder for firework 2026-07-14 23:10:32 -07:00
fb945db872 serialize some fields 2026-07-14 22:04:08 -07:00
ef5063c8a5 get rid of temp logging 2026-07-14 21:41:10 -07:00
ca958376a4 spells work! changed the layer to enemy 2026-07-14 21:37:41 -07:00
7cf15dcaa6 draft options working; spells won't cast though 2026-07-14 20:56:50 -07:00
1794f65b19 Fix sell hitch: batch footprint un-stamp; warn on missing SellEffectSpawner
TowerInstance.StampFootprint now writes walkability via SetWalkableBatch instead of per-tile SetWalkable, so despawning (selling) a 2x2 tower fires one OnWalkabilityChanged / enemy re-path instead of four — matching placement and removing the frame hitch on sell. PlaySellEffectRpc now logs a one-time warning when no SellEffectSpawner is in the scene, since a missing spawner silently suppressed the coin VFX and sound.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-07-14 20:44:11 -07:00
86bc916c49 Fix NGO RequireOwnership deprecation warnings; add VFX script metas
Replace deprecated [Rpc(..., RequireOwnership = true)] with InvokePermission = RpcInvokePermission.Owner on the owner-submitted draft/buff RPCs (PlayerDraft, PlayerBuffManager), matching the pattern already used elsewhere. Also commits the .meta files Unity generated for the new sell-VFX scripts so their GUIDs are stable across machines.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-07-14 20:22:00 -07:00
9be31b1645 Add tower Sell action with refund + coin VFX/SFX
Owner-validated sell RPC refunds SellRefundPercent of invested gold (Wall refunds 100% while un-upgraded), despawns the tower, and broadcasts a coin-burst VFX + rustle SFX. Refunds do not count as per-wave income. Investment/upgrade tracking added as the seam for the future upgrade system.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-07-14 20:05:06 -07:00
ian
2429efbf6a Merge pull request 'new builder option per draft - first one is gold per kill' (#11) from builder-abilities into main
Reviewed-on: #11
2026-07-07 23:45:34 -07:00
bf3c008777 bit field swapped for normal list at API boundaries 2026-07-07 23:43:15 -07:00
157b77ebfa new builder option per draft - first one is gold per kill 2026-07-07 22:55:35 -07:00
05671e8b0c Removing unnecessary Terrain asset and moving 9 player terrain to art folder 2026-07-07 20:45:38 -07:00
4a37d3747c building falling from orbit sound 2026-07-06 23:56:45 -07:00
ffe38ed8b1 add sounds to a few more units 2026-07-06 14:13:25 -07:00
7c0beddec4 remove useless files 2026-07-06 14:08:53 -07:00
51b7d58ada cool sounds 2026-07-06 14:02:00 -07:00
da4f729681 rudimentary dust and shockwave 2026-07-06 13:20:23 -07:00
49ac784f6d VFX graph for basic dust 2026-07-06 11:26:49 -07:00
3febdcf021 remove old building effect vestiges 2026-07-03 14:18:01 -07:00
362b76ae75 towers fall from the sky - neat! 2026-07-03 14:05:08 -07:00
d14305d804 music 2026-06-30 23:27:36 -07:00
2286de6fbc Merge branch 'death-sounds' 2026-06-30 23:13:13 -07:00
9f25844657 death sounds, build sounds, better audio management 2026-06-30 23:12:27 -07:00
8c74bfe4c6 Merge pull request 'Adding VFX package, cleaning up texture on terrain slightly, and adding new build FX asset for orbital drop visuals.' (#10) from new-effects-work into main
Reviewed-on: #10
2026-06-30 22:33:05 -07:00
4f21f8a99b Merge branch 'main' into new-effects-work 2026-06-30 22:31:52 -07:00
28b0e2cdf2 Adding VFX package, cleaning up texture on terrain slightly, and adding new build FX asset for orbital drop visuals. 2026-06-30 22:22:58 -07:00
a7b2d1854d Merge branch 'unified-audio-manager' into main
# Conflicts:
#	Assets/_Project/Definitions/Towers/TeslaCoilTower.asset
2026-06-30 21:39:09 -07:00
Ben Calegari
fc4d2adfe6 Rename firerate > attacks per second 2026-06-30 20:36:13 -07:00
ec3f82c591 readme 2026-06-30 20:24:55 -07:00
404c749a43 unified audio manager that limits the number of simultaneous sounds in certain categories 2026-06-30 20:12:03 -07:00
Ben Calegari
ce6205cf2c Update rider integration 2026-06-30 20:05:18 -07:00
b6bc003f9e Merge pull request 'Adding Post Processing and lights to the tesla tower' (#9) from feature/post-processing into main
Reviewed-on: #9
2026-06-30 13:17:32 -07:00
2fbee5fd99 updating project context and roadmap files 2026-06-30 10:52:16 -07:00
d53a2a47e2 slightly slower fire rate, change fire rate name 2026-06-29 19:50:22 -07:00
c5cba2dcd7 sound isn't so terrible 2026-06-28 20:55:12 -07:00
95603a9a12 basic fire sound. very loud 2026-06-28 15:07:31 -07:00
587fc46f1a Adding Post Processing and lights to the tesla tower 2026-06-25 18:22:39 -07:00
819741ba6a Merge pull request 'feature/tesla-coil-tower' (#8) from feature/tesla-coil-tower into main
Reviewed-on: #8
2026-06-25 15:57:54 -07:00
b0cf9f619e Wiring 9Player scene to register new tower and construction set. 2026-06-25 11:36:55 -07:00
1afc78d64f Code fix to make sure towers are flush with the ground
This may need to be changed later if we have any towers that have visuals that go underneath the ground. Right now that won't work, but we also don't have anything like that.
2026-06-25 11:36:31 -07:00
699ea34268 Adding Tesla Coil Tower and Arc VFX
New tower!
2026-06-25 11:35:23 -07:00
7b93137216 Feature: per-tower construction-phase build bisuals
Adding the correct pipeline for creating the different building phases for towers. Adding a default set with primitive cubes.
2026-06-25 11:33:23 -07:00
a87b221d87 Refactor: Remove TowerRegistry, replicate towers by TypeID
Removing redundant workflow and making sure there's just once source of truth for the list of available towers.
2026-06-25 11:21:43 -07:00
63b8195985 Updating 9player map to support new draft system 2026-06-24 00:31:29 -07:00
b0ca2e1d28 Merge branch 'feature/draft-system' 2026-06-24 00:27:03 -07:00
3ceebed8f6 Adding the bones of the drafting system by removing the wall and siege towers from the base set and adding them temporarily as choices for the draft. Also adding Project_Context and Project_Roadmap documents to use with Claude 2026-06-24 00:15:17 -07:00
ec3a7a97a1 replacing obsolete SiegeCannon definition 2026-06-23 23:23:38 -07:00
Ben Calegari
c5c02ecc7e Fix cone make it look nice 2026-06-23 23:12:50 -07:00
Ben Calegari
4f57499e40 Seige tower 2026-06-23 23:12:48 -07:00
Ben Calegari
430e66bfbf Replace square with cone for Basic Arrow Tower. 2026-06-23 23:12:32 -07:00
ian
90fd1c23d3 Merge pull request 'enemies face south' (#6) from enemies-face-north into main
Reviewed-on: #6
2026-06-23 23:10:54 -07:00
a99570a29e enemies face south 2026-06-23 23:10:34 -07:00
1d03689dad Update WaveManager.cs 2026-06-23 22:52:24 -07:00
04d4167db6 Merge branch 'main' of https://git.marlboro-bc.duckdns.org/yeahweregames/UnityTowerDefense 2026-06-23 22:36:57 -07:00
ian
49ce33b162 Merge pull request 'enemies spawn held in place' (#5) from enemies-spawn-held-in-place into main
Reviewed-on: #5
2026-06-23 22:28:07 -07:00
4e11842d3e Merge branch 'main' of https://git.marlboro-bc.duckdns.org/yeahweregames/UnityTowerDefense 2026-06-23 22:27:37 -07:00
d685894878 Adding flying functionality for enemies 2026-06-23 22:27:35 -07:00
ff921080db enemies spawn held in place 2026-06-23 22:21:32 -07:00
3f3ad71741 Merge pull request 'Adding new tower types and concept of tower deck' (#4) from feature/tower-deck into main
Reviewed-on: #4
2026-06-23 22:00:26 -07:00
117c77b4a8 Adding new tower types and concept of tower deck 2026-06-23 21:55:12 -07:00
54f11d91ff remove chunk size - it's always 10% of wave size 2026-06-23 21:42:01 -07:00
f301d7ade9 Y offsets to spawning 2026-06-23 21:32:05 -07:00
53e7fc78a7 enemies spawn with offsets in positions and animations 2026-06-23 21:16:12 -07:00
ian
d1930a6b00 Merge pull request 'first-roguelike-elements' (#3) from first-roguelike-elements into main
Reviewed-on: #3
2026-06-23 20:39:28 -07:00
92f7dc5a3b fix merge conflicts 2026-06-23 20:38:32 -07:00
8f394e1d92 fix bugs 2026-06-23 20:26:55 -07:00
53f2a3e8a8 more changes, i guess 2026-06-23 20:00:23 -07:00
8170f8d5e0 adding uncommited files (oops) 2026-06-23 19:57:38 -07:00
1256c46359 B button launches upgrade menu 2026-06-23 19:57:38 -07:00
b772a7d4a2 purchase buffs menu works 2026-06-23 19:57:38 -07:00
f32dbfae78 add wiring for offensive buffs 2026-06-23 19:57:35 -07:00
b4986f9715 Removing unnecessary files for unused visual scripting 2026-06-16 23:25:52 -07:00
cd954db4ed Merge pull request 'moving-used-fbx-files' (#2) from moving-used-fbx-files into main
Reviewed-on: #2
2026-06-16 22:26:51 -07:00
b610e08f7f Removing unnecessary Kevin Iglesias files from project. 2026-06-16 22:24:14 -07:00
73f3aca81c Removing unused skeleton assets, and moving all of the default builder animations and fbx files into our _project folder 2026-06-16 22:21:32 -07:00
1a61b6a7c6 Merge pull request 'Committing FBX changes' (#1) from moving-used-fbx-files into main
Reviewed-on: #1
2026-06-16 21:41:32 -07:00
7e37a8cf65 Committing FBX changes 2026-06-16 21:39:55 -07:00
1177 changed files with 49442 additions and 146124 deletions

View file

@ -24,26 +24,16 @@ MonoBehaviour:
SourcePrefabToOverride: {fileID: 0}
SourceHashToOverride: 0
OverridingTargetPrefab: {fileID: 0}
- Override: 0
Prefab: {fileID: 6482414459531823157, guid: 85ad5cd50543454891b343720f3048d6, type: 3}
SourcePrefabToOverride: {fileID: 0}
SourceHashToOverride: 0
OverridingTargetPrefab: {fileID: 0}
- Override: 0
Prefab: {fileID: 116861493430507844, guid: 3398cc5831880954487717577f61b6d7, type: 3}
SourcePrefabToOverride: {fileID: 0}
SourceHashToOverride: 0
OverridingTargetPrefab: {fileID: 0}
- Override: 0
Prefab: {fileID: 7720770984308489338, guid: dff852699e2897b4494fcbc7f7e547d6, type: 3}
SourcePrefabToOverride: {fileID: 0}
SourceHashToOverride: 0
OverridingTargetPrefab: {fileID: 0}
- Override: 0
Prefab: {fileID: 542940493432372272, guid: b70c4a4fcf14edd41a14214619da4d15, type: 3}
SourcePrefabToOverride: {fileID: 0}
SourceHashToOverride: 0
OverridingTargetPrefab: {fileID: 0}
- Override: 0
Prefab: {fileID: 1455822126534880203, guid: 0854f339a1958d343a6cb16cd3f907ff, type: 3}
SourcePrefabToOverride: {fileID: 0}
SourceHashToOverride: 0
OverridingTargetPrefab: {fileID: 0}
- Override: 0
Prefab: {fileID: 2664719039363295382, guid: dc2e4a4108e03874a8b2dab88dcc8fba, type: 3}
SourcePrefabToOverride: {fileID: 0}
@ -99,3 +89,13 @@ MonoBehaviour:
SourcePrefabToOverride: {fileID: 0}
SourceHashToOverride: 0
OverridingTargetPrefab: {fileID: 0}
- Override: 0
Prefab: {fileID: 6482414459531823157, guid: 5a9e31f20d023e44dbd1c6d7dcdf4f71, type: 3}
SourcePrefabToOverride: {fileID: 0}
SourceHashToOverride: 0
OverridingTargetPrefab: {fileID: 0}
- Override: 0
Prefab: {fileID: 7720770984308489338, guid: dff852699e2897b4494fcbc7f7e547d6, type: 3}
SourcePrefabToOverride: {fileID: 0}
SourceHashToOverride: 0
OverridingTargetPrefab: {fileID: 0}

View file

@ -1,8 +0,0 @@
fileFormatVersion: 2
guid: 5e92f90055a54ab47b74a1f5297faecd
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View file

@ -1,975 +0,0 @@
fileFormatVersion: 2
guid: f3894581926850a43be23e43d5465af5
labels:
- Animation
ModelImporter:
serializedVersion: 22200
internalIDToNameTable: []
externalObjects: {}
materials:
materialImportMode: 0
materialName: 0
materialSearch: 1
materialLocation: 1
animations:
legacyGenerateAnimations: 4
bakeSimulation: 0
resampleCurves: 1
optimizeGameObjects: 0
removeConstantScaleCurves: 0
motionNodeName:
animationImportErrors:
animationImportWarnings:
animationRetargetingWarnings:
animationDoRetargetingWarnings: 0
importAnimatedCustomProperties: 0
importConstraints: 0
animationCompression: 0
animationRotationError: 0.5
animationPositionError: 0.5
animationScaleError: 0.5
animationWrapMode: 0
extraExposedTransformPaths: []
extraUserProperties: []
clipAnimations:
- serializedVersion: 16
name: HumanF@Idle01-Idle02
takeName: Untitled
internalID: 3094330708855449807
firstFrame: 0
lastFrame: 20
wrapMode: 0
orientationOffsetY: 0
level: 0
cycleOffset: 0
loop: 0
hasAdditiveReferencePose: 0
loopTime: 0
loopBlend: 0
loopBlendOrientation: 1
loopBlendPositionY: 1
loopBlendPositionXZ: 1
keepOriginalOrientation: 1
keepOriginalPositionY: 1
keepOriginalPositionXZ: 1
heightFromFeet: 0
mirror: 0
bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
curves: []
events: []
transformMask:
- path:
weight: 1
- path: HumanF_BodyMesh
weight: 0
- path: Rig
weight: 1
- path: Rig/B-root
weight: 1
- path: Rig/B-root/B-hips
weight: 1
- path: Rig/B-root/B-hips/B-spine
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck/B-head
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck/B-head/B-jaw
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-handProp.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L/B-indexFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L/B-indexFinger02.L/B-indexFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L/B-middleFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L/B-middleFinger02.L/B-middleFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L/B-pinky02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L/B-pinky02.L/B-pinky03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L/B-ringFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L/B-ringFinger02.L/B-ringFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L/B-thumb02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L/B-thumb02.L/B-thumb03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-handProp.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R/B-indexFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R/B-indexFinger02.R/B-indexFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R/B-middleFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R/B-middleFinger02.R/B-middleFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R/B-pinky02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R/B-pinky02.R/B-pinky03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R/B-ringFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R/B-ringFinger02.R/B-ringFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R/B-thumb02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R/B-thumb02.R/B-thumb03.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L/B-foot.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L/B-foot.L/B-toe.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R/B-foot.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R/B-foot.R/B-toe.R
weight: 1
- path: Rig/B-root/B-spineProxy
weight: 1
maskType: 1
maskSource: {fileID: 31900000, guid: 89527f5525238ee44b3182458d85143a, type: 2}
additiveReferencePoseFrame: 0
isReadable: 0
meshes:
lODScreenPercentages: []
globalScale: 1
meshCompression: 0
addColliders: 0
useSRGBMaterialColor: 1
sortHierarchyByName: 1
importPhysicalCameras: 1
importVisibility: 1
importBlendShapes: 1
importCameras: 1
importLights: 1
nodeNameCollisionStrategy: 1
fileIdsGeneration: 2
swapUVChannels: 0
generateSecondaryUV: 0
useFileUnits: 1
keepQuads: 0
weldVertices: 1
bakeAxisConversion: 0
preserveHierarchy: 1
skinWeightsMode: 0
maxBonesPerVertex: 4
minBoneWeight: 0.001
optimizeBones: 1
meshOptimizationFlags: -1
indexFormat: 0
secondaryUVAngleDistortion: 8
secondaryUVAreaDistortion: 15.000001
secondaryUVHardAngle: 88
secondaryUVMarginMethod: 1
secondaryUVMinLightmapResolution: 40
secondaryUVMinObjectScale: 1
secondaryUVPackMargin: 4
useFileScale: 1
strictVertexDataChecks: 0
tangentSpace:
normalSmoothAngle: 60
normalImportMode: 0
tangentImportMode: 3
normalCalculationMode: 4
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0
blendShapeNormalImportMode: 1
normalSmoothingSource: 0
referencedClips: []
importAnimation: 1
humanDescription:
serializedVersion: 3
human:
- boneName: B-hips
humanName: Hips
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thigh.L
humanName: LeftUpperLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thigh.R
humanName: RightUpperLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shin.L
humanName: LeftLowerLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shin.R
humanName: RightLowerLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-foot.L
humanName: LeftFoot
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-foot.R
humanName: RightFoot
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-spine
humanName: Spine
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-chest
humanName: Chest
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-neck
humanName: Neck
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-head
humanName: Head
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shoulder.L
humanName: LeftShoulder
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shoulder.R
humanName: RightShoulder
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-upperArm.L
humanName: LeftUpperArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-upperArm.R
humanName: RightUpperArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-forearm.L
humanName: LeftLowerArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-forearm.R
humanName: RightLowerArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-hand.L
humanName: LeftHand
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-hand.R
humanName: RightHand
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-toe.L
humanName: LeftToes
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-toe.R
humanName: RightToes
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-jaw
humanName: Jaw
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb01.L
humanName: Left Thumb Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb02.L
humanName: Left Thumb Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb03.L
humanName: Left Thumb Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger01.L
humanName: Left Index Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger02.L
humanName: Left Index Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger03.L
humanName: Left Index Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger01.L
humanName: Left Middle Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger02.L
humanName: Left Middle Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger03.L
humanName: Left Middle Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger01.L
humanName: Left Ring Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger02.L
humanName: Left Ring Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger03.L
humanName: Left Ring Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky01.L
humanName: Left Little Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky02.L
humanName: Left Little Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky03.L
humanName: Left Little Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb01.R
humanName: Right Thumb Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb02.R
humanName: Right Thumb Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb03.R
humanName: Right Thumb Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger01.R
humanName: Right Index Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger02.R
humanName: Right Index Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger03.R
humanName: Right Index Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger01.R
humanName: Right Middle Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger02.R
humanName: Right Middle Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger03.R
humanName: Right Middle Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger01.R
humanName: Right Ring Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger02.R
humanName: Right Ring Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger03.R
humanName: Right Ring Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky01.R
humanName: Right Little Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky02.R
humanName: Right Little Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky03.R
humanName: Right Little Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
skeleton:
- name: Human_DummyModel_F(Clone)
parentName:
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: HumanF_BodyMesh
parentName: Human_DummyModel_F(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Rig
parentName: Human_DummyModel_F(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: B-root
parentName: Rig
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: B-spineProxy
parentName: B-root
position: {x: -0, y: 1.092844, z: 0.029147}
rotation: {x: -0.012905054, y: 0, z: -0, w: 0.99991673}
scale: {x: 1, y: 1.0000001, z: 1.0000001}
- name: B-hips
parentName: B-root
position: {x: -0, y: 0.967712, z: 0.016772}
rotation: {x: 0.04926631, y: 0, z: -0, w: 0.9987857}
scale: {x: 1, y: 1.0000004, z: 1.0000004}
- name: B-spine
parentName: B-hips
position: {x: -0, y: 0.12574437, z: 0.00000011940791}
rotation: {x: -0.062152267, y: 0, z: -0, w: 0.99806666}
scale: {x: 1, y: 0.99999976, z: 0.99999976}
- name: B-chest
parentName: B-spine
position: {x: -0, y: 0.13376056, z: -0.00000077390683}
rotation: {x: -0.02258696, y: 0, z: -0, w: 0.9997449}
scale: {x: 1, y: 0.9999996, z: 0.9999996}
- name: B-shoulder.R
parentName: B-chest
position: {x: -0, y: 0.19125995, z: -0.005656177}
rotation: {x: -0.5165573, y: -0.44464085, z: -0.47738376, w: 0.554588}
scale: {x: 1.0000008, y: 1.0000006, z: 1.0000002}
- name: B-upperArm.R
parentName: B-shoulder.R
position: {x: -0.00000043065853, y: 0.1619337, z: -0.000000866464}
rotation: {x: 0.03406315, y: 0.7090742, z: -0.08345674, w: 0.69934857}
scale: {x: 0.99999976, y: 1, z: 0.99999946}
- name: B-forearm.R
parentName: B-upperArm.R
position: {x: -0.0000005071642, y: 0.23413825, z: 0.0000019611641}
rotation: {x: 0.0013730773, y: -0.00042225965, z: 0.0032032696, w: 0.99999386}
scale: {x: 1.0000001, y: 0.99999964, z: 0.9999996}
- name: B-hand.R
parentName: B-forearm.R
position: {x: -0.000000328232, y: 0.19596381, z: -0.0000008355853}
rotation: {x: 0.013529134, y: 0.7054088, z: 0.032969795, w: 0.70790416}
scale: {x: 0.9999999, y: 1.0000002, z: 1.0000005}
- name: B-handProp.R
parentName: B-hand.R
position: {x: 0.0029605331, y: 0.10533051, z: 0.022608897}
rotation: {x: -0.67608327, y: 0.73659164, z: -0.013668106, w: -0.012545319}
scale: {x: 0.99999964, y: 1.0000005, z: 0.9999996}
- name: B-indexFinger01.R
parentName: B-hand.R
position: {x: -0.036052607, y: 0.13202412, z: -0.0022375023}
rotation: {x: 0.019054495, y: -0.0149580045, z: 0.031315368, w: 0.999216}
scale: {x: 1.0000002, y: 0.99999964, z: 0.9999993}
- name: B-indexFinger02.R
parentName: B-indexFinger01.R
position: {x: 0.00000021708313, y: 0.046758045, z: -0.0000005285747}
rotation: {x: 0.040758472, y: 0.02876925, z: -0.0030862393, w: 0.99875003}
scale: {x: 1, y: 1.0000004, z: 1.0000002}
- name: B-indexFinger03.R
parentName: B-indexFinger02.R
position: {x: 0.000000038075022, y: 0.034652043, z: 0.00000019983679}
rotation: {x: -0.006236443, y: 0.004024028, z: -0.0109188985, w: 0.99991286}
scale: {x: 0.9999999, y: 0.9999999, z: 0.99999964}
- name: B-middleFinger01.R
parentName: B-hand.R
position: {x: -0.00928522, y: 0.1318378, z: -0.0089382}
rotation: {x: -0.004700204, y: -0.0032572027, z: -0.001801642, w: 0.99998206}
scale: {x: 1.0000006, y: 0.9999997, z: 0.99999917}
- name: B-middleFinger02.R
parentName: B-middleFinger01.R
position: {x: -0.0000003849299, y: 0.048716273, z: -0.0000001691299}
rotation: {x: 0.039366316, y: 0.04573892, z: 0.00377753, w: 0.9981703}
scale: {x: 0.9999997, y: 1.0000004, z: 1}
- name: B-middleFinger03.R
parentName: B-middleFinger02.R
position: {x: -0.00000039262213, y: 0.035888083, z: 0.00000029152696}
rotation: {x: 0.0049846717, y: -0.02122791, z: -0.0063242065, w: 0.99974227}
scale: {x: 0.99999964, y: 0.99999994, z: 1.0000002}
- name: B-ringFinger01.R
parentName: B-hand.R
position: {x: 0.016020812, y: 0.1283572, z: -0.005707851}
rotation: {x: -0.0071167736, y: 0.0017728558, z: -0.036400504, w: 0.9993104}
scale: {x: 1.0000005, y: 0.9999992, z: 0.9999996}
- name: B-ringFinger02.R
parentName: B-ringFinger01.R
position: {x: 0.00000047158898, y: 0.045192316, z: 0.00000021597218}
rotation: {x: 0.037958622, y: -0.0021153935, z: 0.012520862, w: 0.9991986}
scale: {x: 0.99999946, y: 1.0000005, z: 0.9999997}
- name: B-ringFinger03.R
parentName: B-ringFinger02.R
position: {x: -0.0000004720245, y: 0.034694634, z: 0.00000008820079}
rotation: {x: 0.02091165, y: -0.04065229, z: -0.015794862, w: 0.99882966}
scale: {x: 1.0000002, y: 0.99999976, z: 0.9999997}
- name: B-pinky01.R
parentName: B-hand.R
position: {x: 0.041580904, y: 0.119742304, z: -0.0024299922}
rotation: {x: -0.011731888, y: -0.016481936, z: -0.04421447, w: 0.9988172}
scale: {x: 1.0000002, y: 0.9999994, z: 0.99999917}
- name: B-pinky02.R
parentName: B-pinky01.R
position: {x: 0.0000007804244, y: 0.03832724, z: 0.00000044214514}
rotation: {x: 0.039002027, y: 0.011177708, z: 0.009234122, w: 0.99913394}
scale: {x: 1.0000002, y: 1.0000006, z: 1.0000002}
- name: B-pinky03.R
parentName: B-pinky02.R
position: {x: -0.000000269953, y: 0.03220071, z: -0.0000005856981}
rotation: {x: 0.022101695, y: -0.02182341, z: 0.009210792, w: 0.99947506}
scale: {x: 1.0000005, y: 0.99999994, z: 1.0000007}
- name: B-thumb01.R
parentName: B-hand.R
position: {x: -0.039809253, y: 0.048496302, z: 0.0130518135}
rotation: {x: -0.22471787, y: 0.63045275, z: 0.29821387, w: 0.6805144}
scale: {x: 0.99999946, y: 1.0000002, z: 1.0000005}
- name: B-thumb02.R
parentName: B-thumb01.R
position: {x: 0.00000020260806, y: 0.047178134, z: 0.000000160123}
rotation: {x: 0.038173996, y: 0.013301423, z: -0.008042345, w: 0.9991502}
scale: {x: 1.0000007, y: 0.9999997, z: 0.9999999}
- name: B-thumb03.R
parentName: B-thumb02.R
position: {x: -0.00000069069114, y: 0.03520854, z: 0.00000004046409}
rotation: {x: -0.060352694, y: 0.014396386, z: 0.0074255248, w: 0.9980457}
scale: {x: 0.9999995, y: 1.0000004, z: 1}
- name: B-neck
parentName: B-chest
position: {x: -0, y: 0.27081212, z: 0.0000007058524}
rotation: {x: 0.105346866, y: 0, z: -0, w: 0.99443555}
scale: {x: 1, y: 0.9999997, z: 1.0000007}
- name: B-head
parentName: B-neck
position: {x: -0, y: 0.07409704, z: 0.00000025054106}
rotation: {x: -0.069990024, y: 0, z: -0, w: 0.9975477}
scale: {x: 1, y: 1.0000006, z: 0.99999964}
- name: B-jaw
parentName: B-head
position: {x: -0, y: 0, z: 0}
rotation: {x: 0.70698464, y: 0.000007072379, z: -0.00000706994, w: 0.7072289}
scale: {x: 1, y: 1, z: 1}
- name: B-shoulder.L
parentName: B-chest
position: {x: -0, y: 0.19125995, z: -0.005656177}
rotation: {x: -0.5165571, y: 0.44464028, z: 0.47738382, w: 0.5545886}
scale: {x: 0.9999998, y: 0.9999995, z: 1.0000002}
- name: B-upperArm.L
parentName: B-shoulder.L
position: {x: 0.00000040656337, y: 0.16193385, z: -0.0000008664629}
rotation: {x: 0.033948872, y: -0.70908755, z: 0.08334149, w: 0.69935447}
scale: {x: 0.9999998, y: 1.0000002, z: 0.9999999}
- name: B-forearm.L
parentName: B-upperArm.L
position: {x: 0.000000097359035, y: 0.2341381, z: 0.00000030291466}
rotation: {x: 0.0017385628, y: 0.0004205673, z: -0.0032047313, w: 0.99999326}
scale: {x: 0.99999994, y: 1.0000004, z: 1.0000001}
- name: B-hand.L
parentName: B-forearm.L
position: {x: 0.00000052406216, y: 0.1959644, z: -0.0000011816531}
rotation: {x: 0.013386631, y: -0.70541465, z: -0.032826252, w: 0.7079078}
scale: {x: 0.99999994, y: 0.9999992, z: 0.9999996}
- name: B-handProp.L
parentName: B-hand.L
position: {x: -0.0029615294, y: 0.10533054, z: 0.02260892}
rotation: {x: 0.67608327, y: 0.73659164, z: -0.013668119, w: 0.012545332}
scale: {x: 1.0000006, y: 0.99999946, z: 1.0000006}
- name: B-indexFinger01.L
parentName: B-hand.L
position: {x: 0.03605161, y: 0.13202417, z: -0.0022375062}
rotation: {x: 0.019054513, y: 0.014957919, z: -0.03131587, w: 0.99921596}
scale: {x: 1.0000004, y: 0.9999998, z: 1.0000002}
- name: B-indexFinger02.L
parentName: B-indexFinger01.L
position: {x: 0.00000072554116, y: 0.04675823, z: -0.0000005109258}
rotation: {x: 0.04075494, y: -0.02876944, z: 0.0030826945, w: 0.9987502}
scale: {x: 1.0000001, y: 1.0000002, z: 1.0000002}
- name: B-indexFinger03.L
parentName: B-indexFinger02.L
position: {x: -0.00000009920999, y: 0.034652077, z: 0.00000023013986}
rotation: {x: -0.0062364372, y: -0.004023549, z: 0.010918792, w: 0.99991286}
scale: {x: 0.9999998, y: 1.0000008, z: 0.9999995}
- name: B-middleFinger01.L
parentName: B-hand.L
position: {x: 0.00928522, y: 0.13183793, z: -0.008938214}
rotation: {x: -0.004700207, y: 0.0032570793, z: 0.0018007505, w: 0.99998206}
scale: {x: 1.0000007, y: 0.9999999, z: 1.0000001}
- name: B-middleFinger02.L
parentName: B-middleFinger01.L
position: {x: 0.00000028786184, y: 0.048716314, z: -0.00000017087451}
rotation: {x: 0.039368037, y: -0.045739666, z: -0.0037847473, w: 0.9981702}
scale: {x: 0.99999976, y: 1.000001, z: 1.0000006}
- name: B-middleFinger03.L
parentName: B-middleFinger02.L
position: {x: -0.00000066842983, y: 0.035888, z: 0.00000028642995}
rotation: {x: 0.0049827034, y: 0.021227859, z: 0.0063241003, w: 0.99974227}
scale: {x: 0.9999996, y: 0.99999905, z: 0.99999934}
- name: B-ringFinger01.L
parentName: B-hand.L
position: {x: -0.016021809, y: 0.12835726, z: -0.005707858}
rotation: {x: -0.007116776, y: -0.0017729683, z: 0.036399588, w: 0.99931043}
scale: {x: 1.0000005, y: 1.0000002, z: 1.0000006}
- name: B-ringFinger02.L
parentName: B-ringFinger01.L
position: {x: 0.00000043795694, y: 0.04519233, z: 0.00000021050154}
rotation: {x: 0.037963506, y: 0.0021157071, z: -0.01252746, w: 0.9991984}
scale: {x: 0.9999995, y: 0.99999964, z: 0.9999996}
- name: B-ringFinger03.L
parentName: B-ringFinger02.L
position: {x: 0.00000034561023, y: 0.03469565, z: -0.00000007648653}
rotation: {x: 0.020911071, y: 0.04065225, z: 0.015794758, w: 0.99882966}
scale: {x: 1.0000001, y: 1.0000005, z: 0.9999997}
- name: B-pinky01.L
parentName: B-hand.L
position: {x: -0.041581903, y: 0.119742356, z: -0.0024299957}
rotation: {x: -0.01172906, y: 0.01648238, z: 0.0442254, w: 0.9988167}
scale: {x: 1.0000002, y: 1.0000004, z: 1.0000002}
- name: B-pinky02.L
parentName: B-pinky01.L
position: {x: 0.00000014151807, y: 0.03832722, z: 0.00000047056287}
rotation: {x: 0.039005004, y: -0.011177422, z: -0.009239738, w: 0.99913377}
scale: {x: 1.0000002, y: 0.99999946, z: 1.0000001}
- name: B-pinky03.L
parentName: B-pinky02.L
position: {x: 0.000000233103, y: 0.032200746, z: -0.00000055902217}
rotation: {x: 0.022101717, y: 0.02182328, z: -0.009211465, w: 0.99947506}
scale: {x: 0.9999995, y: 1, z: 0.99999964}
- name: B-thumb01.L
parentName: B-hand.L
position: {x: 0.03980834, y: 0.048495278, z: 0.013051865}
rotation: {x: -0.2247114, y: -0.6304557, z: -0.2982149, w: 0.6805132}
scale: {x: 1.0000005, y: 1, z: 1.0000005}
- name: B-thumb02.L
parentName: B-thumb01.L
position: {x: -0.0000007063521, y: 0.047179468, z: -0.00000013365789}
rotation: {x: 0.038171936, y: -0.013301728, z: 0.008042519, w: 0.9991503}
scale: {x: 1.0000004, y: 1, z: 0.9999994}
- name: B-thumb03.L
parentName: B-thumb02.L
position: {x: 0.0000007190916, y: 0.035208564, z: 0.00000017922088}
rotation: {x: -0.06035389, y: -0.014396597, z: -0.007425322, w: 0.9980456}
scale: {x: 0.9999992, y: 0.99999994, z: 1.0000001}
- name: B-thigh.L
parentName: B-hips
position: {x: -0.096950985, y: -0.05446949, z: 0.0020414153}
rotation: {x: 0.9977441, y: 0.011110197, z: -0.0039620763, w: 0.066088475}
scale: {x: 1.0000002, y: 0.9999997, z: 1.000001}
- name: B-shin.L
parentName: B-thigh.L
position: {x: 0.00000018468991, y: 0.41111633, z: 0.0000005281011}
rotation: {x: 0.067057244, y: -0.00057845906, z: 0.011617889, w: 0.9976813}
scale: {x: 0.9999997, y: 1.0000002, z: 0.99999964}
- name: B-foot.L
parentName: B-shin.L
position: {x: -0.00000017405802, y: 0.3880767, z: -0.00000019306846}
rotation: {x: -0.5354999, y: 0.004330197, z: 0.0016612022, w: 0.84452266}
scale: {x: 1.0000001, y: 0.9999997, z: 0.99999976}
- name: B-toe.L
parentName: B-foot.L
position: {x: -0.00000027025197, y: 0.17254004, z: -0.000000117418054}
rotation: {x: 0.000012936387, y: 0.9622731, z: -0.27208534, w: 0.00017343421}
scale: {x: 1, y: 1.0000018, z: 0.999999}
- name: B-thigh.R
parentName: B-hips
position: {x: 0.096950985, y: -0.05446959, z: 0.0020404202}
rotation: {x: 0.9977441, y: -0.011109428, z: 0.003967029, w: 0.066088304}
scale: {x: 1.0000004, y: 0.99999976, z: 1.000008}
- name: B-shin.R
parentName: B-thigh.R
position: {x: 0.0000005496826, y: 0.41111633, z: -0.00000065481464}
rotation: {x: 0.06705632, y: 0.0005783735, z: -0.011616509, w: 0.99768144}
scale: {x: 0.9999997, y: 1.0000002, z: 1.0000007}
- name: B-foot.R
parentName: B-shin.R
position: {x: -0.00000044263592, y: 0.3880767, z: 0.000000107811644}
rotation: {x: -0.53550065, y: -0.0043338453, z: -0.0016630876, w: 0.84452206}
scale: {x: 1, y: 0.9999993, z: 0.99999994}
- name: B-toe.R
parentName: B-foot.R
position: {x: 0.00000074386196, y: 0.17254034, z: 0.00000017937037}
rotation: {x: -0.000012542016, y: 0.96227294, z: -0.27208585, w: -0.00017487761}
scale: {x: 1, y: 1.0000029, z: 0.999997}
armTwist: 0.5
foreArmTwist: 0.5
upperLegTwist: 0.5
legTwist: 0.5
armStretch: 0.05
legStretch: 0.05
feetSpacing: 0
globalScale: 1
rootMotionBoneName:
hasTranslationDoF: 0
hasExtraRoot: 0
skeletonHasParents: 1
lastHumanDescriptionAvatarSource: {fileID: 9000000, guid: 1841c298173cdad4db8df8602c8f1c8d,
type: 3}
autoGenerateAvatarMappingIfUnspecified: 1
animationType: 3
humanoidOversampling: 1
avatarSetup: 2
addHumanoidExtraRootOnlyWhenUsingAvatar: 1
importBlendShapeDeformPercent: 1
remapMaterialsIfMaterialImportModeIsNone: 0
additionalBone: 0
userData:
assetBundleName:
assetBundleVariant:
AssetOrigin:
serializedVersion: 1
productId: 154271
packageName: Human Basic Motions FREE
packageVersion: 2.4.2
assetPath: Assets/Kevin Iglesias/Human Animations/Animations/Female/Idles/HumanF@Idle01-Idle02.fbx
uploadId: 908942

View file

@ -1,975 +0,0 @@
fileFormatVersion: 2
guid: 0f69fd4f4ad106447896fb775199ed37
ModelImporter:
serializedVersion: 22200
internalIDToNameTable: []
externalObjects: {}
materials:
materialImportMode: 0
materialName: 0
materialSearch: 1
materialLocation: 1
animations:
legacyGenerateAnimations: 4
bakeSimulation: 0
resampleCurves: 1
optimizeGameObjects: 0
removeConstantScaleCurves: 0
motionNodeName:
rigImportErrors:
rigImportWarnings:
animationImportErrors:
animationImportWarnings:
animationRetargetingWarnings:
animationDoRetargetingWarnings: 0
importAnimatedCustomProperties: 0
importConstraints: 0
animationCompression: 0
animationRotationError: 0.5
animationPositionError: 0.5
animationScaleError: 0.5
animationWrapMode: 0
extraExposedTransformPaths: []
extraUserProperties: []
clipAnimations:
- serializedVersion: 16
name: HumanF@Idle01
takeName: Untitled
internalID: 3094330708855449807
firstFrame: 0
lastFrame: 81
wrapMode: 0
orientationOffsetY: 0
level: 0
cycleOffset: 0
loop: 0
hasAdditiveReferencePose: 0
loopTime: 1
loopBlend: 0
loopBlendOrientation: 1
loopBlendPositionY: 1
loopBlendPositionXZ: 1
keepOriginalOrientation: 1
keepOriginalPositionY: 1
keepOriginalPositionXZ: 1
heightFromFeet: 0
mirror: 0
bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
curves: []
events: []
transformMask:
- path:
weight: 1
- path: HumanF_BodyMesh
weight: 0
- path: Rig
weight: 1
- path: Rig/B-root
weight: 1
- path: Rig/B-root/B-hips
weight: 1
- path: Rig/B-root/B-hips/B-spine
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck/B-head
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck/B-head/B-jaw
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-handProp.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L/B-indexFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L/B-indexFinger02.L/B-indexFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L/B-middleFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L/B-middleFinger02.L/B-middleFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L/B-pinky02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L/B-pinky02.L/B-pinky03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L/B-ringFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L/B-ringFinger02.L/B-ringFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L/B-thumb02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L/B-thumb02.L/B-thumb03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-handProp.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R/B-indexFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R/B-indexFinger02.R/B-indexFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R/B-middleFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R/B-middleFinger02.R/B-middleFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R/B-pinky02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R/B-pinky02.R/B-pinky03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R/B-ringFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R/B-ringFinger02.R/B-ringFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R/B-thumb02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R/B-thumb02.R/B-thumb03.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L/B-foot.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L/B-foot.L/B-toe.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R/B-foot.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R/B-foot.R/B-toe.R
weight: 1
- path: Rig/B-root/B-spineProxy
weight: 1
maskType: 1
maskSource: {fileID: 31900000, guid: 89527f5525238ee44b3182458d85143a, type: 2}
additiveReferencePoseFrame: 0
isReadable: 0
meshes:
lODScreenPercentages: []
globalScale: 1
meshCompression: 0
addColliders: 0
useSRGBMaterialColor: 1
sortHierarchyByName: 1
importPhysicalCameras: 1
importVisibility: 1
importBlendShapes: 1
importCameras: 1
importLights: 1
nodeNameCollisionStrategy: 1
fileIdsGeneration: 2
swapUVChannels: 0
generateSecondaryUV: 0
useFileUnits: 1
keepQuads: 0
weldVertices: 1
bakeAxisConversion: 0
preserveHierarchy: 1
skinWeightsMode: 0
maxBonesPerVertex: 4
minBoneWeight: 0.001
optimizeBones: 1
meshOptimizationFlags: -1
indexFormat: 0
secondaryUVAngleDistortion: 8
secondaryUVAreaDistortion: 15.000001
secondaryUVHardAngle: 88
secondaryUVMarginMethod: 1
secondaryUVMinLightmapResolution: 40
secondaryUVMinObjectScale: 1
secondaryUVPackMargin: 4
useFileScale: 1
strictVertexDataChecks: 0
tangentSpace:
normalSmoothAngle: 60
normalImportMode: 0
tangentImportMode: 3
normalCalculationMode: 4
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0
blendShapeNormalImportMode: 1
normalSmoothingSource: 0
referencedClips: []
importAnimation: 1
humanDescription:
serializedVersion: 3
human:
- boneName: B-hips
humanName: Hips
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thigh.L
humanName: LeftUpperLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thigh.R
humanName: RightUpperLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shin.L
humanName: LeftLowerLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shin.R
humanName: RightLowerLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-foot.L
humanName: LeftFoot
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-foot.R
humanName: RightFoot
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-spine
humanName: Spine
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-chest
humanName: Chest
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-neck
humanName: Neck
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-head
humanName: Head
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shoulder.L
humanName: LeftShoulder
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shoulder.R
humanName: RightShoulder
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-upperArm.L
humanName: LeftUpperArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-upperArm.R
humanName: RightUpperArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-forearm.L
humanName: LeftLowerArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-forearm.R
humanName: RightLowerArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-hand.L
humanName: LeftHand
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-hand.R
humanName: RightHand
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-toe.L
humanName: LeftToes
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-toe.R
humanName: RightToes
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-jaw
humanName: Jaw
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb01.L
humanName: Left Thumb Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb02.L
humanName: Left Thumb Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb03.L
humanName: Left Thumb Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger01.L
humanName: Left Index Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger02.L
humanName: Left Index Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger03.L
humanName: Left Index Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger01.L
humanName: Left Middle Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger02.L
humanName: Left Middle Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger03.L
humanName: Left Middle Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger01.L
humanName: Left Ring Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger02.L
humanName: Left Ring Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger03.L
humanName: Left Ring Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky01.L
humanName: Left Little Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky02.L
humanName: Left Little Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky03.L
humanName: Left Little Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb01.R
humanName: Right Thumb Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb02.R
humanName: Right Thumb Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb03.R
humanName: Right Thumb Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger01.R
humanName: Right Index Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger02.R
humanName: Right Index Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger03.R
humanName: Right Index Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger01.R
humanName: Right Middle Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger02.R
humanName: Right Middle Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger03.R
humanName: Right Middle Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger01.R
humanName: Right Ring Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger02.R
humanName: Right Ring Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger03.R
humanName: Right Ring Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky01.R
humanName: Right Little Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky02.R
humanName: Right Little Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky03.R
humanName: Right Little Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
skeleton:
- name: Human_DummyModel_F(Clone)
parentName:
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: HumanF_BodyMesh
parentName: Human_DummyModel_F(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Rig
parentName: Human_DummyModel_F(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: B-root
parentName: Rig
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: B-spineProxy
parentName: B-root
position: {x: -0, y: 1.092844, z: 0.029147}
rotation: {x: -0.012905054, y: 0, z: -0, w: 0.99991673}
scale: {x: 1, y: 1.0000001, z: 1.0000001}
- name: B-hips
parentName: B-root
position: {x: -0, y: 0.967712, z: 0.016772}
rotation: {x: 0.04926631, y: 0, z: -0, w: 0.9987857}
scale: {x: 1, y: 1.0000004, z: 1.0000004}
- name: B-spine
parentName: B-hips
position: {x: -0, y: 0.12574437, z: 0.00000011940791}
rotation: {x: -0.062152267, y: 0, z: -0, w: 0.99806666}
scale: {x: 1, y: 0.99999976, z: 0.99999976}
- name: B-chest
parentName: B-spine
position: {x: -0, y: 0.13376056, z: -0.00000077390683}
rotation: {x: -0.02258696, y: 0, z: -0, w: 0.9997449}
scale: {x: 1, y: 0.9999996, z: 0.9999996}
- name: B-shoulder.R
parentName: B-chest
position: {x: -0, y: 0.19125995, z: -0.005656177}
rotation: {x: -0.5165573, y: -0.44464085, z: -0.47738376, w: 0.554588}
scale: {x: 1.0000008, y: 1.0000006, z: 1.0000002}
- name: B-upperArm.R
parentName: B-shoulder.R
position: {x: -0.00000043065853, y: 0.1619337, z: -0.000000866464}
rotation: {x: 0.03406315, y: 0.7090742, z: -0.08345674, w: 0.69934857}
scale: {x: 0.99999976, y: 1, z: 0.99999946}
- name: B-forearm.R
parentName: B-upperArm.R
position: {x: -0.0000005071642, y: 0.23413825, z: 0.0000019611641}
rotation: {x: 0.0013730773, y: -0.00042225965, z: 0.0032032696, w: 0.99999386}
scale: {x: 1.0000001, y: 0.99999964, z: 0.9999996}
- name: B-hand.R
parentName: B-forearm.R
position: {x: -0.000000328232, y: 0.19596381, z: -0.0000008355853}
rotation: {x: 0.013529134, y: 0.7054088, z: 0.032969795, w: 0.70790416}
scale: {x: 0.9999999, y: 1.0000002, z: 1.0000005}
- name: B-handProp.R
parentName: B-hand.R
position: {x: 0.0029605331, y: 0.10533051, z: 0.022608897}
rotation: {x: -0.67608327, y: 0.73659164, z: -0.013668106, w: -0.012545319}
scale: {x: 0.99999964, y: 1.0000005, z: 0.9999996}
- name: B-indexFinger01.R
parentName: B-hand.R
position: {x: -0.036052607, y: 0.13202412, z: -0.0022375023}
rotation: {x: 0.019054495, y: -0.0149580045, z: 0.031315368, w: 0.999216}
scale: {x: 1.0000002, y: 0.99999964, z: 0.9999993}
- name: B-indexFinger02.R
parentName: B-indexFinger01.R
position: {x: 0.00000021708313, y: 0.046758045, z: -0.0000005285747}
rotation: {x: 0.040758472, y: 0.02876925, z: -0.0030862393, w: 0.99875003}
scale: {x: 1, y: 1.0000004, z: 1.0000002}
- name: B-indexFinger03.R
parentName: B-indexFinger02.R
position: {x: 0.000000038075022, y: 0.034652043, z: 0.00000019983679}
rotation: {x: -0.006236443, y: 0.004024028, z: -0.0109188985, w: 0.99991286}
scale: {x: 0.9999999, y: 0.9999999, z: 0.99999964}
- name: B-middleFinger01.R
parentName: B-hand.R
position: {x: -0.00928522, y: 0.1318378, z: -0.0089382}
rotation: {x: -0.004700204, y: -0.0032572027, z: -0.001801642, w: 0.99998206}
scale: {x: 1.0000006, y: 0.9999997, z: 0.99999917}
- name: B-middleFinger02.R
parentName: B-middleFinger01.R
position: {x: -0.0000003849299, y: 0.048716273, z: -0.0000001691299}
rotation: {x: 0.039366316, y: 0.04573892, z: 0.00377753, w: 0.9981703}
scale: {x: 0.9999997, y: 1.0000004, z: 1}
- name: B-middleFinger03.R
parentName: B-middleFinger02.R
position: {x: -0.00000039262213, y: 0.035888083, z: 0.00000029152696}
rotation: {x: 0.0049846717, y: -0.02122791, z: -0.0063242065, w: 0.99974227}
scale: {x: 0.99999964, y: 0.99999994, z: 1.0000002}
- name: B-ringFinger01.R
parentName: B-hand.R
position: {x: 0.016020812, y: 0.1283572, z: -0.005707851}
rotation: {x: -0.0071167736, y: 0.0017728558, z: -0.036400504, w: 0.9993104}
scale: {x: 1.0000005, y: 0.9999992, z: 0.9999996}
- name: B-ringFinger02.R
parentName: B-ringFinger01.R
position: {x: 0.00000047158898, y: 0.045192316, z: 0.00000021597218}
rotation: {x: 0.037958622, y: -0.0021153935, z: 0.012520862, w: 0.9991986}
scale: {x: 0.99999946, y: 1.0000005, z: 0.9999997}
- name: B-ringFinger03.R
parentName: B-ringFinger02.R
position: {x: -0.0000004720245, y: 0.034694634, z: 0.00000008820079}
rotation: {x: 0.02091165, y: -0.04065229, z: -0.015794862, w: 0.99882966}
scale: {x: 1.0000002, y: 0.99999976, z: 0.9999997}
- name: B-pinky01.R
parentName: B-hand.R
position: {x: 0.041580904, y: 0.119742304, z: -0.0024299922}
rotation: {x: -0.011731888, y: -0.016481936, z: -0.04421447, w: 0.9988172}
scale: {x: 1.0000002, y: 0.9999994, z: 0.99999917}
- name: B-pinky02.R
parentName: B-pinky01.R
position: {x: 0.0000007804244, y: 0.03832724, z: 0.00000044214514}
rotation: {x: 0.039002027, y: 0.011177708, z: 0.009234122, w: 0.99913394}
scale: {x: 1.0000002, y: 1.0000006, z: 1.0000002}
- name: B-pinky03.R
parentName: B-pinky02.R
position: {x: -0.000000269953, y: 0.03220071, z: -0.0000005856981}
rotation: {x: 0.022101695, y: -0.02182341, z: 0.009210792, w: 0.99947506}
scale: {x: 1.0000005, y: 0.99999994, z: 1.0000007}
- name: B-thumb01.R
parentName: B-hand.R
position: {x: -0.039809253, y: 0.048496302, z: 0.0130518135}
rotation: {x: -0.22471787, y: 0.63045275, z: 0.29821387, w: 0.6805144}
scale: {x: 0.99999946, y: 1.0000002, z: 1.0000005}
- name: B-thumb02.R
parentName: B-thumb01.R
position: {x: 0.00000020260806, y: 0.047178134, z: 0.000000160123}
rotation: {x: 0.038173996, y: 0.013301423, z: -0.008042345, w: 0.9991502}
scale: {x: 1.0000007, y: 0.9999997, z: 0.9999999}
- name: B-thumb03.R
parentName: B-thumb02.R
position: {x: -0.00000069069114, y: 0.03520854, z: 0.00000004046409}
rotation: {x: -0.060352694, y: 0.014396386, z: 0.0074255248, w: 0.9980457}
scale: {x: 0.9999995, y: 1.0000004, z: 1}
- name: B-neck
parentName: B-chest
position: {x: -0, y: 0.27081212, z: 0.0000007058524}
rotation: {x: 0.105346866, y: 0, z: -0, w: 0.99443555}
scale: {x: 1, y: 0.9999997, z: 1.0000007}
- name: B-head
parentName: B-neck
position: {x: -0, y: 0.07409704, z: 0.00000025054106}
rotation: {x: -0.069990024, y: 0, z: -0, w: 0.9975477}
scale: {x: 1, y: 1.0000006, z: 0.99999964}
- name: B-jaw
parentName: B-head
position: {x: -0, y: 0, z: 0}
rotation: {x: 0.70698464, y: 0.000007072379, z: -0.00000706994, w: 0.7072289}
scale: {x: 1, y: 1, z: 1}
- name: B-shoulder.L
parentName: B-chest
position: {x: -0, y: 0.19125995, z: -0.005656177}
rotation: {x: -0.5165571, y: 0.44464028, z: 0.47738382, w: 0.5545886}
scale: {x: 0.9999998, y: 0.9999995, z: 1.0000002}
- name: B-upperArm.L
parentName: B-shoulder.L
position: {x: 0.00000040656337, y: 0.16193385, z: -0.0000008664629}
rotation: {x: 0.033948872, y: -0.70908755, z: 0.08334149, w: 0.69935447}
scale: {x: 0.9999998, y: 1.0000002, z: 0.9999999}
- name: B-forearm.L
parentName: B-upperArm.L
position: {x: 0.000000097359035, y: 0.2341381, z: 0.00000030291466}
rotation: {x: 0.0017385628, y: 0.0004205673, z: -0.0032047313, w: 0.99999326}
scale: {x: 0.99999994, y: 1.0000004, z: 1.0000001}
- name: B-hand.L
parentName: B-forearm.L
position: {x: 0.00000052406216, y: 0.1959644, z: -0.0000011816531}
rotation: {x: 0.013386631, y: -0.70541465, z: -0.032826252, w: 0.7079078}
scale: {x: 0.99999994, y: 0.9999992, z: 0.9999996}
- name: B-handProp.L
parentName: B-hand.L
position: {x: -0.0029615294, y: 0.10533054, z: 0.02260892}
rotation: {x: 0.67608327, y: 0.73659164, z: -0.013668119, w: 0.012545332}
scale: {x: 1.0000006, y: 0.99999946, z: 1.0000006}
- name: B-indexFinger01.L
parentName: B-hand.L
position: {x: 0.03605161, y: 0.13202417, z: -0.0022375062}
rotation: {x: 0.019054513, y: 0.014957919, z: -0.03131587, w: 0.99921596}
scale: {x: 1.0000004, y: 0.9999998, z: 1.0000002}
- name: B-indexFinger02.L
parentName: B-indexFinger01.L
position: {x: 0.00000072554116, y: 0.04675823, z: -0.0000005109258}
rotation: {x: 0.04075494, y: -0.02876944, z: 0.0030826945, w: 0.9987502}
scale: {x: 1.0000001, y: 1.0000002, z: 1.0000002}
- name: B-indexFinger03.L
parentName: B-indexFinger02.L
position: {x: -0.00000009920999, y: 0.034652077, z: 0.00000023013986}
rotation: {x: -0.0062364372, y: -0.004023549, z: 0.010918792, w: 0.99991286}
scale: {x: 0.9999998, y: 1.0000008, z: 0.9999995}
- name: B-middleFinger01.L
parentName: B-hand.L
position: {x: 0.00928522, y: 0.13183793, z: -0.008938214}
rotation: {x: -0.004700207, y: 0.0032570793, z: 0.0018007505, w: 0.99998206}
scale: {x: 1.0000007, y: 0.9999999, z: 1.0000001}
- name: B-middleFinger02.L
parentName: B-middleFinger01.L
position: {x: 0.00000028786184, y: 0.048716314, z: -0.00000017087451}
rotation: {x: 0.039368037, y: -0.045739666, z: -0.0037847473, w: 0.9981702}
scale: {x: 0.99999976, y: 1.000001, z: 1.0000006}
- name: B-middleFinger03.L
parentName: B-middleFinger02.L
position: {x: -0.00000066842983, y: 0.035888, z: 0.00000028642995}
rotation: {x: 0.0049827034, y: 0.021227859, z: 0.0063241003, w: 0.99974227}
scale: {x: 0.9999996, y: 0.99999905, z: 0.99999934}
- name: B-ringFinger01.L
parentName: B-hand.L
position: {x: -0.016021809, y: 0.12835726, z: -0.005707858}
rotation: {x: -0.007116776, y: -0.0017729683, z: 0.036399588, w: 0.99931043}
scale: {x: 1.0000005, y: 1.0000002, z: 1.0000006}
- name: B-ringFinger02.L
parentName: B-ringFinger01.L
position: {x: 0.00000043795694, y: 0.04519233, z: 0.00000021050154}
rotation: {x: 0.037963506, y: 0.0021157071, z: -0.01252746, w: 0.9991984}
scale: {x: 0.9999995, y: 0.99999964, z: 0.9999996}
- name: B-ringFinger03.L
parentName: B-ringFinger02.L
position: {x: 0.00000034561023, y: 0.03469565, z: -0.00000007648653}
rotation: {x: 0.020911071, y: 0.04065225, z: 0.015794758, w: 0.99882966}
scale: {x: 1.0000001, y: 1.0000005, z: 0.9999997}
- name: B-pinky01.L
parentName: B-hand.L
position: {x: -0.041581903, y: 0.119742356, z: -0.0024299957}
rotation: {x: -0.01172906, y: 0.01648238, z: 0.0442254, w: 0.9988167}
scale: {x: 1.0000002, y: 1.0000004, z: 1.0000002}
- name: B-pinky02.L
parentName: B-pinky01.L
position: {x: 0.00000014151807, y: 0.03832722, z: 0.00000047056287}
rotation: {x: 0.039005004, y: -0.011177422, z: -0.009239738, w: 0.99913377}
scale: {x: 1.0000002, y: 0.99999946, z: 1.0000001}
- name: B-pinky03.L
parentName: B-pinky02.L
position: {x: 0.000000233103, y: 0.032200746, z: -0.00000055902217}
rotation: {x: 0.022101717, y: 0.02182328, z: -0.009211465, w: 0.99947506}
scale: {x: 0.9999995, y: 1, z: 0.99999964}
- name: B-thumb01.L
parentName: B-hand.L
position: {x: 0.03980834, y: 0.048495278, z: 0.013051865}
rotation: {x: -0.2247114, y: -0.6304557, z: -0.2982149, w: 0.6805132}
scale: {x: 1.0000005, y: 1, z: 1.0000005}
- name: B-thumb02.L
parentName: B-thumb01.L
position: {x: -0.0000007063521, y: 0.047179468, z: -0.00000013365789}
rotation: {x: 0.038171936, y: -0.013301728, z: 0.008042519, w: 0.9991503}
scale: {x: 1.0000004, y: 1, z: 0.9999994}
- name: B-thumb03.L
parentName: B-thumb02.L
position: {x: 0.0000007190916, y: 0.035208564, z: 0.00000017922088}
rotation: {x: -0.06035389, y: -0.014396597, z: -0.007425322, w: 0.9980456}
scale: {x: 0.9999992, y: 0.99999994, z: 1.0000001}
- name: B-thigh.L
parentName: B-hips
position: {x: -0.096950985, y: -0.05446949, z: 0.0020414153}
rotation: {x: 0.9977441, y: 0.011110197, z: -0.0039620763, w: 0.066088475}
scale: {x: 1.0000002, y: 0.9999997, z: 1.000001}
- name: B-shin.L
parentName: B-thigh.L
position: {x: 0.00000018468991, y: 0.41111633, z: 0.0000005281011}
rotation: {x: 0.067057244, y: -0.00057845906, z: 0.011617889, w: 0.9976813}
scale: {x: 0.9999997, y: 1.0000002, z: 0.99999964}
- name: B-foot.L
parentName: B-shin.L
position: {x: -0.00000017405802, y: 0.3880767, z: -0.00000019306846}
rotation: {x: -0.5354999, y: 0.004330197, z: 0.0016612022, w: 0.84452266}
scale: {x: 1.0000001, y: 0.9999997, z: 0.99999976}
- name: B-toe.L
parentName: B-foot.L
position: {x: -0.00000027025197, y: 0.17254004, z: -0.000000117418054}
rotation: {x: 0.000012936387, y: 0.9622731, z: -0.27208534, w: 0.00017343421}
scale: {x: 1, y: 1.0000018, z: 0.999999}
- name: B-thigh.R
parentName: B-hips
position: {x: 0.096950985, y: -0.05446959, z: 0.0020404202}
rotation: {x: 0.9977441, y: -0.011109428, z: 0.003967029, w: 0.066088304}
scale: {x: 1.0000004, y: 0.99999976, z: 1.000008}
- name: B-shin.R
parentName: B-thigh.R
position: {x: 0.0000005496826, y: 0.41111633, z: -0.00000065481464}
rotation: {x: 0.06705632, y: 0.0005783735, z: -0.011616509, w: 0.99768144}
scale: {x: 0.9999997, y: 1.0000002, z: 1.0000007}
- name: B-foot.R
parentName: B-shin.R
position: {x: -0.00000044263592, y: 0.3880767, z: 0.000000107811644}
rotation: {x: -0.53550065, y: -0.0043338453, z: -0.0016630876, w: 0.84452206}
scale: {x: 1, y: 0.9999993, z: 0.99999994}
- name: B-toe.R
parentName: B-foot.R
position: {x: 0.00000074386196, y: 0.17254034, z: 0.00000017937037}
rotation: {x: -0.000012542016, y: 0.96227294, z: -0.27208585, w: -0.00017487761}
scale: {x: 1, y: 1.0000029, z: 0.999997}
armTwist: 0.5
foreArmTwist: 0.5
upperLegTwist: 0.5
legTwist: 0.5
armStretch: 0.05
legStretch: 0.05
feetSpacing: 0
globalScale: 1
rootMotionBoneName:
hasTranslationDoF: 0
hasExtraRoot: 0
skeletonHasParents: 1
lastHumanDescriptionAvatarSource: {fileID: 9000000, guid: 1841c298173cdad4db8df8602c8f1c8d,
type: 3}
autoGenerateAvatarMappingIfUnspecified: 1
animationType: 3
humanoidOversampling: 1
avatarSetup: 2
addHumanoidExtraRootOnlyWhenUsingAvatar: 1
importBlendShapeDeformPercent: 1
remapMaterialsIfMaterialImportModeIsNone: 0
additionalBone: 0
userData:
assetBundleName:
assetBundleVariant:
AssetOrigin:
serializedVersion: 1
productId: 157920
packageName: Human Crafting Animations FREE
packageVersion: 2.2
assetPath: Assets/Kevin Iglesias/Human Animations/Animations/Female/Idles/HumanF@Idle01.fbx
uploadId: 825240

View file

@ -1,975 +0,0 @@
fileFormatVersion: 2
guid: da2ed2e1aae1da34684fe894590efa54
labels:
- Animation
ModelImporter:
serializedVersion: 22200
internalIDToNameTable: []
externalObjects: {}
materials:
materialImportMode: 0
materialName: 0
materialSearch: 1
materialLocation: 1
animations:
legacyGenerateAnimations: 4
bakeSimulation: 0
resampleCurves: 1
optimizeGameObjects: 0
removeConstantScaleCurves: 0
motionNodeName:
animationImportErrors:
animationImportWarnings:
animationRetargetingWarnings:
animationDoRetargetingWarnings: 0
importAnimatedCustomProperties: 0
importConstraints: 0
animationCompression: 0
animationRotationError: 0.5
animationPositionError: 0.5
animationScaleError: 0.5
animationWrapMode: 0
extraExposedTransformPaths: []
extraUserProperties: []
clipAnimations:
- serializedVersion: 16
name: HumanF@Idle02-Idle01
takeName: Untitled
internalID: 3094330708855449807
firstFrame: 0
lastFrame: 23
wrapMode: 0
orientationOffsetY: 0
level: 0
cycleOffset: 0
loop: 0
hasAdditiveReferencePose: 0
loopTime: 0
loopBlend: 0
loopBlendOrientation: 1
loopBlendPositionY: 1
loopBlendPositionXZ: 1
keepOriginalOrientation: 1
keepOriginalPositionY: 1
keepOriginalPositionXZ: 1
heightFromFeet: 0
mirror: 0
bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
curves: []
events: []
transformMask:
- path:
weight: 1
- path: HumanF_BodyMesh
weight: 0
- path: Rig
weight: 1
- path: Rig/B-root
weight: 1
- path: Rig/B-root/B-hips
weight: 1
- path: Rig/B-root/B-hips/B-spine
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck/B-head
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck/B-head/B-jaw
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-handProp.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L/B-indexFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L/B-indexFinger02.L/B-indexFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L/B-middleFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L/B-middleFinger02.L/B-middleFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L/B-pinky02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L/B-pinky02.L/B-pinky03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L/B-ringFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L/B-ringFinger02.L/B-ringFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L/B-thumb02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L/B-thumb02.L/B-thumb03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-handProp.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R/B-indexFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R/B-indexFinger02.R/B-indexFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R/B-middleFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R/B-middleFinger02.R/B-middleFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R/B-pinky02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R/B-pinky02.R/B-pinky03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R/B-ringFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R/B-ringFinger02.R/B-ringFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R/B-thumb02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R/B-thumb02.R/B-thumb03.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L/B-foot.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L/B-foot.L/B-toe.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R/B-foot.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R/B-foot.R/B-toe.R
weight: 1
- path: Rig/B-root/B-spineProxy
weight: 1
maskType: 1
maskSource: {fileID: 31900000, guid: 89527f5525238ee44b3182458d85143a, type: 2}
additiveReferencePoseFrame: 0
isReadable: 0
meshes:
lODScreenPercentages: []
globalScale: 1
meshCompression: 0
addColliders: 0
useSRGBMaterialColor: 1
sortHierarchyByName: 1
importPhysicalCameras: 1
importVisibility: 1
importBlendShapes: 1
importCameras: 1
importLights: 1
nodeNameCollisionStrategy: 1
fileIdsGeneration: 2
swapUVChannels: 0
generateSecondaryUV: 0
useFileUnits: 1
keepQuads: 0
weldVertices: 1
bakeAxisConversion: 0
preserveHierarchy: 1
skinWeightsMode: 0
maxBonesPerVertex: 4
minBoneWeight: 0.001
optimizeBones: 1
meshOptimizationFlags: -1
indexFormat: 0
secondaryUVAngleDistortion: 8
secondaryUVAreaDistortion: 15.000001
secondaryUVHardAngle: 88
secondaryUVMarginMethod: 1
secondaryUVMinLightmapResolution: 40
secondaryUVMinObjectScale: 1
secondaryUVPackMargin: 4
useFileScale: 1
strictVertexDataChecks: 0
tangentSpace:
normalSmoothAngle: 60
normalImportMode: 0
tangentImportMode: 3
normalCalculationMode: 4
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0
blendShapeNormalImportMode: 1
normalSmoothingSource: 0
referencedClips: []
importAnimation: 1
humanDescription:
serializedVersion: 3
human:
- boneName: B-hips
humanName: Hips
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thigh.L
humanName: LeftUpperLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thigh.R
humanName: RightUpperLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shin.L
humanName: LeftLowerLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shin.R
humanName: RightLowerLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-foot.L
humanName: LeftFoot
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-foot.R
humanName: RightFoot
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-spine
humanName: Spine
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-chest
humanName: Chest
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-neck
humanName: Neck
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-head
humanName: Head
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shoulder.L
humanName: LeftShoulder
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shoulder.R
humanName: RightShoulder
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-upperArm.L
humanName: LeftUpperArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-upperArm.R
humanName: RightUpperArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-forearm.L
humanName: LeftLowerArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-forearm.R
humanName: RightLowerArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-hand.L
humanName: LeftHand
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-hand.R
humanName: RightHand
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-toe.L
humanName: LeftToes
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-toe.R
humanName: RightToes
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-jaw
humanName: Jaw
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb01.L
humanName: Left Thumb Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb02.L
humanName: Left Thumb Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb03.L
humanName: Left Thumb Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger01.L
humanName: Left Index Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger02.L
humanName: Left Index Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger03.L
humanName: Left Index Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger01.L
humanName: Left Middle Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger02.L
humanName: Left Middle Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger03.L
humanName: Left Middle Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger01.L
humanName: Left Ring Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger02.L
humanName: Left Ring Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger03.L
humanName: Left Ring Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky01.L
humanName: Left Little Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky02.L
humanName: Left Little Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky03.L
humanName: Left Little Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb01.R
humanName: Right Thumb Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb02.R
humanName: Right Thumb Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb03.R
humanName: Right Thumb Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger01.R
humanName: Right Index Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger02.R
humanName: Right Index Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger03.R
humanName: Right Index Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger01.R
humanName: Right Middle Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger02.R
humanName: Right Middle Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger03.R
humanName: Right Middle Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger01.R
humanName: Right Ring Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger02.R
humanName: Right Ring Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger03.R
humanName: Right Ring Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky01.R
humanName: Right Little Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky02.R
humanName: Right Little Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky03.R
humanName: Right Little Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
skeleton:
- name: Human_DummyModel_F(Clone)
parentName:
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: HumanF_BodyMesh
parentName: Human_DummyModel_F(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Rig
parentName: Human_DummyModel_F(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: B-root
parentName: Rig
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: B-spineProxy
parentName: B-root
position: {x: -0, y: 1.092844, z: 0.029147}
rotation: {x: -0.012905054, y: 0, z: -0, w: 0.99991673}
scale: {x: 1, y: 1.0000001, z: 1.0000001}
- name: B-hips
parentName: B-root
position: {x: -0, y: 0.967712, z: 0.016772}
rotation: {x: 0.04926631, y: 0, z: -0, w: 0.9987857}
scale: {x: 1, y: 1.0000004, z: 1.0000004}
- name: B-spine
parentName: B-hips
position: {x: -0, y: 0.12574437, z: 0.00000011940791}
rotation: {x: -0.062152267, y: 0, z: -0, w: 0.99806666}
scale: {x: 1, y: 0.99999976, z: 0.99999976}
- name: B-chest
parentName: B-spine
position: {x: -0, y: 0.13376056, z: -0.00000077390683}
rotation: {x: -0.02258696, y: 0, z: -0, w: 0.9997449}
scale: {x: 1, y: 0.9999996, z: 0.9999996}
- name: B-shoulder.R
parentName: B-chest
position: {x: -0, y: 0.19125995, z: -0.005656177}
rotation: {x: -0.5165573, y: -0.44464085, z: -0.47738376, w: 0.554588}
scale: {x: 1.0000008, y: 1.0000006, z: 1.0000002}
- name: B-upperArm.R
parentName: B-shoulder.R
position: {x: -0.00000043065853, y: 0.1619337, z: -0.000000866464}
rotation: {x: 0.03406315, y: 0.7090742, z: -0.08345674, w: 0.69934857}
scale: {x: 0.99999976, y: 1, z: 0.99999946}
- name: B-forearm.R
parentName: B-upperArm.R
position: {x: -0.0000005071642, y: 0.23413825, z: 0.0000019611641}
rotation: {x: 0.0013730773, y: -0.00042225965, z: 0.0032032696, w: 0.99999386}
scale: {x: 1.0000001, y: 0.99999964, z: 0.9999996}
- name: B-hand.R
parentName: B-forearm.R
position: {x: -0.000000328232, y: 0.19596381, z: -0.0000008355853}
rotation: {x: 0.013529134, y: 0.7054088, z: 0.032969795, w: 0.70790416}
scale: {x: 0.9999999, y: 1.0000002, z: 1.0000005}
- name: B-handProp.R
parentName: B-hand.R
position: {x: 0.0029605331, y: 0.10533051, z: 0.022608897}
rotation: {x: -0.67608327, y: 0.73659164, z: -0.013668106, w: -0.012545319}
scale: {x: 0.99999964, y: 1.0000005, z: 0.9999996}
- name: B-indexFinger01.R
parentName: B-hand.R
position: {x: -0.036052607, y: 0.13202412, z: -0.0022375023}
rotation: {x: 0.019054495, y: -0.0149580045, z: 0.031315368, w: 0.999216}
scale: {x: 1.0000002, y: 0.99999964, z: 0.9999993}
- name: B-indexFinger02.R
parentName: B-indexFinger01.R
position: {x: 0.00000021708313, y: 0.046758045, z: -0.0000005285747}
rotation: {x: 0.040758472, y: 0.02876925, z: -0.0030862393, w: 0.99875003}
scale: {x: 1, y: 1.0000004, z: 1.0000002}
- name: B-indexFinger03.R
parentName: B-indexFinger02.R
position: {x: 0.000000038075022, y: 0.034652043, z: 0.00000019983679}
rotation: {x: -0.006236443, y: 0.004024028, z: -0.0109188985, w: 0.99991286}
scale: {x: 0.9999999, y: 0.9999999, z: 0.99999964}
- name: B-middleFinger01.R
parentName: B-hand.R
position: {x: -0.00928522, y: 0.1318378, z: -0.0089382}
rotation: {x: -0.004700204, y: -0.0032572027, z: -0.001801642, w: 0.99998206}
scale: {x: 1.0000006, y: 0.9999997, z: 0.99999917}
- name: B-middleFinger02.R
parentName: B-middleFinger01.R
position: {x: -0.0000003849299, y: 0.048716273, z: -0.0000001691299}
rotation: {x: 0.039366316, y: 0.04573892, z: 0.00377753, w: 0.9981703}
scale: {x: 0.9999997, y: 1.0000004, z: 1}
- name: B-middleFinger03.R
parentName: B-middleFinger02.R
position: {x: -0.00000039262213, y: 0.035888083, z: 0.00000029152696}
rotation: {x: 0.0049846717, y: -0.02122791, z: -0.0063242065, w: 0.99974227}
scale: {x: 0.99999964, y: 0.99999994, z: 1.0000002}
- name: B-ringFinger01.R
parentName: B-hand.R
position: {x: 0.016020812, y: 0.1283572, z: -0.005707851}
rotation: {x: -0.0071167736, y: 0.0017728558, z: -0.036400504, w: 0.9993104}
scale: {x: 1.0000005, y: 0.9999992, z: 0.9999996}
- name: B-ringFinger02.R
parentName: B-ringFinger01.R
position: {x: 0.00000047158898, y: 0.045192316, z: 0.00000021597218}
rotation: {x: 0.037958622, y: -0.0021153935, z: 0.012520862, w: 0.9991986}
scale: {x: 0.99999946, y: 1.0000005, z: 0.9999997}
- name: B-ringFinger03.R
parentName: B-ringFinger02.R
position: {x: -0.0000004720245, y: 0.034694634, z: 0.00000008820079}
rotation: {x: 0.02091165, y: -0.04065229, z: -0.015794862, w: 0.99882966}
scale: {x: 1.0000002, y: 0.99999976, z: 0.9999997}
- name: B-pinky01.R
parentName: B-hand.R
position: {x: 0.041580904, y: 0.119742304, z: -0.0024299922}
rotation: {x: -0.011731888, y: -0.016481936, z: -0.04421447, w: 0.9988172}
scale: {x: 1.0000002, y: 0.9999994, z: 0.99999917}
- name: B-pinky02.R
parentName: B-pinky01.R
position: {x: 0.0000007804244, y: 0.03832724, z: 0.00000044214514}
rotation: {x: 0.039002027, y: 0.011177708, z: 0.009234122, w: 0.99913394}
scale: {x: 1.0000002, y: 1.0000006, z: 1.0000002}
- name: B-pinky03.R
parentName: B-pinky02.R
position: {x: -0.000000269953, y: 0.03220071, z: -0.0000005856981}
rotation: {x: 0.022101695, y: -0.02182341, z: 0.009210792, w: 0.99947506}
scale: {x: 1.0000005, y: 0.99999994, z: 1.0000007}
- name: B-thumb01.R
parentName: B-hand.R
position: {x: -0.039809253, y: 0.048496302, z: 0.0130518135}
rotation: {x: -0.22471787, y: 0.63045275, z: 0.29821387, w: 0.6805144}
scale: {x: 0.99999946, y: 1.0000002, z: 1.0000005}
- name: B-thumb02.R
parentName: B-thumb01.R
position: {x: 0.00000020260806, y: 0.047178134, z: 0.000000160123}
rotation: {x: 0.038173996, y: 0.013301423, z: -0.008042345, w: 0.9991502}
scale: {x: 1.0000007, y: 0.9999997, z: 0.9999999}
- name: B-thumb03.R
parentName: B-thumb02.R
position: {x: -0.00000069069114, y: 0.03520854, z: 0.00000004046409}
rotation: {x: -0.060352694, y: 0.014396386, z: 0.0074255248, w: 0.9980457}
scale: {x: 0.9999995, y: 1.0000004, z: 1}
- name: B-neck
parentName: B-chest
position: {x: -0, y: 0.27081212, z: 0.0000007058524}
rotation: {x: 0.105346866, y: 0, z: -0, w: 0.99443555}
scale: {x: 1, y: 0.9999997, z: 1.0000007}
- name: B-head
parentName: B-neck
position: {x: -0, y: 0.07409704, z: 0.00000025054106}
rotation: {x: -0.069990024, y: 0, z: -0, w: 0.9975477}
scale: {x: 1, y: 1.0000006, z: 0.99999964}
- name: B-jaw
parentName: B-head
position: {x: -0, y: 0, z: 0}
rotation: {x: 0.70698464, y: 0.000007072379, z: -0.00000706994, w: 0.7072289}
scale: {x: 1, y: 1, z: 1}
- name: B-shoulder.L
parentName: B-chest
position: {x: -0, y: 0.19125995, z: -0.005656177}
rotation: {x: -0.5165571, y: 0.44464028, z: 0.47738382, w: 0.5545886}
scale: {x: 0.9999998, y: 0.9999995, z: 1.0000002}
- name: B-upperArm.L
parentName: B-shoulder.L
position: {x: 0.00000040656337, y: 0.16193385, z: -0.0000008664629}
rotation: {x: 0.033948872, y: -0.70908755, z: 0.08334149, w: 0.69935447}
scale: {x: 0.9999998, y: 1.0000002, z: 0.9999999}
- name: B-forearm.L
parentName: B-upperArm.L
position: {x: 0.000000097359035, y: 0.2341381, z: 0.00000030291466}
rotation: {x: 0.0017385628, y: 0.0004205673, z: -0.0032047313, w: 0.99999326}
scale: {x: 0.99999994, y: 1.0000004, z: 1.0000001}
- name: B-hand.L
parentName: B-forearm.L
position: {x: 0.00000052406216, y: 0.1959644, z: -0.0000011816531}
rotation: {x: 0.013386631, y: -0.70541465, z: -0.032826252, w: 0.7079078}
scale: {x: 0.99999994, y: 0.9999992, z: 0.9999996}
- name: B-handProp.L
parentName: B-hand.L
position: {x: -0.0029615294, y: 0.10533054, z: 0.02260892}
rotation: {x: 0.67608327, y: 0.73659164, z: -0.013668119, w: 0.012545332}
scale: {x: 1.0000006, y: 0.99999946, z: 1.0000006}
- name: B-indexFinger01.L
parentName: B-hand.L
position: {x: 0.03605161, y: 0.13202417, z: -0.0022375062}
rotation: {x: 0.019054513, y: 0.014957919, z: -0.03131587, w: 0.99921596}
scale: {x: 1.0000004, y: 0.9999998, z: 1.0000002}
- name: B-indexFinger02.L
parentName: B-indexFinger01.L
position: {x: 0.00000072554116, y: 0.04675823, z: -0.0000005109258}
rotation: {x: 0.04075494, y: -0.02876944, z: 0.0030826945, w: 0.9987502}
scale: {x: 1.0000001, y: 1.0000002, z: 1.0000002}
- name: B-indexFinger03.L
parentName: B-indexFinger02.L
position: {x: -0.00000009920999, y: 0.034652077, z: 0.00000023013986}
rotation: {x: -0.0062364372, y: -0.004023549, z: 0.010918792, w: 0.99991286}
scale: {x: 0.9999998, y: 1.0000008, z: 0.9999995}
- name: B-middleFinger01.L
parentName: B-hand.L
position: {x: 0.00928522, y: 0.13183793, z: -0.008938214}
rotation: {x: -0.004700207, y: 0.0032570793, z: 0.0018007505, w: 0.99998206}
scale: {x: 1.0000007, y: 0.9999999, z: 1.0000001}
- name: B-middleFinger02.L
parentName: B-middleFinger01.L
position: {x: 0.00000028786184, y: 0.048716314, z: -0.00000017087451}
rotation: {x: 0.039368037, y: -0.045739666, z: -0.0037847473, w: 0.9981702}
scale: {x: 0.99999976, y: 1.000001, z: 1.0000006}
- name: B-middleFinger03.L
parentName: B-middleFinger02.L
position: {x: -0.00000066842983, y: 0.035888, z: 0.00000028642995}
rotation: {x: 0.0049827034, y: 0.021227859, z: 0.0063241003, w: 0.99974227}
scale: {x: 0.9999996, y: 0.99999905, z: 0.99999934}
- name: B-ringFinger01.L
parentName: B-hand.L
position: {x: -0.016021809, y: 0.12835726, z: -0.005707858}
rotation: {x: -0.007116776, y: -0.0017729683, z: 0.036399588, w: 0.99931043}
scale: {x: 1.0000005, y: 1.0000002, z: 1.0000006}
- name: B-ringFinger02.L
parentName: B-ringFinger01.L
position: {x: 0.00000043795694, y: 0.04519233, z: 0.00000021050154}
rotation: {x: 0.037963506, y: 0.0021157071, z: -0.01252746, w: 0.9991984}
scale: {x: 0.9999995, y: 0.99999964, z: 0.9999996}
- name: B-ringFinger03.L
parentName: B-ringFinger02.L
position: {x: 0.00000034561023, y: 0.03469565, z: -0.00000007648653}
rotation: {x: 0.020911071, y: 0.04065225, z: 0.015794758, w: 0.99882966}
scale: {x: 1.0000001, y: 1.0000005, z: 0.9999997}
- name: B-pinky01.L
parentName: B-hand.L
position: {x: -0.041581903, y: 0.119742356, z: -0.0024299957}
rotation: {x: -0.01172906, y: 0.01648238, z: 0.0442254, w: 0.9988167}
scale: {x: 1.0000002, y: 1.0000004, z: 1.0000002}
- name: B-pinky02.L
parentName: B-pinky01.L
position: {x: 0.00000014151807, y: 0.03832722, z: 0.00000047056287}
rotation: {x: 0.039005004, y: -0.011177422, z: -0.009239738, w: 0.99913377}
scale: {x: 1.0000002, y: 0.99999946, z: 1.0000001}
- name: B-pinky03.L
parentName: B-pinky02.L
position: {x: 0.000000233103, y: 0.032200746, z: -0.00000055902217}
rotation: {x: 0.022101717, y: 0.02182328, z: -0.009211465, w: 0.99947506}
scale: {x: 0.9999995, y: 1, z: 0.99999964}
- name: B-thumb01.L
parentName: B-hand.L
position: {x: 0.03980834, y: 0.048495278, z: 0.013051865}
rotation: {x: -0.2247114, y: -0.6304557, z: -0.2982149, w: 0.6805132}
scale: {x: 1.0000005, y: 1, z: 1.0000005}
- name: B-thumb02.L
parentName: B-thumb01.L
position: {x: -0.0000007063521, y: 0.047179468, z: -0.00000013365789}
rotation: {x: 0.038171936, y: -0.013301728, z: 0.008042519, w: 0.9991503}
scale: {x: 1.0000004, y: 1, z: 0.9999994}
- name: B-thumb03.L
parentName: B-thumb02.L
position: {x: 0.0000007190916, y: 0.035208564, z: 0.00000017922088}
rotation: {x: -0.06035389, y: -0.014396597, z: -0.007425322, w: 0.9980456}
scale: {x: 0.9999992, y: 0.99999994, z: 1.0000001}
- name: B-thigh.L
parentName: B-hips
position: {x: -0.096950985, y: -0.05446949, z: 0.0020414153}
rotation: {x: 0.9977441, y: 0.011110197, z: -0.0039620763, w: 0.066088475}
scale: {x: 1.0000002, y: 0.9999997, z: 1.000001}
- name: B-shin.L
parentName: B-thigh.L
position: {x: 0.00000018468991, y: 0.41111633, z: 0.0000005281011}
rotation: {x: 0.067057244, y: -0.00057845906, z: 0.011617889, w: 0.9976813}
scale: {x: 0.9999997, y: 1.0000002, z: 0.99999964}
- name: B-foot.L
parentName: B-shin.L
position: {x: -0.00000017405802, y: 0.3880767, z: -0.00000019306846}
rotation: {x: -0.5354999, y: 0.004330197, z: 0.0016612022, w: 0.84452266}
scale: {x: 1.0000001, y: 0.9999997, z: 0.99999976}
- name: B-toe.L
parentName: B-foot.L
position: {x: -0.00000027025197, y: 0.17254004, z: -0.000000117418054}
rotation: {x: 0.000012936387, y: 0.9622731, z: -0.27208534, w: 0.00017343421}
scale: {x: 1, y: 1.0000018, z: 0.999999}
- name: B-thigh.R
parentName: B-hips
position: {x: 0.096950985, y: -0.05446959, z: 0.0020404202}
rotation: {x: 0.9977441, y: -0.011109428, z: 0.003967029, w: 0.066088304}
scale: {x: 1.0000004, y: 0.99999976, z: 1.000008}
- name: B-shin.R
parentName: B-thigh.R
position: {x: 0.0000005496826, y: 0.41111633, z: -0.00000065481464}
rotation: {x: 0.06705632, y: 0.0005783735, z: -0.011616509, w: 0.99768144}
scale: {x: 0.9999997, y: 1.0000002, z: 1.0000007}
- name: B-foot.R
parentName: B-shin.R
position: {x: -0.00000044263592, y: 0.3880767, z: 0.000000107811644}
rotation: {x: -0.53550065, y: -0.0043338453, z: -0.0016630876, w: 0.84452206}
scale: {x: 1, y: 0.9999993, z: 0.99999994}
- name: B-toe.R
parentName: B-foot.R
position: {x: 0.00000074386196, y: 0.17254034, z: 0.00000017937037}
rotation: {x: -0.000012542016, y: 0.96227294, z: -0.27208585, w: -0.00017487761}
scale: {x: 1, y: 1.0000029, z: 0.999997}
armTwist: 0.5
foreArmTwist: 0.5
upperLegTwist: 0.5
legTwist: 0.5
armStretch: 0.05
legStretch: 0.05
feetSpacing: 0
globalScale: 1
rootMotionBoneName:
hasTranslationDoF: 0
hasExtraRoot: 0
skeletonHasParents: 1
lastHumanDescriptionAvatarSource: {fileID: 9000000, guid: 1841c298173cdad4db8df8602c8f1c8d,
type: 3}
autoGenerateAvatarMappingIfUnspecified: 1
animationType: 3
humanoidOversampling: 1
avatarSetup: 2
addHumanoidExtraRootOnlyWhenUsingAvatar: 1
importBlendShapeDeformPercent: 1
remapMaterialsIfMaterialImportModeIsNone: 0
additionalBone: 0
userData:
assetBundleName:
assetBundleVariant:
AssetOrigin:
serializedVersion: 1
productId: 154271
packageName: Human Basic Motions FREE
packageVersion: 2.4.2
assetPath: Assets/Kevin Iglesias/Human Animations/Animations/Female/Idles/HumanF@Idle02-Idle01.fbx
uploadId: 908942

View file

@ -1,975 +0,0 @@
fileFormatVersion: 2
guid: 24b1b054ed689e44ba553f9841ebca06
labels:
- Animation
ModelImporter:
serializedVersion: 22200
internalIDToNameTable: []
externalObjects: {}
materials:
materialImportMode: 0
materialName: 0
materialSearch: 1
materialLocation: 1
animations:
legacyGenerateAnimations: 4
bakeSimulation: 0
resampleCurves: 1
optimizeGameObjects: 0
removeConstantScaleCurves: 0
motionNodeName:
animationImportErrors:
animationImportWarnings:
animationRetargetingWarnings:
animationDoRetargetingWarnings: 0
importAnimatedCustomProperties: 0
importConstraints: 0
animationCompression: 0
animationRotationError: 0.5
animationPositionError: 0.5
animationScaleError: 0.5
animationWrapMode: 0
extraExposedTransformPaths: []
extraUserProperties: []
clipAnimations:
- serializedVersion: 16
name: HumanF@Idle02
takeName: Untitled
internalID: 3094330708855449807
firstFrame: 0
lastFrame: 81
wrapMode: 0
orientationOffsetY: 0
level: 0
cycleOffset: 0
loop: 0
hasAdditiveReferencePose: 0
loopTime: 1
loopBlend: 0
loopBlendOrientation: 1
loopBlendPositionY: 1
loopBlendPositionXZ: 1
keepOriginalOrientation: 1
keepOriginalPositionY: 1
keepOriginalPositionXZ: 1
heightFromFeet: 0
mirror: 0
bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
curves: []
events: []
transformMask:
- path:
weight: 1
- path: HumanF_BodyMesh
weight: 0
- path: Rig
weight: 1
- path: Rig/B-root
weight: 1
- path: Rig/B-root/B-hips
weight: 1
- path: Rig/B-root/B-hips/B-spine
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck/B-head
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck/B-head/B-jaw
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-handProp.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L/B-indexFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L/B-indexFinger02.L/B-indexFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L/B-middleFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L/B-middleFinger02.L/B-middleFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L/B-pinky02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L/B-pinky02.L/B-pinky03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L/B-ringFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L/B-ringFinger02.L/B-ringFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L/B-thumb02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L/B-thumb02.L/B-thumb03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-handProp.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R/B-indexFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R/B-indexFinger02.R/B-indexFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R/B-middleFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R/B-middleFinger02.R/B-middleFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R/B-pinky02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R/B-pinky02.R/B-pinky03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R/B-ringFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R/B-ringFinger02.R/B-ringFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R/B-thumb02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R/B-thumb02.R/B-thumb03.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L/B-foot.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L/B-foot.L/B-toe.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R/B-foot.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R/B-foot.R/B-toe.R
weight: 1
- path: Rig/B-root/B-spineProxy
weight: 1
maskType: 1
maskSource: {fileID: 31900000, guid: 89527f5525238ee44b3182458d85143a, type: 2}
additiveReferencePoseFrame: 0
isReadable: 0
meshes:
lODScreenPercentages: []
globalScale: 1
meshCompression: 0
addColliders: 0
useSRGBMaterialColor: 1
sortHierarchyByName: 1
importPhysicalCameras: 1
importVisibility: 1
importBlendShapes: 1
importCameras: 1
importLights: 1
nodeNameCollisionStrategy: 1
fileIdsGeneration: 2
swapUVChannels: 0
generateSecondaryUV: 0
useFileUnits: 1
keepQuads: 0
weldVertices: 1
bakeAxisConversion: 0
preserveHierarchy: 1
skinWeightsMode: 0
maxBonesPerVertex: 4
minBoneWeight: 0.001
optimizeBones: 1
meshOptimizationFlags: -1
indexFormat: 0
secondaryUVAngleDistortion: 8
secondaryUVAreaDistortion: 15.000001
secondaryUVHardAngle: 88
secondaryUVMarginMethod: 1
secondaryUVMinLightmapResolution: 40
secondaryUVMinObjectScale: 1
secondaryUVPackMargin: 4
useFileScale: 1
strictVertexDataChecks: 0
tangentSpace:
normalSmoothAngle: 60
normalImportMode: 0
tangentImportMode: 3
normalCalculationMode: 4
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0
blendShapeNormalImportMode: 1
normalSmoothingSource: 0
referencedClips: []
importAnimation: 1
humanDescription:
serializedVersion: 3
human:
- boneName: B-hips
humanName: Hips
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thigh.L
humanName: LeftUpperLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thigh.R
humanName: RightUpperLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shin.L
humanName: LeftLowerLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shin.R
humanName: RightLowerLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-foot.L
humanName: LeftFoot
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-foot.R
humanName: RightFoot
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-spine
humanName: Spine
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-chest
humanName: Chest
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-neck
humanName: Neck
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-head
humanName: Head
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shoulder.L
humanName: LeftShoulder
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shoulder.R
humanName: RightShoulder
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-upperArm.L
humanName: LeftUpperArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-upperArm.R
humanName: RightUpperArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-forearm.L
humanName: LeftLowerArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-forearm.R
humanName: RightLowerArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-hand.L
humanName: LeftHand
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-hand.R
humanName: RightHand
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-toe.L
humanName: LeftToes
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-toe.R
humanName: RightToes
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-jaw
humanName: Jaw
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb01.L
humanName: Left Thumb Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb02.L
humanName: Left Thumb Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb03.L
humanName: Left Thumb Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger01.L
humanName: Left Index Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger02.L
humanName: Left Index Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger03.L
humanName: Left Index Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger01.L
humanName: Left Middle Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger02.L
humanName: Left Middle Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger03.L
humanName: Left Middle Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger01.L
humanName: Left Ring Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger02.L
humanName: Left Ring Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger03.L
humanName: Left Ring Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky01.L
humanName: Left Little Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky02.L
humanName: Left Little Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky03.L
humanName: Left Little Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb01.R
humanName: Right Thumb Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb02.R
humanName: Right Thumb Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb03.R
humanName: Right Thumb Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger01.R
humanName: Right Index Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger02.R
humanName: Right Index Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger03.R
humanName: Right Index Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger01.R
humanName: Right Middle Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger02.R
humanName: Right Middle Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger03.R
humanName: Right Middle Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger01.R
humanName: Right Ring Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger02.R
humanName: Right Ring Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger03.R
humanName: Right Ring Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky01.R
humanName: Right Little Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky02.R
humanName: Right Little Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky03.R
humanName: Right Little Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
skeleton:
- name: Human_DummyModel_F(Clone)
parentName:
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: HumanF_BodyMesh
parentName: Human_DummyModel_F(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Rig
parentName: Human_DummyModel_F(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: B-root
parentName: Rig
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: B-spineProxy
parentName: B-root
position: {x: -0, y: 1.092844, z: 0.029147}
rotation: {x: -0.012905054, y: 0, z: -0, w: 0.99991673}
scale: {x: 1, y: 1.0000001, z: 1.0000001}
- name: B-hips
parentName: B-root
position: {x: -0, y: 0.967712, z: 0.016772}
rotation: {x: 0.04926631, y: 0, z: -0, w: 0.9987857}
scale: {x: 1, y: 1.0000004, z: 1.0000004}
- name: B-spine
parentName: B-hips
position: {x: -0, y: 0.12574437, z: 0.00000011940791}
rotation: {x: -0.062152267, y: 0, z: -0, w: 0.99806666}
scale: {x: 1, y: 0.99999976, z: 0.99999976}
- name: B-chest
parentName: B-spine
position: {x: -0, y: 0.13376056, z: -0.00000077390683}
rotation: {x: -0.02258696, y: 0, z: -0, w: 0.9997449}
scale: {x: 1, y: 0.9999996, z: 0.9999996}
- name: B-shoulder.R
parentName: B-chest
position: {x: -0, y: 0.19125995, z: -0.005656177}
rotation: {x: -0.5165573, y: -0.44464085, z: -0.47738376, w: 0.554588}
scale: {x: 1.0000008, y: 1.0000006, z: 1.0000002}
- name: B-upperArm.R
parentName: B-shoulder.R
position: {x: -0.00000043065853, y: 0.1619337, z: -0.000000866464}
rotation: {x: 0.03406315, y: 0.7090742, z: -0.08345674, w: 0.69934857}
scale: {x: 0.99999976, y: 1, z: 0.99999946}
- name: B-forearm.R
parentName: B-upperArm.R
position: {x: -0.0000005071642, y: 0.23413825, z: 0.0000019611641}
rotation: {x: 0.0013730773, y: -0.00042225965, z: 0.0032032696, w: 0.99999386}
scale: {x: 1.0000001, y: 0.99999964, z: 0.9999996}
- name: B-hand.R
parentName: B-forearm.R
position: {x: -0.000000328232, y: 0.19596381, z: -0.0000008355853}
rotation: {x: 0.013529134, y: 0.7054088, z: 0.032969795, w: 0.70790416}
scale: {x: 0.9999999, y: 1.0000002, z: 1.0000005}
- name: B-handProp.R
parentName: B-hand.R
position: {x: 0.0029605331, y: 0.10533051, z: 0.022608897}
rotation: {x: -0.67608327, y: 0.73659164, z: -0.013668106, w: -0.012545319}
scale: {x: 0.99999964, y: 1.0000005, z: 0.9999996}
- name: B-indexFinger01.R
parentName: B-hand.R
position: {x: -0.036052607, y: 0.13202412, z: -0.0022375023}
rotation: {x: 0.019054495, y: -0.0149580045, z: 0.031315368, w: 0.999216}
scale: {x: 1.0000002, y: 0.99999964, z: 0.9999993}
- name: B-indexFinger02.R
parentName: B-indexFinger01.R
position: {x: 0.00000021708313, y: 0.046758045, z: -0.0000005285747}
rotation: {x: 0.040758472, y: 0.02876925, z: -0.0030862393, w: 0.99875003}
scale: {x: 1, y: 1.0000004, z: 1.0000002}
- name: B-indexFinger03.R
parentName: B-indexFinger02.R
position: {x: 0.000000038075022, y: 0.034652043, z: 0.00000019983679}
rotation: {x: -0.006236443, y: 0.004024028, z: -0.0109188985, w: 0.99991286}
scale: {x: 0.9999999, y: 0.9999999, z: 0.99999964}
- name: B-middleFinger01.R
parentName: B-hand.R
position: {x: -0.00928522, y: 0.1318378, z: -0.0089382}
rotation: {x: -0.004700204, y: -0.0032572027, z: -0.001801642, w: 0.99998206}
scale: {x: 1.0000006, y: 0.9999997, z: 0.99999917}
- name: B-middleFinger02.R
parentName: B-middleFinger01.R
position: {x: -0.0000003849299, y: 0.048716273, z: -0.0000001691299}
rotation: {x: 0.039366316, y: 0.04573892, z: 0.00377753, w: 0.9981703}
scale: {x: 0.9999997, y: 1.0000004, z: 1}
- name: B-middleFinger03.R
parentName: B-middleFinger02.R
position: {x: -0.00000039262213, y: 0.035888083, z: 0.00000029152696}
rotation: {x: 0.0049846717, y: -0.02122791, z: -0.0063242065, w: 0.99974227}
scale: {x: 0.99999964, y: 0.99999994, z: 1.0000002}
- name: B-ringFinger01.R
parentName: B-hand.R
position: {x: 0.016020812, y: 0.1283572, z: -0.005707851}
rotation: {x: -0.0071167736, y: 0.0017728558, z: -0.036400504, w: 0.9993104}
scale: {x: 1.0000005, y: 0.9999992, z: 0.9999996}
- name: B-ringFinger02.R
parentName: B-ringFinger01.R
position: {x: 0.00000047158898, y: 0.045192316, z: 0.00000021597218}
rotation: {x: 0.037958622, y: -0.0021153935, z: 0.012520862, w: 0.9991986}
scale: {x: 0.99999946, y: 1.0000005, z: 0.9999997}
- name: B-ringFinger03.R
parentName: B-ringFinger02.R
position: {x: -0.0000004720245, y: 0.034694634, z: 0.00000008820079}
rotation: {x: 0.02091165, y: -0.04065229, z: -0.015794862, w: 0.99882966}
scale: {x: 1.0000002, y: 0.99999976, z: 0.9999997}
- name: B-pinky01.R
parentName: B-hand.R
position: {x: 0.041580904, y: 0.119742304, z: -0.0024299922}
rotation: {x: -0.011731888, y: -0.016481936, z: -0.04421447, w: 0.9988172}
scale: {x: 1.0000002, y: 0.9999994, z: 0.99999917}
- name: B-pinky02.R
parentName: B-pinky01.R
position: {x: 0.0000007804244, y: 0.03832724, z: 0.00000044214514}
rotation: {x: 0.039002027, y: 0.011177708, z: 0.009234122, w: 0.99913394}
scale: {x: 1.0000002, y: 1.0000006, z: 1.0000002}
- name: B-pinky03.R
parentName: B-pinky02.R
position: {x: -0.000000269953, y: 0.03220071, z: -0.0000005856981}
rotation: {x: 0.022101695, y: -0.02182341, z: 0.009210792, w: 0.99947506}
scale: {x: 1.0000005, y: 0.99999994, z: 1.0000007}
- name: B-thumb01.R
parentName: B-hand.R
position: {x: -0.039809253, y: 0.048496302, z: 0.0130518135}
rotation: {x: -0.22471787, y: 0.63045275, z: 0.29821387, w: 0.6805144}
scale: {x: 0.99999946, y: 1.0000002, z: 1.0000005}
- name: B-thumb02.R
parentName: B-thumb01.R
position: {x: 0.00000020260806, y: 0.047178134, z: 0.000000160123}
rotation: {x: 0.038173996, y: 0.013301423, z: -0.008042345, w: 0.9991502}
scale: {x: 1.0000007, y: 0.9999997, z: 0.9999999}
- name: B-thumb03.R
parentName: B-thumb02.R
position: {x: -0.00000069069114, y: 0.03520854, z: 0.00000004046409}
rotation: {x: -0.060352694, y: 0.014396386, z: 0.0074255248, w: 0.9980457}
scale: {x: 0.9999995, y: 1.0000004, z: 1}
- name: B-neck
parentName: B-chest
position: {x: -0, y: 0.27081212, z: 0.0000007058524}
rotation: {x: 0.105346866, y: 0, z: -0, w: 0.99443555}
scale: {x: 1, y: 0.9999997, z: 1.0000007}
- name: B-head
parentName: B-neck
position: {x: -0, y: 0.07409704, z: 0.00000025054106}
rotation: {x: -0.069990024, y: 0, z: -0, w: 0.9975477}
scale: {x: 1, y: 1.0000006, z: 0.99999964}
- name: B-jaw
parentName: B-head
position: {x: -0, y: 0, z: 0}
rotation: {x: 0.70698464, y: 0.000007072379, z: -0.00000706994, w: 0.7072289}
scale: {x: 1, y: 1, z: 1}
- name: B-shoulder.L
parentName: B-chest
position: {x: -0, y: 0.19125995, z: -0.005656177}
rotation: {x: -0.5165571, y: 0.44464028, z: 0.47738382, w: 0.5545886}
scale: {x: 0.9999998, y: 0.9999995, z: 1.0000002}
- name: B-upperArm.L
parentName: B-shoulder.L
position: {x: 0.00000040656337, y: 0.16193385, z: -0.0000008664629}
rotation: {x: 0.033948872, y: -0.70908755, z: 0.08334149, w: 0.69935447}
scale: {x: 0.9999998, y: 1.0000002, z: 0.9999999}
- name: B-forearm.L
parentName: B-upperArm.L
position: {x: 0.000000097359035, y: 0.2341381, z: 0.00000030291466}
rotation: {x: 0.0017385628, y: 0.0004205673, z: -0.0032047313, w: 0.99999326}
scale: {x: 0.99999994, y: 1.0000004, z: 1.0000001}
- name: B-hand.L
parentName: B-forearm.L
position: {x: 0.00000052406216, y: 0.1959644, z: -0.0000011816531}
rotation: {x: 0.013386631, y: -0.70541465, z: -0.032826252, w: 0.7079078}
scale: {x: 0.99999994, y: 0.9999992, z: 0.9999996}
- name: B-handProp.L
parentName: B-hand.L
position: {x: -0.0029615294, y: 0.10533054, z: 0.02260892}
rotation: {x: 0.67608327, y: 0.73659164, z: -0.013668119, w: 0.012545332}
scale: {x: 1.0000006, y: 0.99999946, z: 1.0000006}
- name: B-indexFinger01.L
parentName: B-hand.L
position: {x: 0.03605161, y: 0.13202417, z: -0.0022375062}
rotation: {x: 0.019054513, y: 0.014957919, z: -0.03131587, w: 0.99921596}
scale: {x: 1.0000004, y: 0.9999998, z: 1.0000002}
- name: B-indexFinger02.L
parentName: B-indexFinger01.L
position: {x: 0.00000072554116, y: 0.04675823, z: -0.0000005109258}
rotation: {x: 0.04075494, y: -0.02876944, z: 0.0030826945, w: 0.9987502}
scale: {x: 1.0000001, y: 1.0000002, z: 1.0000002}
- name: B-indexFinger03.L
parentName: B-indexFinger02.L
position: {x: -0.00000009920999, y: 0.034652077, z: 0.00000023013986}
rotation: {x: -0.0062364372, y: -0.004023549, z: 0.010918792, w: 0.99991286}
scale: {x: 0.9999998, y: 1.0000008, z: 0.9999995}
- name: B-middleFinger01.L
parentName: B-hand.L
position: {x: 0.00928522, y: 0.13183793, z: -0.008938214}
rotation: {x: -0.004700207, y: 0.0032570793, z: 0.0018007505, w: 0.99998206}
scale: {x: 1.0000007, y: 0.9999999, z: 1.0000001}
- name: B-middleFinger02.L
parentName: B-middleFinger01.L
position: {x: 0.00000028786184, y: 0.048716314, z: -0.00000017087451}
rotation: {x: 0.039368037, y: -0.045739666, z: -0.0037847473, w: 0.9981702}
scale: {x: 0.99999976, y: 1.000001, z: 1.0000006}
- name: B-middleFinger03.L
parentName: B-middleFinger02.L
position: {x: -0.00000066842983, y: 0.035888, z: 0.00000028642995}
rotation: {x: 0.0049827034, y: 0.021227859, z: 0.0063241003, w: 0.99974227}
scale: {x: 0.9999996, y: 0.99999905, z: 0.99999934}
- name: B-ringFinger01.L
parentName: B-hand.L
position: {x: -0.016021809, y: 0.12835726, z: -0.005707858}
rotation: {x: -0.007116776, y: -0.0017729683, z: 0.036399588, w: 0.99931043}
scale: {x: 1.0000005, y: 1.0000002, z: 1.0000006}
- name: B-ringFinger02.L
parentName: B-ringFinger01.L
position: {x: 0.00000043795694, y: 0.04519233, z: 0.00000021050154}
rotation: {x: 0.037963506, y: 0.0021157071, z: -0.01252746, w: 0.9991984}
scale: {x: 0.9999995, y: 0.99999964, z: 0.9999996}
- name: B-ringFinger03.L
parentName: B-ringFinger02.L
position: {x: 0.00000034561023, y: 0.03469565, z: -0.00000007648653}
rotation: {x: 0.020911071, y: 0.04065225, z: 0.015794758, w: 0.99882966}
scale: {x: 1.0000001, y: 1.0000005, z: 0.9999997}
- name: B-pinky01.L
parentName: B-hand.L
position: {x: -0.041581903, y: 0.119742356, z: -0.0024299957}
rotation: {x: -0.01172906, y: 0.01648238, z: 0.0442254, w: 0.9988167}
scale: {x: 1.0000002, y: 1.0000004, z: 1.0000002}
- name: B-pinky02.L
parentName: B-pinky01.L
position: {x: 0.00000014151807, y: 0.03832722, z: 0.00000047056287}
rotation: {x: 0.039005004, y: -0.011177422, z: -0.009239738, w: 0.99913377}
scale: {x: 1.0000002, y: 0.99999946, z: 1.0000001}
- name: B-pinky03.L
parentName: B-pinky02.L
position: {x: 0.000000233103, y: 0.032200746, z: -0.00000055902217}
rotation: {x: 0.022101717, y: 0.02182328, z: -0.009211465, w: 0.99947506}
scale: {x: 0.9999995, y: 1, z: 0.99999964}
- name: B-thumb01.L
parentName: B-hand.L
position: {x: 0.03980834, y: 0.048495278, z: 0.013051865}
rotation: {x: -0.2247114, y: -0.6304557, z: -0.2982149, w: 0.6805132}
scale: {x: 1.0000005, y: 1, z: 1.0000005}
- name: B-thumb02.L
parentName: B-thumb01.L
position: {x: -0.0000007063521, y: 0.047179468, z: -0.00000013365789}
rotation: {x: 0.038171936, y: -0.013301728, z: 0.008042519, w: 0.9991503}
scale: {x: 1.0000004, y: 1, z: 0.9999994}
- name: B-thumb03.L
parentName: B-thumb02.L
position: {x: 0.0000007190916, y: 0.035208564, z: 0.00000017922088}
rotation: {x: -0.06035389, y: -0.014396597, z: -0.007425322, w: 0.9980456}
scale: {x: 0.9999992, y: 0.99999994, z: 1.0000001}
- name: B-thigh.L
parentName: B-hips
position: {x: -0.096950985, y: -0.05446949, z: 0.0020414153}
rotation: {x: 0.9977441, y: 0.011110197, z: -0.0039620763, w: 0.066088475}
scale: {x: 1.0000002, y: 0.9999997, z: 1.000001}
- name: B-shin.L
parentName: B-thigh.L
position: {x: 0.00000018468991, y: 0.41111633, z: 0.0000005281011}
rotation: {x: 0.067057244, y: -0.00057845906, z: 0.011617889, w: 0.9976813}
scale: {x: 0.9999997, y: 1.0000002, z: 0.99999964}
- name: B-foot.L
parentName: B-shin.L
position: {x: -0.00000017405802, y: 0.3880767, z: -0.00000019306846}
rotation: {x: -0.5354999, y: 0.004330197, z: 0.0016612022, w: 0.84452266}
scale: {x: 1.0000001, y: 0.9999997, z: 0.99999976}
- name: B-toe.L
parentName: B-foot.L
position: {x: -0.00000027025197, y: 0.17254004, z: -0.000000117418054}
rotation: {x: 0.000012936387, y: 0.9622731, z: -0.27208534, w: 0.00017343421}
scale: {x: 1, y: 1.0000018, z: 0.999999}
- name: B-thigh.R
parentName: B-hips
position: {x: 0.096950985, y: -0.05446959, z: 0.0020404202}
rotation: {x: 0.9977441, y: -0.011109428, z: 0.003967029, w: 0.066088304}
scale: {x: 1.0000004, y: 0.99999976, z: 1.000008}
- name: B-shin.R
parentName: B-thigh.R
position: {x: 0.0000005496826, y: 0.41111633, z: -0.00000065481464}
rotation: {x: 0.06705632, y: 0.0005783735, z: -0.011616509, w: 0.99768144}
scale: {x: 0.9999997, y: 1.0000002, z: 1.0000007}
- name: B-foot.R
parentName: B-shin.R
position: {x: -0.00000044263592, y: 0.3880767, z: 0.000000107811644}
rotation: {x: -0.53550065, y: -0.0043338453, z: -0.0016630876, w: 0.84452206}
scale: {x: 1, y: 0.9999993, z: 0.99999994}
- name: B-toe.R
parentName: B-foot.R
position: {x: 0.00000074386196, y: 0.17254034, z: 0.00000017937037}
rotation: {x: -0.000012542016, y: 0.96227294, z: -0.27208585, w: -0.00017487761}
scale: {x: 1, y: 1.0000029, z: 0.999997}
armTwist: 0.5
foreArmTwist: 0.5
upperLegTwist: 0.5
legTwist: 0.5
armStretch: 0.05
legStretch: 0.05
feetSpacing: 0
globalScale: 1
rootMotionBoneName:
hasTranslationDoF: 0
hasExtraRoot: 0
skeletonHasParents: 1
lastHumanDescriptionAvatarSource: {fileID: 9000000, guid: 1841c298173cdad4db8df8602c8f1c8d,
type: 3}
autoGenerateAvatarMappingIfUnspecified: 1
animationType: 3
humanoidOversampling: 1
avatarSetup: 2
addHumanoidExtraRootOnlyWhenUsingAvatar: 1
importBlendShapeDeformPercent: 1
remapMaterialsIfMaterialImportModeIsNone: 0
additionalBone: 0
userData:
assetBundleName:
assetBundleVariant:
AssetOrigin:
serializedVersion: 1
productId: 154271
packageName: Human Basic Motions FREE
packageVersion: 2.4.2
assetPath: Assets/Kevin Iglesias/Human Animations/Animations/Female/Idles/HumanF@Idle02.fbx
uploadId: 908942

View file

@ -1,8 +0,0 @@
fileFormatVersion: 2
guid: 53f04a4ec8491524e9cdd29521175434
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View file

@ -1,8 +0,0 @@
fileFormatVersion: 2
guid: 760601f3ccad5cc4bb7829b18ce80e59
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View file

@ -1,975 +0,0 @@
fileFormatVersion: 2
guid: 73f1e892de373654ea6e3fff3ca15f76
labels:
- Animation
ModelImporter:
serializedVersion: 22200
internalIDToNameTable: []
externalObjects: {}
materials:
materialImportMode: 0
materialName: 0
materialSearch: 1
materialLocation: 1
animations:
legacyGenerateAnimations: 4
bakeSimulation: 0
resampleCurves: 1
optimizeGameObjects: 0
removeConstantScaleCurves: 0
motionNodeName:
animationImportErrors:
animationImportWarnings:
animationRetargetingWarnings:
animationDoRetargetingWarnings: 0
importAnimatedCustomProperties: 0
importConstraints: 0
animationCompression: 0
animationRotationError: 0.5
animationPositionError: 0.5
animationScaleError: 0.5
animationWrapMode: 0
extraExposedTransformPaths: []
extraUserProperties: []
clipAnimations:
- serializedVersion: 16
name: HumanF@Fall01
takeName: Untitled
internalID: 3094330708855449807
firstFrame: 0
lastFrame: 30
wrapMode: 0
orientationOffsetY: 0
level: 0
cycleOffset: 0
loop: 0
hasAdditiveReferencePose: 0
loopTime: 1
loopBlend: 0
loopBlendOrientation: 1
loopBlendPositionY: 1
loopBlendPositionXZ: 1
keepOriginalOrientation: 1
keepOriginalPositionY: 1
keepOriginalPositionXZ: 1
heightFromFeet: 0
mirror: 0
bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
curves: []
events: []
transformMask:
- path:
weight: 1
- path: HumanF_BodyMesh
weight: 0
- path: Rig
weight: 1
- path: Rig/B-root
weight: 1
- path: Rig/B-root/B-hips
weight: 1
- path: Rig/B-root/B-hips/B-spine
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck/B-head
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck/B-head/B-jaw
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-handProp.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L/B-indexFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L/B-indexFinger02.L/B-indexFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L/B-middleFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L/B-middleFinger02.L/B-middleFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L/B-pinky02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L/B-pinky02.L/B-pinky03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L/B-ringFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L/B-ringFinger02.L/B-ringFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L/B-thumb02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L/B-thumb02.L/B-thumb03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-handProp.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R/B-indexFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R/B-indexFinger02.R/B-indexFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R/B-middleFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R/B-middleFinger02.R/B-middleFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R/B-pinky02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R/B-pinky02.R/B-pinky03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R/B-ringFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R/B-ringFinger02.R/B-ringFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R/B-thumb02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R/B-thumb02.R/B-thumb03.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L/B-foot.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L/B-foot.L/B-toe.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R/B-foot.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R/B-foot.R/B-toe.R
weight: 1
- path: Rig/B-root/B-spineProxy
weight: 1
maskType: 1
maskSource: {fileID: 31900000, guid: 89527f5525238ee44b3182458d85143a, type: 2}
additiveReferencePoseFrame: 0
isReadable: 0
meshes:
lODScreenPercentages: []
globalScale: 1
meshCompression: 0
addColliders: 0
useSRGBMaterialColor: 1
sortHierarchyByName: 1
importPhysicalCameras: 1
importVisibility: 1
importBlendShapes: 1
importCameras: 1
importLights: 1
nodeNameCollisionStrategy: 1
fileIdsGeneration: 2
swapUVChannels: 0
generateSecondaryUV: 0
useFileUnits: 1
keepQuads: 0
weldVertices: 1
bakeAxisConversion: 0
preserveHierarchy: 1
skinWeightsMode: 0
maxBonesPerVertex: 4
minBoneWeight: 0.001
optimizeBones: 1
meshOptimizationFlags: -1
indexFormat: 0
secondaryUVAngleDistortion: 8
secondaryUVAreaDistortion: 15.000001
secondaryUVHardAngle: 88
secondaryUVMarginMethod: 1
secondaryUVMinLightmapResolution: 40
secondaryUVMinObjectScale: 1
secondaryUVPackMargin: 4
useFileScale: 1
strictVertexDataChecks: 0
tangentSpace:
normalSmoothAngle: 60
normalImportMode: 0
tangentImportMode: 3
normalCalculationMode: 4
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0
blendShapeNormalImportMode: 1
normalSmoothingSource: 0
referencedClips: []
importAnimation: 1
humanDescription:
serializedVersion: 3
human:
- boneName: B-hips
humanName: Hips
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thigh.L
humanName: LeftUpperLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thigh.R
humanName: RightUpperLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shin.L
humanName: LeftLowerLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shin.R
humanName: RightLowerLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-foot.L
humanName: LeftFoot
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-foot.R
humanName: RightFoot
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-spine
humanName: Spine
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-chest
humanName: Chest
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-neck
humanName: Neck
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-head
humanName: Head
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shoulder.L
humanName: LeftShoulder
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shoulder.R
humanName: RightShoulder
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-upperArm.L
humanName: LeftUpperArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-upperArm.R
humanName: RightUpperArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-forearm.L
humanName: LeftLowerArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-forearm.R
humanName: RightLowerArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-hand.L
humanName: LeftHand
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-hand.R
humanName: RightHand
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-toe.L
humanName: LeftToes
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-toe.R
humanName: RightToes
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-jaw
humanName: Jaw
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb01.L
humanName: Left Thumb Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb02.L
humanName: Left Thumb Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb03.L
humanName: Left Thumb Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger01.L
humanName: Left Index Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger02.L
humanName: Left Index Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger03.L
humanName: Left Index Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger01.L
humanName: Left Middle Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger02.L
humanName: Left Middle Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger03.L
humanName: Left Middle Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger01.L
humanName: Left Ring Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger02.L
humanName: Left Ring Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger03.L
humanName: Left Ring Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky01.L
humanName: Left Little Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky02.L
humanName: Left Little Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky03.L
humanName: Left Little Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb01.R
humanName: Right Thumb Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb02.R
humanName: Right Thumb Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb03.R
humanName: Right Thumb Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger01.R
humanName: Right Index Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger02.R
humanName: Right Index Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger03.R
humanName: Right Index Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger01.R
humanName: Right Middle Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger02.R
humanName: Right Middle Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger03.R
humanName: Right Middle Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger01.R
humanName: Right Ring Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger02.R
humanName: Right Ring Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger03.R
humanName: Right Ring Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky01.R
humanName: Right Little Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky02.R
humanName: Right Little Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky03.R
humanName: Right Little Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
skeleton:
- name: Human_DummyModel_F(Clone)
parentName:
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: HumanF_BodyMesh
parentName: Human_DummyModel_F(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Rig
parentName: Human_DummyModel_F(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: B-root
parentName: Rig
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: B-spineProxy
parentName: B-root
position: {x: -0, y: 1.092844, z: 0.029147}
rotation: {x: -0.012905054, y: 0, z: -0, w: 0.99991673}
scale: {x: 1, y: 1.0000001, z: 1.0000001}
- name: B-hips
parentName: B-root
position: {x: -0, y: 0.967712, z: 0.016772}
rotation: {x: 0.04926631, y: 0, z: -0, w: 0.9987857}
scale: {x: 1, y: 1.0000004, z: 1.0000004}
- name: B-spine
parentName: B-hips
position: {x: -0, y: 0.12574437, z: 0.00000011940791}
rotation: {x: -0.062152267, y: 0, z: -0, w: 0.99806666}
scale: {x: 1, y: 0.99999976, z: 0.99999976}
- name: B-chest
parentName: B-spine
position: {x: -0, y: 0.13376056, z: -0.00000077390683}
rotation: {x: -0.02258696, y: 0, z: -0, w: 0.9997449}
scale: {x: 1, y: 0.9999996, z: 0.9999996}
- name: B-shoulder.R
parentName: B-chest
position: {x: -0, y: 0.19125995, z: -0.005656177}
rotation: {x: -0.5165573, y: -0.44464085, z: -0.47738376, w: 0.554588}
scale: {x: 1.0000008, y: 1.0000006, z: 1.0000002}
- name: B-upperArm.R
parentName: B-shoulder.R
position: {x: -0.00000043065853, y: 0.1619337, z: -0.000000866464}
rotation: {x: 0.03406315, y: 0.7090742, z: -0.08345674, w: 0.69934857}
scale: {x: 0.99999976, y: 1, z: 0.99999946}
- name: B-forearm.R
parentName: B-upperArm.R
position: {x: -0.0000005071642, y: 0.23413825, z: 0.0000019611641}
rotation: {x: 0.0013730773, y: -0.00042225965, z: 0.0032032696, w: 0.99999386}
scale: {x: 1.0000001, y: 0.99999964, z: 0.9999996}
- name: B-hand.R
parentName: B-forearm.R
position: {x: -0.000000328232, y: 0.19596381, z: -0.0000008355853}
rotation: {x: 0.013529134, y: 0.7054088, z: 0.032969795, w: 0.70790416}
scale: {x: 0.9999999, y: 1.0000002, z: 1.0000005}
- name: B-handProp.R
parentName: B-hand.R
position: {x: 0.0029605331, y: 0.10533051, z: 0.022608897}
rotation: {x: -0.67608327, y: 0.73659164, z: -0.013668106, w: -0.012545319}
scale: {x: 0.99999964, y: 1.0000005, z: 0.9999996}
- name: B-indexFinger01.R
parentName: B-hand.R
position: {x: -0.036052607, y: 0.13202412, z: -0.0022375023}
rotation: {x: 0.019054495, y: -0.0149580045, z: 0.031315368, w: 0.999216}
scale: {x: 1.0000002, y: 0.99999964, z: 0.9999993}
- name: B-indexFinger02.R
parentName: B-indexFinger01.R
position: {x: 0.00000021708313, y: 0.046758045, z: -0.0000005285747}
rotation: {x: 0.040758472, y: 0.02876925, z: -0.0030862393, w: 0.99875003}
scale: {x: 1, y: 1.0000004, z: 1.0000002}
- name: B-indexFinger03.R
parentName: B-indexFinger02.R
position: {x: 0.000000038075022, y: 0.034652043, z: 0.00000019983679}
rotation: {x: -0.006236443, y: 0.004024028, z: -0.0109188985, w: 0.99991286}
scale: {x: 0.9999999, y: 0.9999999, z: 0.99999964}
- name: B-middleFinger01.R
parentName: B-hand.R
position: {x: -0.00928522, y: 0.1318378, z: -0.0089382}
rotation: {x: -0.004700204, y: -0.0032572027, z: -0.001801642, w: 0.99998206}
scale: {x: 1.0000006, y: 0.9999997, z: 0.99999917}
- name: B-middleFinger02.R
parentName: B-middleFinger01.R
position: {x: -0.0000003849299, y: 0.048716273, z: -0.0000001691299}
rotation: {x: 0.039366316, y: 0.04573892, z: 0.00377753, w: 0.9981703}
scale: {x: 0.9999997, y: 1.0000004, z: 1}
- name: B-middleFinger03.R
parentName: B-middleFinger02.R
position: {x: -0.00000039262213, y: 0.035888083, z: 0.00000029152696}
rotation: {x: 0.0049846717, y: -0.02122791, z: -0.0063242065, w: 0.99974227}
scale: {x: 0.99999964, y: 0.99999994, z: 1.0000002}
- name: B-ringFinger01.R
parentName: B-hand.R
position: {x: 0.016020812, y: 0.1283572, z: -0.005707851}
rotation: {x: -0.0071167736, y: 0.0017728558, z: -0.036400504, w: 0.9993104}
scale: {x: 1.0000005, y: 0.9999992, z: 0.9999996}
- name: B-ringFinger02.R
parentName: B-ringFinger01.R
position: {x: 0.00000047158898, y: 0.045192316, z: 0.00000021597218}
rotation: {x: 0.037958622, y: -0.0021153935, z: 0.012520862, w: 0.9991986}
scale: {x: 0.99999946, y: 1.0000005, z: 0.9999997}
- name: B-ringFinger03.R
parentName: B-ringFinger02.R
position: {x: -0.0000004720245, y: 0.034694634, z: 0.00000008820079}
rotation: {x: 0.02091165, y: -0.04065229, z: -0.015794862, w: 0.99882966}
scale: {x: 1.0000002, y: 0.99999976, z: 0.9999997}
- name: B-pinky01.R
parentName: B-hand.R
position: {x: 0.041580904, y: 0.119742304, z: -0.0024299922}
rotation: {x: -0.011731888, y: -0.016481936, z: -0.04421447, w: 0.9988172}
scale: {x: 1.0000002, y: 0.9999994, z: 0.99999917}
- name: B-pinky02.R
parentName: B-pinky01.R
position: {x: 0.0000007804244, y: 0.03832724, z: 0.00000044214514}
rotation: {x: 0.039002027, y: 0.011177708, z: 0.009234122, w: 0.99913394}
scale: {x: 1.0000002, y: 1.0000006, z: 1.0000002}
- name: B-pinky03.R
parentName: B-pinky02.R
position: {x: -0.000000269953, y: 0.03220071, z: -0.0000005856981}
rotation: {x: 0.022101695, y: -0.02182341, z: 0.009210792, w: 0.99947506}
scale: {x: 1.0000005, y: 0.99999994, z: 1.0000007}
- name: B-thumb01.R
parentName: B-hand.R
position: {x: -0.039809253, y: 0.048496302, z: 0.0130518135}
rotation: {x: -0.22471787, y: 0.63045275, z: 0.29821387, w: 0.6805144}
scale: {x: 0.99999946, y: 1.0000002, z: 1.0000005}
- name: B-thumb02.R
parentName: B-thumb01.R
position: {x: 0.00000020260806, y: 0.047178134, z: 0.000000160123}
rotation: {x: 0.038173996, y: 0.013301423, z: -0.008042345, w: 0.9991502}
scale: {x: 1.0000007, y: 0.9999997, z: 0.9999999}
- name: B-thumb03.R
parentName: B-thumb02.R
position: {x: -0.00000069069114, y: 0.03520854, z: 0.00000004046409}
rotation: {x: -0.060352694, y: 0.014396386, z: 0.0074255248, w: 0.9980457}
scale: {x: 0.9999995, y: 1.0000004, z: 1}
- name: B-neck
parentName: B-chest
position: {x: -0, y: 0.27081212, z: 0.0000007058524}
rotation: {x: 0.105346866, y: 0, z: -0, w: 0.99443555}
scale: {x: 1, y: 0.9999997, z: 1.0000007}
- name: B-head
parentName: B-neck
position: {x: -0, y: 0.07409704, z: 0.00000025054106}
rotation: {x: -0.069990024, y: 0, z: -0, w: 0.9975477}
scale: {x: 1, y: 1.0000006, z: 0.99999964}
- name: B-jaw
parentName: B-head
position: {x: -0, y: 0, z: 0}
rotation: {x: 0.70698464, y: 0.000007072379, z: -0.00000706994, w: 0.7072289}
scale: {x: 1, y: 1, z: 1}
- name: B-shoulder.L
parentName: B-chest
position: {x: -0, y: 0.19125995, z: -0.005656177}
rotation: {x: -0.5165571, y: 0.44464028, z: 0.47738382, w: 0.5545886}
scale: {x: 0.9999998, y: 0.9999995, z: 1.0000002}
- name: B-upperArm.L
parentName: B-shoulder.L
position: {x: 0.00000040656337, y: 0.16193385, z: -0.0000008664629}
rotation: {x: 0.033948872, y: -0.70908755, z: 0.08334149, w: 0.69935447}
scale: {x: 0.9999998, y: 1.0000002, z: 0.9999999}
- name: B-forearm.L
parentName: B-upperArm.L
position: {x: 0.000000097359035, y: 0.2341381, z: 0.00000030291466}
rotation: {x: 0.0017385628, y: 0.0004205673, z: -0.0032047313, w: 0.99999326}
scale: {x: 0.99999994, y: 1.0000004, z: 1.0000001}
- name: B-hand.L
parentName: B-forearm.L
position: {x: 0.00000052406216, y: 0.1959644, z: -0.0000011816531}
rotation: {x: 0.013386631, y: -0.70541465, z: -0.032826252, w: 0.7079078}
scale: {x: 0.99999994, y: 0.9999992, z: 0.9999996}
- name: B-handProp.L
parentName: B-hand.L
position: {x: -0.0029615294, y: 0.10533054, z: 0.02260892}
rotation: {x: 0.67608327, y: 0.73659164, z: -0.013668119, w: 0.012545332}
scale: {x: 1.0000006, y: 0.99999946, z: 1.0000006}
- name: B-indexFinger01.L
parentName: B-hand.L
position: {x: 0.03605161, y: 0.13202417, z: -0.0022375062}
rotation: {x: 0.019054513, y: 0.014957919, z: -0.03131587, w: 0.99921596}
scale: {x: 1.0000004, y: 0.9999998, z: 1.0000002}
- name: B-indexFinger02.L
parentName: B-indexFinger01.L
position: {x: 0.00000072554116, y: 0.04675823, z: -0.0000005109258}
rotation: {x: 0.04075494, y: -0.02876944, z: 0.0030826945, w: 0.9987502}
scale: {x: 1.0000001, y: 1.0000002, z: 1.0000002}
- name: B-indexFinger03.L
parentName: B-indexFinger02.L
position: {x: -0.00000009920999, y: 0.034652077, z: 0.00000023013986}
rotation: {x: -0.0062364372, y: -0.004023549, z: 0.010918792, w: 0.99991286}
scale: {x: 0.9999998, y: 1.0000008, z: 0.9999995}
- name: B-middleFinger01.L
parentName: B-hand.L
position: {x: 0.00928522, y: 0.13183793, z: -0.008938214}
rotation: {x: -0.004700207, y: 0.0032570793, z: 0.0018007505, w: 0.99998206}
scale: {x: 1.0000007, y: 0.9999999, z: 1.0000001}
- name: B-middleFinger02.L
parentName: B-middleFinger01.L
position: {x: 0.00000028786184, y: 0.048716314, z: -0.00000017087451}
rotation: {x: 0.039368037, y: -0.045739666, z: -0.0037847473, w: 0.9981702}
scale: {x: 0.99999976, y: 1.000001, z: 1.0000006}
- name: B-middleFinger03.L
parentName: B-middleFinger02.L
position: {x: -0.00000066842983, y: 0.035888, z: 0.00000028642995}
rotation: {x: 0.0049827034, y: 0.021227859, z: 0.0063241003, w: 0.99974227}
scale: {x: 0.9999996, y: 0.99999905, z: 0.99999934}
- name: B-ringFinger01.L
parentName: B-hand.L
position: {x: -0.016021809, y: 0.12835726, z: -0.005707858}
rotation: {x: -0.007116776, y: -0.0017729683, z: 0.036399588, w: 0.99931043}
scale: {x: 1.0000005, y: 1.0000002, z: 1.0000006}
- name: B-ringFinger02.L
parentName: B-ringFinger01.L
position: {x: 0.00000043795694, y: 0.04519233, z: 0.00000021050154}
rotation: {x: 0.037963506, y: 0.0021157071, z: -0.01252746, w: 0.9991984}
scale: {x: 0.9999995, y: 0.99999964, z: 0.9999996}
- name: B-ringFinger03.L
parentName: B-ringFinger02.L
position: {x: 0.00000034561023, y: 0.03469565, z: -0.00000007648653}
rotation: {x: 0.020911071, y: 0.04065225, z: 0.015794758, w: 0.99882966}
scale: {x: 1.0000001, y: 1.0000005, z: 0.9999997}
- name: B-pinky01.L
parentName: B-hand.L
position: {x: -0.041581903, y: 0.119742356, z: -0.0024299957}
rotation: {x: -0.01172906, y: 0.01648238, z: 0.0442254, w: 0.9988167}
scale: {x: 1.0000002, y: 1.0000004, z: 1.0000002}
- name: B-pinky02.L
parentName: B-pinky01.L
position: {x: 0.00000014151807, y: 0.03832722, z: 0.00000047056287}
rotation: {x: 0.039005004, y: -0.011177422, z: -0.009239738, w: 0.99913377}
scale: {x: 1.0000002, y: 0.99999946, z: 1.0000001}
- name: B-pinky03.L
parentName: B-pinky02.L
position: {x: 0.000000233103, y: 0.032200746, z: -0.00000055902217}
rotation: {x: 0.022101717, y: 0.02182328, z: -0.009211465, w: 0.99947506}
scale: {x: 0.9999995, y: 1, z: 0.99999964}
- name: B-thumb01.L
parentName: B-hand.L
position: {x: 0.03980834, y: 0.048495278, z: 0.013051865}
rotation: {x: -0.2247114, y: -0.6304557, z: -0.2982149, w: 0.6805132}
scale: {x: 1.0000005, y: 1, z: 1.0000005}
- name: B-thumb02.L
parentName: B-thumb01.L
position: {x: -0.0000007063521, y: 0.047179468, z: -0.00000013365789}
rotation: {x: 0.038171936, y: -0.013301728, z: 0.008042519, w: 0.9991503}
scale: {x: 1.0000004, y: 1, z: 0.9999994}
- name: B-thumb03.L
parentName: B-thumb02.L
position: {x: 0.0000007190916, y: 0.035208564, z: 0.00000017922088}
rotation: {x: -0.06035389, y: -0.014396597, z: -0.007425322, w: 0.9980456}
scale: {x: 0.9999992, y: 0.99999994, z: 1.0000001}
- name: B-thigh.L
parentName: B-hips
position: {x: -0.096950985, y: -0.05446949, z: 0.0020414153}
rotation: {x: 0.9977441, y: 0.011110197, z: -0.0039620763, w: 0.066088475}
scale: {x: 1.0000002, y: 0.9999997, z: 1.000001}
- name: B-shin.L
parentName: B-thigh.L
position: {x: 0.00000018468991, y: 0.41111633, z: 0.0000005281011}
rotation: {x: 0.067057244, y: -0.00057845906, z: 0.011617889, w: 0.9976813}
scale: {x: 0.9999997, y: 1.0000002, z: 0.99999964}
- name: B-foot.L
parentName: B-shin.L
position: {x: -0.00000017405802, y: 0.3880767, z: -0.00000019306846}
rotation: {x: -0.5354999, y: 0.004330197, z: 0.0016612022, w: 0.84452266}
scale: {x: 1.0000001, y: 0.9999997, z: 0.99999976}
- name: B-toe.L
parentName: B-foot.L
position: {x: -0.00000027025197, y: 0.17254004, z: -0.000000117418054}
rotation: {x: 0.000012936387, y: 0.9622731, z: -0.27208534, w: 0.00017343421}
scale: {x: 1, y: 1.0000018, z: 0.999999}
- name: B-thigh.R
parentName: B-hips
position: {x: 0.096950985, y: -0.05446959, z: 0.0020404202}
rotation: {x: 0.9977441, y: -0.011109428, z: 0.003967029, w: 0.066088304}
scale: {x: 1.0000004, y: 0.99999976, z: 1.000008}
- name: B-shin.R
parentName: B-thigh.R
position: {x: 0.0000005496826, y: 0.41111633, z: -0.00000065481464}
rotation: {x: 0.06705632, y: 0.0005783735, z: -0.011616509, w: 0.99768144}
scale: {x: 0.9999997, y: 1.0000002, z: 1.0000007}
- name: B-foot.R
parentName: B-shin.R
position: {x: -0.00000044263592, y: 0.3880767, z: 0.000000107811644}
rotation: {x: -0.53550065, y: -0.0043338453, z: -0.0016630876, w: 0.84452206}
scale: {x: 1, y: 0.9999993, z: 0.99999994}
- name: B-toe.R
parentName: B-foot.R
position: {x: 0.00000074386196, y: 0.17254034, z: 0.00000017937037}
rotation: {x: -0.000012542016, y: 0.96227294, z: -0.27208585, w: -0.00017487761}
scale: {x: 1, y: 1.0000029, z: 0.999997}
armTwist: 0.5
foreArmTwist: 0.5
upperLegTwist: 0.5
legTwist: 0.5
armStretch: 0.05
legStretch: 0.05
feetSpacing: 0
globalScale: 1
rootMotionBoneName:
hasTranslationDoF: 0
hasExtraRoot: 0
skeletonHasParents: 1
lastHumanDescriptionAvatarSource: {fileID: 9000000, guid: 1841c298173cdad4db8df8602c8f1c8d,
type: 3}
autoGenerateAvatarMappingIfUnspecified: 1
animationType: 3
humanoidOversampling: 1
avatarSetup: 2
addHumanoidExtraRootOnlyWhenUsingAvatar: 1
importBlendShapeDeformPercent: 1
remapMaterialsIfMaterialImportModeIsNone: 0
additionalBone: 0
userData:
assetBundleName:
assetBundleVariant:
AssetOrigin:
serializedVersion: 1
productId: 154271
packageName: Human Basic Motions FREE
packageVersion: 2.4.2
assetPath: Assets/Kevin Iglesias/Human Animations/Animations/Female/Movement/Jump/HumanF@Fall01.fbx
uploadId: 908942

View file

@ -1,974 +0,0 @@
fileFormatVersion: 2
guid: abfd5440ec4350b46bdc9de604553b7a
ModelImporter:
serializedVersion: 22200
internalIDToNameTable: []
externalObjects: {}
materials:
materialImportMode: 0
materialName: 0
materialSearch: 1
materialLocation: 1
animations:
legacyGenerateAnimations: 4
bakeSimulation: 0
resampleCurves: 1
optimizeGameObjects: 0
removeConstantScaleCurves: 0
motionNodeName:
animationImportErrors:
animationImportWarnings:
animationRetargetingWarnings:
animationDoRetargetingWarnings: 0
importAnimatedCustomProperties: 0
importConstraints: 0
animationCompression: 0
animationRotationError: 0.5
animationPositionError: 0.5
animationScaleError: 0.5
animationWrapMode: 0
extraExposedTransformPaths: []
extraUserProperties: []
clipAnimations:
- serializedVersion: 16
name: HumanF@Jump01 - Begin
takeName: Untitled
internalID: 3094330708855449807
firstFrame: 0
lastFrame: 20
wrapMode: 0
orientationOffsetY: 0
level: 0
cycleOffset: 0
loop: 0
hasAdditiveReferencePose: 0
loopTime: 0
loopBlend: 0
loopBlendOrientation: 1
loopBlendPositionY: 1
loopBlendPositionXZ: 1
keepOriginalOrientation: 1
keepOriginalPositionY: 1
keepOriginalPositionXZ: 1
heightFromFeet: 0
mirror: 0
bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
curves: []
events: []
transformMask:
- path:
weight: 1
- path: HumanF_BodyMesh
weight: 0
- path: Rig
weight: 1
- path: Rig/B-root
weight: 1
- path: Rig/B-root/B-hips
weight: 1
- path: Rig/B-root/B-hips/B-spine
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck/B-head
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck/B-head/B-jaw
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-handProp.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L/B-indexFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L/B-indexFinger02.L/B-indexFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L/B-middleFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L/B-middleFinger02.L/B-middleFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L/B-pinky02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L/B-pinky02.L/B-pinky03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L/B-ringFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L/B-ringFinger02.L/B-ringFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L/B-thumb02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L/B-thumb02.L/B-thumb03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-handProp.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R/B-indexFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R/B-indexFinger02.R/B-indexFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R/B-middleFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R/B-middleFinger02.R/B-middleFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R/B-pinky02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R/B-pinky02.R/B-pinky03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R/B-ringFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R/B-ringFinger02.R/B-ringFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R/B-thumb02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R/B-thumb02.R/B-thumb03.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L/B-foot.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L/B-foot.L/B-toe.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R/B-foot.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R/B-foot.R/B-toe.R
weight: 1
- path: Rig/B-root/B-spineProxy
weight: 1
maskType: 1
maskSource: {fileID: 31900000, guid: 89527f5525238ee44b3182458d85143a, type: 2}
additiveReferencePoseFrame: 0
isReadable: 0
meshes:
lODScreenPercentages: []
globalScale: 1
meshCompression: 0
addColliders: 0
useSRGBMaterialColor: 1
sortHierarchyByName: 1
importPhysicalCameras: 1
importVisibility: 1
importBlendShapes: 1
importCameras: 1
importLights: 1
nodeNameCollisionStrategy: 1
fileIdsGeneration: 2
swapUVChannels: 0
generateSecondaryUV: 0
useFileUnits: 1
keepQuads: 0
weldVertices: 1
bakeAxisConversion: 0
preserveHierarchy: 1
skinWeightsMode: 0
maxBonesPerVertex: 4
minBoneWeight: 0.001
optimizeBones: 1
meshOptimizationFlags: -1
indexFormat: 0
secondaryUVAngleDistortion: 8
secondaryUVAreaDistortion: 15.000001
secondaryUVHardAngle: 88
secondaryUVMarginMethod: 1
secondaryUVMinLightmapResolution: 40
secondaryUVMinObjectScale: 1
secondaryUVPackMargin: 4
useFileScale: 1
strictVertexDataChecks: 0
tangentSpace:
normalSmoothAngle: 60
normalImportMode: 0
tangentImportMode: 3
normalCalculationMode: 4
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0
blendShapeNormalImportMode: 1
normalSmoothingSource: 0
referencedClips: []
importAnimation: 1
humanDescription:
serializedVersion: 3
human:
- boneName: B-hips
humanName: Hips
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thigh.L
humanName: LeftUpperLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thigh.R
humanName: RightUpperLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shin.L
humanName: LeftLowerLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shin.R
humanName: RightLowerLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-foot.L
humanName: LeftFoot
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-foot.R
humanName: RightFoot
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-spine
humanName: Spine
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-chest
humanName: Chest
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-neck
humanName: Neck
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-head
humanName: Head
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shoulder.L
humanName: LeftShoulder
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shoulder.R
humanName: RightShoulder
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-upperArm.L
humanName: LeftUpperArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-upperArm.R
humanName: RightUpperArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-forearm.L
humanName: LeftLowerArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-forearm.R
humanName: RightLowerArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-hand.L
humanName: LeftHand
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-hand.R
humanName: RightHand
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-toe.L
humanName: LeftToes
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-toe.R
humanName: RightToes
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-jaw
humanName: Jaw
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb01.L
humanName: Left Thumb Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb02.L
humanName: Left Thumb Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb03.L
humanName: Left Thumb Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger01.L
humanName: Left Index Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger02.L
humanName: Left Index Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger03.L
humanName: Left Index Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger01.L
humanName: Left Middle Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger02.L
humanName: Left Middle Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger03.L
humanName: Left Middle Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger01.L
humanName: Left Ring Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger02.L
humanName: Left Ring Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger03.L
humanName: Left Ring Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky01.L
humanName: Left Little Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky02.L
humanName: Left Little Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky03.L
humanName: Left Little Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb01.R
humanName: Right Thumb Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb02.R
humanName: Right Thumb Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb03.R
humanName: Right Thumb Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger01.R
humanName: Right Index Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger02.R
humanName: Right Index Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger03.R
humanName: Right Index Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger01.R
humanName: Right Middle Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger02.R
humanName: Right Middle Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger03.R
humanName: Right Middle Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger01.R
humanName: Right Ring Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger02.R
humanName: Right Ring Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger03.R
humanName: Right Ring Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky01.R
humanName: Right Little Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky02.R
humanName: Right Little Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky03.R
humanName: Right Little Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
skeleton:
- name: Human_DummyModel_F(Clone)
parentName:
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: HumanF_BodyMesh
parentName: Human_DummyModel_F(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Rig
parentName: Human_DummyModel_F(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: B-root
parentName: Rig
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: B-spineProxy
parentName: B-root
position: {x: -0, y: 1.092844, z: 0.029147}
rotation: {x: -0.012905054, y: 0, z: -0, w: 0.99991673}
scale: {x: 1, y: 1.0000001, z: 1.0000001}
- name: B-hips
parentName: B-root
position: {x: -0, y: 0.967712, z: 0.016772}
rotation: {x: 0.04926631, y: 0, z: -0, w: 0.9987857}
scale: {x: 1, y: 1.0000004, z: 1.0000004}
- name: B-spine
parentName: B-hips
position: {x: -0, y: 0.12574437, z: 0.00000011940791}
rotation: {x: -0.062152267, y: 0, z: -0, w: 0.99806666}
scale: {x: 1, y: 0.99999976, z: 0.99999976}
- name: B-chest
parentName: B-spine
position: {x: -0, y: 0.13376056, z: -0.00000077390683}
rotation: {x: -0.02258696, y: 0, z: -0, w: 0.9997449}
scale: {x: 1, y: 0.9999996, z: 0.9999996}
- name: B-shoulder.R
parentName: B-chest
position: {x: -0, y: 0.19125995, z: -0.005656177}
rotation: {x: -0.5165573, y: -0.44464085, z: -0.47738376, w: 0.554588}
scale: {x: 1.0000008, y: 1.0000006, z: 1.0000002}
- name: B-upperArm.R
parentName: B-shoulder.R
position: {x: -0.00000043065853, y: 0.1619337, z: -0.000000866464}
rotation: {x: 0.03406315, y: 0.7090742, z: -0.08345674, w: 0.69934857}
scale: {x: 0.99999976, y: 1, z: 0.99999946}
- name: B-forearm.R
parentName: B-upperArm.R
position: {x: -0.0000005071642, y: 0.23413825, z: 0.0000019611641}
rotation: {x: 0.0013730773, y: -0.00042225965, z: 0.0032032696, w: 0.99999386}
scale: {x: 1.0000001, y: 0.99999964, z: 0.9999996}
- name: B-hand.R
parentName: B-forearm.R
position: {x: -0.000000328232, y: 0.19596381, z: -0.0000008355853}
rotation: {x: 0.013529134, y: 0.7054088, z: 0.032969795, w: 0.70790416}
scale: {x: 0.9999999, y: 1.0000002, z: 1.0000005}
- name: B-handProp.R
parentName: B-hand.R
position: {x: 0.0029605331, y: 0.10533051, z: 0.022608897}
rotation: {x: -0.67608327, y: 0.73659164, z: -0.013668106, w: -0.012545319}
scale: {x: 0.99999964, y: 1.0000005, z: 0.9999996}
- name: B-indexFinger01.R
parentName: B-hand.R
position: {x: -0.036052607, y: 0.13202412, z: -0.0022375023}
rotation: {x: 0.019054495, y: -0.0149580045, z: 0.031315368, w: 0.999216}
scale: {x: 1.0000002, y: 0.99999964, z: 0.9999993}
- name: B-indexFinger02.R
parentName: B-indexFinger01.R
position: {x: 0.00000021708313, y: 0.046758045, z: -0.0000005285747}
rotation: {x: 0.040758472, y: 0.02876925, z: -0.0030862393, w: 0.99875003}
scale: {x: 1, y: 1.0000004, z: 1.0000002}
- name: B-indexFinger03.R
parentName: B-indexFinger02.R
position: {x: 0.000000038075022, y: 0.034652043, z: 0.00000019983679}
rotation: {x: -0.006236443, y: 0.004024028, z: -0.0109188985, w: 0.99991286}
scale: {x: 0.9999999, y: 0.9999999, z: 0.99999964}
- name: B-middleFinger01.R
parentName: B-hand.R
position: {x: -0.00928522, y: 0.1318378, z: -0.0089382}
rotation: {x: -0.004700204, y: -0.0032572027, z: -0.001801642, w: 0.99998206}
scale: {x: 1.0000006, y: 0.9999997, z: 0.99999917}
- name: B-middleFinger02.R
parentName: B-middleFinger01.R
position: {x: -0.0000003849299, y: 0.048716273, z: -0.0000001691299}
rotation: {x: 0.039366316, y: 0.04573892, z: 0.00377753, w: 0.9981703}
scale: {x: 0.9999997, y: 1.0000004, z: 1}
- name: B-middleFinger03.R
parentName: B-middleFinger02.R
position: {x: -0.00000039262213, y: 0.035888083, z: 0.00000029152696}
rotation: {x: 0.0049846717, y: -0.02122791, z: -0.0063242065, w: 0.99974227}
scale: {x: 0.99999964, y: 0.99999994, z: 1.0000002}
- name: B-ringFinger01.R
parentName: B-hand.R
position: {x: 0.016020812, y: 0.1283572, z: -0.005707851}
rotation: {x: -0.0071167736, y: 0.0017728558, z: -0.036400504, w: 0.9993104}
scale: {x: 1.0000005, y: 0.9999992, z: 0.9999996}
- name: B-ringFinger02.R
parentName: B-ringFinger01.R
position: {x: 0.00000047158898, y: 0.045192316, z: 0.00000021597218}
rotation: {x: 0.037958622, y: -0.0021153935, z: 0.012520862, w: 0.9991986}
scale: {x: 0.99999946, y: 1.0000005, z: 0.9999997}
- name: B-ringFinger03.R
parentName: B-ringFinger02.R
position: {x: -0.0000004720245, y: 0.034694634, z: 0.00000008820079}
rotation: {x: 0.02091165, y: -0.04065229, z: -0.015794862, w: 0.99882966}
scale: {x: 1.0000002, y: 0.99999976, z: 0.9999997}
- name: B-pinky01.R
parentName: B-hand.R
position: {x: 0.041580904, y: 0.119742304, z: -0.0024299922}
rotation: {x: -0.011731888, y: -0.016481936, z: -0.04421447, w: 0.9988172}
scale: {x: 1.0000002, y: 0.9999994, z: 0.99999917}
- name: B-pinky02.R
parentName: B-pinky01.R
position: {x: 0.0000007804244, y: 0.03832724, z: 0.00000044214514}
rotation: {x: 0.039002027, y: 0.011177708, z: 0.009234122, w: 0.99913394}
scale: {x: 1.0000002, y: 1.0000006, z: 1.0000002}
- name: B-pinky03.R
parentName: B-pinky02.R
position: {x: -0.000000269953, y: 0.03220071, z: -0.0000005856981}
rotation: {x: 0.022101695, y: -0.02182341, z: 0.009210792, w: 0.99947506}
scale: {x: 1.0000005, y: 0.99999994, z: 1.0000007}
- name: B-thumb01.R
parentName: B-hand.R
position: {x: -0.039809253, y: 0.048496302, z: 0.0130518135}
rotation: {x: -0.22471787, y: 0.63045275, z: 0.29821387, w: 0.6805144}
scale: {x: 0.99999946, y: 1.0000002, z: 1.0000005}
- name: B-thumb02.R
parentName: B-thumb01.R
position: {x: 0.00000020260806, y: 0.047178134, z: 0.000000160123}
rotation: {x: 0.038173996, y: 0.013301423, z: -0.008042345, w: 0.9991502}
scale: {x: 1.0000007, y: 0.9999997, z: 0.9999999}
- name: B-thumb03.R
parentName: B-thumb02.R
position: {x: -0.00000069069114, y: 0.03520854, z: 0.00000004046409}
rotation: {x: -0.060352694, y: 0.014396386, z: 0.0074255248, w: 0.9980457}
scale: {x: 0.9999995, y: 1.0000004, z: 1}
- name: B-neck
parentName: B-chest
position: {x: -0, y: 0.27081212, z: 0.0000007058524}
rotation: {x: 0.105346866, y: 0, z: -0, w: 0.99443555}
scale: {x: 1, y: 0.9999997, z: 1.0000007}
- name: B-head
parentName: B-neck
position: {x: -0, y: 0.07409704, z: 0.00000025054106}
rotation: {x: -0.069990024, y: 0, z: -0, w: 0.9975477}
scale: {x: 1, y: 1.0000006, z: 0.99999964}
- name: B-jaw
parentName: B-head
position: {x: -0, y: 0, z: 0}
rotation: {x: 0.70698464, y: 0.000007072379, z: -0.00000706994, w: 0.7072289}
scale: {x: 1, y: 1, z: 1}
- name: B-shoulder.L
parentName: B-chest
position: {x: -0, y: 0.19125995, z: -0.005656177}
rotation: {x: -0.5165571, y: 0.44464028, z: 0.47738382, w: 0.5545886}
scale: {x: 0.9999998, y: 0.9999995, z: 1.0000002}
- name: B-upperArm.L
parentName: B-shoulder.L
position: {x: 0.00000040656337, y: 0.16193385, z: -0.0000008664629}
rotation: {x: 0.033948872, y: -0.70908755, z: 0.08334149, w: 0.69935447}
scale: {x: 0.9999998, y: 1.0000002, z: 0.9999999}
- name: B-forearm.L
parentName: B-upperArm.L
position: {x: 0.000000097359035, y: 0.2341381, z: 0.00000030291466}
rotation: {x: 0.0017385628, y: 0.0004205673, z: -0.0032047313, w: 0.99999326}
scale: {x: 0.99999994, y: 1.0000004, z: 1.0000001}
- name: B-hand.L
parentName: B-forearm.L
position: {x: 0.00000052406216, y: 0.1959644, z: -0.0000011816531}
rotation: {x: 0.013386631, y: -0.70541465, z: -0.032826252, w: 0.7079078}
scale: {x: 0.99999994, y: 0.9999992, z: 0.9999996}
- name: B-handProp.L
parentName: B-hand.L
position: {x: -0.0029615294, y: 0.10533054, z: 0.02260892}
rotation: {x: 0.67608327, y: 0.73659164, z: -0.013668119, w: 0.012545332}
scale: {x: 1.0000006, y: 0.99999946, z: 1.0000006}
- name: B-indexFinger01.L
parentName: B-hand.L
position: {x: 0.03605161, y: 0.13202417, z: -0.0022375062}
rotation: {x: 0.019054513, y: 0.014957919, z: -0.03131587, w: 0.99921596}
scale: {x: 1.0000004, y: 0.9999998, z: 1.0000002}
- name: B-indexFinger02.L
parentName: B-indexFinger01.L
position: {x: 0.00000072554116, y: 0.04675823, z: -0.0000005109258}
rotation: {x: 0.04075494, y: -0.02876944, z: 0.0030826945, w: 0.9987502}
scale: {x: 1.0000001, y: 1.0000002, z: 1.0000002}
- name: B-indexFinger03.L
parentName: B-indexFinger02.L
position: {x: -0.00000009920999, y: 0.034652077, z: 0.00000023013986}
rotation: {x: -0.0062364372, y: -0.004023549, z: 0.010918792, w: 0.99991286}
scale: {x: 0.9999998, y: 1.0000008, z: 0.9999995}
- name: B-middleFinger01.L
parentName: B-hand.L
position: {x: 0.00928522, y: 0.13183793, z: -0.008938214}
rotation: {x: -0.004700207, y: 0.0032570793, z: 0.0018007505, w: 0.99998206}
scale: {x: 1.0000007, y: 0.9999999, z: 1.0000001}
- name: B-middleFinger02.L
parentName: B-middleFinger01.L
position: {x: 0.00000028786184, y: 0.048716314, z: -0.00000017087451}
rotation: {x: 0.039368037, y: -0.045739666, z: -0.0037847473, w: 0.9981702}
scale: {x: 0.99999976, y: 1.000001, z: 1.0000006}
- name: B-middleFinger03.L
parentName: B-middleFinger02.L
position: {x: -0.00000066842983, y: 0.035888, z: 0.00000028642995}
rotation: {x: 0.0049827034, y: 0.021227859, z: 0.0063241003, w: 0.99974227}
scale: {x: 0.9999996, y: 0.99999905, z: 0.99999934}
- name: B-ringFinger01.L
parentName: B-hand.L
position: {x: -0.016021809, y: 0.12835726, z: -0.005707858}
rotation: {x: -0.007116776, y: -0.0017729683, z: 0.036399588, w: 0.99931043}
scale: {x: 1.0000005, y: 1.0000002, z: 1.0000006}
- name: B-ringFinger02.L
parentName: B-ringFinger01.L
position: {x: 0.00000043795694, y: 0.04519233, z: 0.00000021050154}
rotation: {x: 0.037963506, y: 0.0021157071, z: -0.01252746, w: 0.9991984}
scale: {x: 0.9999995, y: 0.99999964, z: 0.9999996}
- name: B-ringFinger03.L
parentName: B-ringFinger02.L
position: {x: 0.00000034561023, y: 0.03469565, z: -0.00000007648653}
rotation: {x: 0.020911071, y: 0.04065225, z: 0.015794758, w: 0.99882966}
scale: {x: 1.0000001, y: 1.0000005, z: 0.9999997}
- name: B-pinky01.L
parentName: B-hand.L
position: {x: -0.041581903, y: 0.119742356, z: -0.0024299957}
rotation: {x: -0.01172906, y: 0.01648238, z: 0.0442254, w: 0.9988167}
scale: {x: 1.0000002, y: 1.0000004, z: 1.0000002}
- name: B-pinky02.L
parentName: B-pinky01.L
position: {x: 0.00000014151807, y: 0.03832722, z: 0.00000047056287}
rotation: {x: 0.039005004, y: -0.011177422, z: -0.009239738, w: 0.99913377}
scale: {x: 1.0000002, y: 0.99999946, z: 1.0000001}
- name: B-pinky03.L
parentName: B-pinky02.L
position: {x: 0.000000233103, y: 0.032200746, z: -0.00000055902217}
rotation: {x: 0.022101717, y: 0.02182328, z: -0.009211465, w: 0.99947506}
scale: {x: 0.9999995, y: 1, z: 0.99999964}
- name: B-thumb01.L
parentName: B-hand.L
position: {x: 0.03980834, y: 0.048495278, z: 0.013051865}
rotation: {x: -0.2247114, y: -0.6304557, z: -0.2982149, w: 0.6805132}
scale: {x: 1.0000005, y: 1, z: 1.0000005}
- name: B-thumb02.L
parentName: B-thumb01.L
position: {x: -0.0000007063521, y: 0.047179468, z: -0.00000013365789}
rotation: {x: 0.038171936, y: -0.013301728, z: 0.008042519, w: 0.9991503}
scale: {x: 1.0000004, y: 1, z: 0.9999994}
- name: B-thumb03.L
parentName: B-thumb02.L
position: {x: 0.0000007190916, y: 0.035208564, z: 0.00000017922088}
rotation: {x: -0.06035389, y: -0.014396597, z: -0.007425322, w: 0.9980456}
scale: {x: 0.9999992, y: 0.99999994, z: 1.0000001}
- name: B-thigh.L
parentName: B-hips
position: {x: -0.096950985, y: -0.05446949, z: 0.0020414153}
rotation: {x: 0.9977441, y: 0.011110197, z: -0.0039620763, w: 0.066088475}
scale: {x: 1.0000002, y: 0.9999997, z: 1.000001}
- name: B-shin.L
parentName: B-thigh.L
position: {x: 0.00000018468991, y: 0.41111633, z: 0.0000005281011}
rotation: {x: 0.067057244, y: -0.00057845906, z: 0.011617889, w: 0.9976813}
scale: {x: 0.9999997, y: 1.0000002, z: 0.99999964}
- name: B-foot.L
parentName: B-shin.L
position: {x: -0.00000017405802, y: 0.3880767, z: -0.00000019306846}
rotation: {x: -0.5354999, y: 0.004330197, z: 0.0016612022, w: 0.84452266}
scale: {x: 1.0000001, y: 0.9999997, z: 0.99999976}
- name: B-toe.L
parentName: B-foot.L
position: {x: -0.00000027025197, y: 0.17254004, z: -0.000000117418054}
rotation: {x: 0.000012936387, y: 0.9622731, z: -0.27208534, w: 0.00017343421}
scale: {x: 1, y: 1.0000018, z: 0.999999}
- name: B-thigh.R
parentName: B-hips
position: {x: 0.096950985, y: -0.05446959, z: 0.0020404202}
rotation: {x: 0.9977441, y: -0.011109428, z: 0.003967029, w: 0.066088304}
scale: {x: 1.0000004, y: 0.99999976, z: 1.000008}
- name: B-shin.R
parentName: B-thigh.R
position: {x: 0.0000005496826, y: 0.41111633, z: -0.00000065481464}
rotation: {x: 0.06705632, y: 0.0005783735, z: -0.011616509, w: 0.99768144}
scale: {x: 0.9999997, y: 1.0000002, z: 1.0000007}
- name: B-foot.R
parentName: B-shin.R
position: {x: -0.00000044263592, y: 0.3880767, z: 0.000000107811644}
rotation: {x: -0.53550065, y: -0.0043338453, z: -0.0016630876, w: 0.84452206}
scale: {x: 1, y: 0.9999993, z: 0.99999994}
- name: B-toe.R
parentName: B-foot.R
position: {x: 0.00000074386196, y: 0.17254034, z: 0.00000017937037}
rotation: {x: -0.000012542016, y: 0.96227294, z: -0.27208585, w: -0.00017487761}
scale: {x: 1, y: 1.0000029, z: 0.999997}
armTwist: 0.5
foreArmTwist: 0.5
upperLegTwist: 0.5
legTwist: 0.5
armStretch: 0.05
legStretch: 0.05
feetSpacing: 0
globalScale: 1
rootMotionBoneName:
hasTranslationDoF: 0
hasExtraRoot: 0
skeletonHasParents: 1
lastHumanDescriptionAvatarSource: {fileID: 9000000, guid: 1841c298173cdad4db8df8602c8f1c8d,
type: 3}
autoGenerateAvatarMappingIfUnspecified: 1
animationType: 3
humanoidOversampling: 1
avatarSetup: 2
addHumanoidExtraRootOnlyWhenUsingAvatar: 1
importBlendShapeDeformPercent: 1
remapMaterialsIfMaterialImportModeIsNone: 0
additionalBone: 0
userData:
assetBundleName:
assetBundleVariant:
AssetOrigin:
serializedVersion: 1
productId: 154271
packageName: Human Basic Motions FREE
packageVersion: 2.4.2
assetPath: Assets/Kevin Iglesias/Human Animations/Animations/Female/Movement/Jump/HumanF@Jump01
- Begin.fbx
uploadId: 908942

View file

@ -1,974 +0,0 @@
fileFormatVersion: 2
guid: 1dce3ce39fd4c0f4d9d2dbd5929a328c
ModelImporter:
serializedVersion: 22200
internalIDToNameTable: []
externalObjects: {}
materials:
materialImportMode: 0
materialName: 0
materialSearch: 1
materialLocation: 1
animations:
legacyGenerateAnimations: 4
bakeSimulation: 0
resampleCurves: 1
optimizeGameObjects: 0
removeConstantScaleCurves: 0
motionNodeName:
animationImportErrors:
animationImportWarnings:
animationRetargetingWarnings:
animationDoRetargetingWarnings: 0
importAnimatedCustomProperties: 0
importConstraints: 0
animationCompression: 0
animationRotationError: 0.5
animationPositionError: 0.5
animationScaleError: 0.5
animationWrapMode: 0
extraExposedTransformPaths: []
extraUserProperties: []
clipAnimations:
- serializedVersion: 16
name: HumanF@Jump01 - Land
takeName: Untitled
internalID: 3094330708855449807
firstFrame: 0
lastFrame: 18
wrapMode: 0
orientationOffsetY: 0
level: 0
cycleOffset: 0
loop: 0
hasAdditiveReferencePose: 0
loopTime: 0
loopBlend: 0
loopBlendOrientation: 1
loopBlendPositionY: 1
loopBlendPositionXZ: 1
keepOriginalOrientation: 1
keepOriginalPositionY: 1
keepOriginalPositionXZ: 1
heightFromFeet: 0
mirror: 0
bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
curves: []
events: []
transformMask:
- path:
weight: 1
- path: HumanF_BodyMesh
weight: 0
- path: Rig
weight: 1
- path: Rig/B-root
weight: 1
- path: Rig/B-root/B-hips
weight: 1
- path: Rig/B-root/B-hips/B-spine
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck/B-head
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck/B-head/B-jaw
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-handProp.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L/B-indexFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L/B-indexFinger02.L/B-indexFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L/B-middleFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L/B-middleFinger02.L/B-middleFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L/B-pinky02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L/B-pinky02.L/B-pinky03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L/B-ringFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L/B-ringFinger02.L/B-ringFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L/B-thumb02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L/B-thumb02.L/B-thumb03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-handProp.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R/B-indexFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R/B-indexFinger02.R/B-indexFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R/B-middleFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R/B-middleFinger02.R/B-middleFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R/B-pinky02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R/B-pinky02.R/B-pinky03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R/B-ringFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R/B-ringFinger02.R/B-ringFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R/B-thumb02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R/B-thumb02.R/B-thumb03.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L/B-foot.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L/B-foot.L/B-toe.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R/B-foot.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R/B-foot.R/B-toe.R
weight: 1
- path: Rig/B-root/B-spineProxy
weight: 1
maskType: 1
maskSource: {fileID: 31900000, guid: 89527f5525238ee44b3182458d85143a, type: 2}
additiveReferencePoseFrame: 0
isReadable: 0
meshes:
lODScreenPercentages: []
globalScale: 1
meshCompression: 0
addColliders: 0
useSRGBMaterialColor: 1
sortHierarchyByName: 1
importPhysicalCameras: 1
importVisibility: 1
importBlendShapes: 1
importCameras: 1
importLights: 1
nodeNameCollisionStrategy: 1
fileIdsGeneration: 2
swapUVChannels: 0
generateSecondaryUV: 0
useFileUnits: 1
keepQuads: 0
weldVertices: 1
bakeAxisConversion: 0
preserveHierarchy: 1
skinWeightsMode: 0
maxBonesPerVertex: 4
minBoneWeight: 0.001
optimizeBones: 1
meshOptimizationFlags: -1
indexFormat: 0
secondaryUVAngleDistortion: 8
secondaryUVAreaDistortion: 15.000001
secondaryUVHardAngle: 88
secondaryUVMarginMethod: 1
secondaryUVMinLightmapResolution: 40
secondaryUVMinObjectScale: 1
secondaryUVPackMargin: 4
useFileScale: 1
strictVertexDataChecks: 0
tangentSpace:
normalSmoothAngle: 60
normalImportMode: 0
tangentImportMode: 3
normalCalculationMode: 4
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0
blendShapeNormalImportMode: 1
normalSmoothingSource: 0
referencedClips: []
importAnimation: 1
humanDescription:
serializedVersion: 3
human:
- boneName: B-hips
humanName: Hips
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thigh.L
humanName: LeftUpperLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thigh.R
humanName: RightUpperLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shin.L
humanName: LeftLowerLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shin.R
humanName: RightLowerLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-foot.L
humanName: LeftFoot
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-foot.R
humanName: RightFoot
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-spine
humanName: Spine
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-chest
humanName: Chest
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-neck
humanName: Neck
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-head
humanName: Head
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shoulder.L
humanName: LeftShoulder
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shoulder.R
humanName: RightShoulder
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-upperArm.L
humanName: LeftUpperArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-upperArm.R
humanName: RightUpperArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-forearm.L
humanName: LeftLowerArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-forearm.R
humanName: RightLowerArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-hand.L
humanName: LeftHand
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-hand.R
humanName: RightHand
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-toe.L
humanName: LeftToes
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-toe.R
humanName: RightToes
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-jaw
humanName: Jaw
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb01.L
humanName: Left Thumb Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb02.L
humanName: Left Thumb Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb03.L
humanName: Left Thumb Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger01.L
humanName: Left Index Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger02.L
humanName: Left Index Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger03.L
humanName: Left Index Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger01.L
humanName: Left Middle Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger02.L
humanName: Left Middle Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger03.L
humanName: Left Middle Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger01.L
humanName: Left Ring Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger02.L
humanName: Left Ring Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger03.L
humanName: Left Ring Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky01.L
humanName: Left Little Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky02.L
humanName: Left Little Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky03.L
humanName: Left Little Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb01.R
humanName: Right Thumb Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb02.R
humanName: Right Thumb Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb03.R
humanName: Right Thumb Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger01.R
humanName: Right Index Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger02.R
humanName: Right Index Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger03.R
humanName: Right Index Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger01.R
humanName: Right Middle Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger02.R
humanName: Right Middle Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger03.R
humanName: Right Middle Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger01.R
humanName: Right Ring Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger02.R
humanName: Right Ring Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger03.R
humanName: Right Ring Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky01.R
humanName: Right Little Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky02.R
humanName: Right Little Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky03.R
humanName: Right Little Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
skeleton:
- name: Human_DummyModel_F(Clone)
parentName:
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: HumanF_BodyMesh
parentName: Human_DummyModel_F(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Rig
parentName: Human_DummyModel_F(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: B-root
parentName: Rig
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: B-spineProxy
parentName: B-root
position: {x: -0, y: 1.092844, z: 0.029147}
rotation: {x: -0.012905054, y: 0, z: -0, w: 0.99991673}
scale: {x: 1, y: 1.0000001, z: 1.0000001}
- name: B-hips
parentName: B-root
position: {x: -0, y: 0.967712, z: 0.016772}
rotation: {x: 0.04926631, y: 0, z: -0, w: 0.9987857}
scale: {x: 1, y: 1.0000004, z: 1.0000004}
- name: B-spine
parentName: B-hips
position: {x: -0, y: 0.12574437, z: 0.00000011940791}
rotation: {x: -0.062152267, y: 0, z: -0, w: 0.99806666}
scale: {x: 1, y: 0.99999976, z: 0.99999976}
- name: B-chest
parentName: B-spine
position: {x: -0, y: 0.13376056, z: -0.00000077390683}
rotation: {x: -0.02258696, y: 0, z: -0, w: 0.9997449}
scale: {x: 1, y: 0.9999996, z: 0.9999996}
- name: B-shoulder.R
parentName: B-chest
position: {x: -0, y: 0.19125995, z: -0.005656177}
rotation: {x: -0.5165573, y: -0.44464085, z: -0.47738376, w: 0.554588}
scale: {x: 1.0000008, y: 1.0000006, z: 1.0000002}
- name: B-upperArm.R
parentName: B-shoulder.R
position: {x: -0.00000043065853, y: 0.1619337, z: -0.000000866464}
rotation: {x: 0.03406315, y: 0.7090742, z: -0.08345674, w: 0.69934857}
scale: {x: 0.99999976, y: 1, z: 0.99999946}
- name: B-forearm.R
parentName: B-upperArm.R
position: {x: -0.0000005071642, y: 0.23413825, z: 0.0000019611641}
rotation: {x: 0.0013730773, y: -0.00042225965, z: 0.0032032696, w: 0.99999386}
scale: {x: 1.0000001, y: 0.99999964, z: 0.9999996}
- name: B-hand.R
parentName: B-forearm.R
position: {x: -0.000000328232, y: 0.19596381, z: -0.0000008355853}
rotation: {x: 0.013529134, y: 0.7054088, z: 0.032969795, w: 0.70790416}
scale: {x: 0.9999999, y: 1.0000002, z: 1.0000005}
- name: B-handProp.R
parentName: B-hand.R
position: {x: 0.0029605331, y: 0.10533051, z: 0.022608897}
rotation: {x: -0.67608327, y: 0.73659164, z: -0.013668106, w: -0.012545319}
scale: {x: 0.99999964, y: 1.0000005, z: 0.9999996}
- name: B-indexFinger01.R
parentName: B-hand.R
position: {x: -0.036052607, y: 0.13202412, z: -0.0022375023}
rotation: {x: 0.019054495, y: -0.0149580045, z: 0.031315368, w: 0.999216}
scale: {x: 1.0000002, y: 0.99999964, z: 0.9999993}
- name: B-indexFinger02.R
parentName: B-indexFinger01.R
position: {x: 0.00000021708313, y: 0.046758045, z: -0.0000005285747}
rotation: {x: 0.040758472, y: 0.02876925, z: -0.0030862393, w: 0.99875003}
scale: {x: 1, y: 1.0000004, z: 1.0000002}
- name: B-indexFinger03.R
parentName: B-indexFinger02.R
position: {x: 0.000000038075022, y: 0.034652043, z: 0.00000019983679}
rotation: {x: -0.006236443, y: 0.004024028, z: -0.0109188985, w: 0.99991286}
scale: {x: 0.9999999, y: 0.9999999, z: 0.99999964}
- name: B-middleFinger01.R
parentName: B-hand.R
position: {x: -0.00928522, y: 0.1318378, z: -0.0089382}
rotation: {x: -0.004700204, y: -0.0032572027, z: -0.001801642, w: 0.99998206}
scale: {x: 1.0000006, y: 0.9999997, z: 0.99999917}
- name: B-middleFinger02.R
parentName: B-middleFinger01.R
position: {x: -0.0000003849299, y: 0.048716273, z: -0.0000001691299}
rotation: {x: 0.039366316, y: 0.04573892, z: 0.00377753, w: 0.9981703}
scale: {x: 0.9999997, y: 1.0000004, z: 1}
- name: B-middleFinger03.R
parentName: B-middleFinger02.R
position: {x: -0.00000039262213, y: 0.035888083, z: 0.00000029152696}
rotation: {x: 0.0049846717, y: -0.02122791, z: -0.0063242065, w: 0.99974227}
scale: {x: 0.99999964, y: 0.99999994, z: 1.0000002}
- name: B-ringFinger01.R
parentName: B-hand.R
position: {x: 0.016020812, y: 0.1283572, z: -0.005707851}
rotation: {x: -0.0071167736, y: 0.0017728558, z: -0.036400504, w: 0.9993104}
scale: {x: 1.0000005, y: 0.9999992, z: 0.9999996}
- name: B-ringFinger02.R
parentName: B-ringFinger01.R
position: {x: 0.00000047158898, y: 0.045192316, z: 0.00000021597218}
rotation: {x: 0.037958622, y: -0.0021153935, z: 0.012520862, w: 0.9991986}
scale: {x: 0.99999946, y: 1.0000005, z: 0.9999997}
- name: B-ringFinger03.R
parentName: B-ringFinger02.R
position: {x: -0.0000004720245, y: 0.034694634, z: 0.00000008820079}
rotation: {x: 0.02091165, y: -0.04065229, z: -0.015794862, w: 0.99882966}
scale: {x: 1.0000002, y: 0.99999976, z: 0.9999997}
- name: B-pinky01.R
parentName: B-hand.R
position: {x: 0.041580904, y: 0.119742304, z: -0.0024299922}
rotation: {x: -0.011731888, y: -0.016481936, z: -0.04421447, w: 0.9988172}
scale: {x: 1.0000002, y: 0.9999994, z: 0.99999917}
- name: B-pinky02.R
parentName: B-pinky01.R
position: {x: 0.0000007804244, y: 0.03832724, z: 0.00000044214514}
rotation: {x: 0.039002027, y: 0.011177708, z: 0.009234122, w: 0.99913394}
scale: {x: 1.0000002, y: 1.0000006, z: 1.0000002}
- name: B-pinky03.R
parentName: B-pinky02.R
position: {x: -0.000000269953, y: 0.03220071, z: -0.0000005856981}
rotation: {x: 0.022101695, y: -0.02182341, z: 0.009210792, w: 0.99947506}
scale: {x: 1.0000005, y: 0.99999994, z: 1.0000007}
- name: B-thumb01.R
parentName: B-hand.R
position: {x: -0.039809253, y: 0.048496302, z: 0.0130518135}
rotation: {x: -0.22471787, y: 0.63045275, z: 0.29821387, w: 0.6805144}
scale: {x: 0.99999946, y: 1.0000002, z: 1.0000005}
- name: B-thumb02.R
parentName: B-thumb01.R
position: {x: 0.00000020260806, y: 0.047178134, z: 0.000000160123}
rotation: {x: 0.038173996, y: 0.013301423, z: -0.008042345, w: 0.9991502}
scale: {x: 1.0000007, y: 0.9999997, z: 0.9999999}
- name: B-thumb03.R
parentName: B-thumb02.R
position: {x: -0.00000069069114, y: 0.03520854, z: 0.00000004046409}
rotation: {x: -0.060352694, y: 0.014396386, z: 0.0074255248, w: 0.9980457}
scale: {x: 0.9999995, y: 1.0000004, z: 1}
- name: B-neck
parentName: B-chest
position: {x: -0, y: 0.27081212, z: 0.0000007058524}
rotation: {x: 0.105346866, y: 0, z: -0, w: 0.99443555}
scale: {x: 1, y: 0.9999997, z: 1.0000007}
- name: B-head
parentName: B-neck
position: {x: -0, y: 0.07409704, z: 0.00000025054106}
rotation: {x: -0.069990024, y: 0, z: -0, w: 0.9975477}
scale: {x: 1, y: 1.0000006, z: 0.99999964}
- name: B-jaw
parentName: B-head
position: {x: -0, y: 0, z: 0}
rotation: {x: 0.70698464, y: 0.000007072379, z: -0.00000706994, w: 0.7072289}
scale: {x: 1, y: 1, z: 1}
- name: B-shoulder.L
parentName: B-chest
position: {x: -0, y: 0.19125995, z: -0.005656177}
rotation: {x: -0.5165571, y: 0.44464028, z: 0.47738382, w: 0.5545886}
scale: {x: 0.9999998, y: 0.9999995, z: 1.0000002}
- name: B-upperArm.L
parentName: B-shoulder.L
position: {x: 0.00000040656337, y: 0.16193385, z: -0.0000008664629}
rotation: {x: 0.033948872, y: -0.70908755, z: 0.08334149, w: 0.69935447}
scale: {x: 0.9999998, y: 1.0000002, z: 0.9999999}
- name: B-forearm.L
parentName: B-upperArm.L
position: {x: 0.000000097359035, y: 0.2341381, z: 0.00000030291466}
rotation: {x: 0.0017385628, y: 0.0004205673, z: -0.0032047313, w: 0.99999326}
scale: {x: 0.99999994, y: 1.0000004, z: 1.0000001}
- name: B-hand.L
parentName: B-forearm.L
position: {x: 0.00000052406216, y: 0.1959644, z: -0.0000011816531}
rotation: {x: 0.013386631, y: -0.70541465, z: -0.032826252, w: 0.7079078}
scale: {x: 0.99999994, y: 0.9999992, z: 0.9999996}
- name: B-handProp.L
parentName: B-hand.L
position: {x: -0.0029615294, y: 0.10533054, z: 0.02260892}
rotation: {x: 0.67608327, y: 0.73659164, z: -0.013668119, w: 0.012545332}
scale: {x: 1.0000006, y: 0.99999946, z: 1.0000006}
- name: B-indexFinger01.L
parentName: B-hand.L
position: {x: 0.03605161, y: 0.13202417, z: -0.0022375062}
rotation: {x: 0.019054513, y: 0.014957919, z: -0.03131587, w: 0.99921596}
scale: {x: 1.0000004, y: 0.9999998, z: 1.0000002}
- name: B-indexFinger02.L
parentName: B-indexFinger01.L
position: {x: 0.00000072554116, y: 0.04675823, z: -0.0000005109258}
rotation: {x: 0.04075494, y: -0.02876944, z: 0.0030826945, w: 0.9987502}
scale: {x: 1.0000001, y: 1.0000002, z: 1.0000002}
- name: B-indexFinger03.L
parentName: B-indexFinger02.L
position: {x: -0.00000009920999, y: 0.034652077, z: 0.00000023013986}
rotation: {x: -0.0062364372, y: -0.004023549, z: 0.010918792, w: 0.99991286}
scale: {x: 0.9999998, y: 1.0000008, z: 0.9999995}
- name: B-middleFinger01.L
parentName: B-hand.L
position: {x: 0.00928522, y: 0.13183793, z: -0.008938214}
rotation: {x: -0.004700207, y: 0.0032570793, z: 0.0018007505, w: 0.99998206}
scale: {x: 1.0000007, y: 0.9999999, z: 1.0000001}
- name: B-middleFinger02.L
parentName: B-middleFinger01.L
position: {x: 0.00000028786184, y: 0.048716314, z: -0.00000017087451}
rotation: {x: 0.039368037, y: -0.045739666, z: -0.0037847473, w: 0.9981702}
scale: {x: 0.99999976, y: 1.000001, z: 1.0000006}
- name: B-middleFinger03.L
parentName: B-middleFinger02.L
position: {x: -0.00000066842983, y: 0.035888, z: 0.00000028642995}
rotation: {x: 0.0049827034, y: 0.021227859, z: 0.0063241003, w: 0.99974227}
scale: {x: 0.9999996, y: 0.99999905, z: 0.99999934}
- name: B-ringFinger01.L
parentName: B-hand.L
position: {x: -0.016021809, y: 0.12835726, z: -0.005707858}
rotation: {x: -0.007116776, y: -0.0017729683, z: 0.036399588, w: 0.99931043}
scale: {x: 1.0000005, y: 1.0000002, z: 1.0000006}
- name: B-ringFinger02.L
parentName: B-ringFinger01.L
position: {x: 0.00000043795694, y: 0.04519233, z: 0.00000021050154}
rotation: {x: 0.037963506, y: 0.0021157071, z: -0.01252746, w: 0.9991984}
scale: {x: 0.9999995, y: 0.99999964, z: 0.9999996}
- name: B-ringFinger03.L
parentName: B-ringFinger02.L
position: {x: 0.00000034561023, y: 0.03469565, z: -0.00000007648653}
rotation: {x: 0.020911071, y: 0.04065225, z: 0.015794758, w: 0.99882966}
scale: {x: 1.0000001, y: 1.0000005, z: 0.9999997}
- name: B-pinky01.L
parentName: B-hand.L
position: {x: -0.041581903, y: 0.119742356, z: -0.0024299957}
rotation: {x: -0.01172906, y: 0.01648238, z: 0.0442254, w: 0.9988167}
scale: {x: 1.0000002, y: 1.0000004, z: 1.0000002}
- name: B-pinky02.L
parentName: B-pinky01.L
position: {x: 0.00000014151807, y: 0.03832722, z: 0.00000047056287}
rotation: {x: 0.039005004, y: -0.011177422, z: -0.009239738, w: 0.99913377}
scale: {x: 1.0000002, y: 0.99999946, z: 1.0000001}
- name: B-pinky03.L
parentName: B-pinky02.L
position: {x: 0.000000233103, y: 0.032200746, z: -0.00000055902217}
rotation: {x: 0.022101717, y: 0.02182328, z: -0.009211465, w: 0.99947506}
scale: {x: 0.9999995, y: 1, z: 0.99999964}
- name: B-thumb01.L
parentName: B-hand.L
position: {x: 0.03980834, y: 0.048495278, z: 0.013051865}
rotation: {x: -0.2247114, y: -0.6304557, z: -0.2982149, w: 0.6805132}
scale: {x: 1.0000005, y: 1, z: 1.0000005}
- name: B-thumb02.L
parentName: B-thumb01.L
position: {x: -0.0000007063521, y: 0.047179468, z: -0.00000013365789}
rotation: {x: 0.038171936, y: -0.013301728, z: 0.008042519, w: 0.9991503}
scale: {x: 1.0000004, y: 1, z: 0.9999994}
- name: B-thumb03.L
parentName: B-thumb02.L
position: {x: 0.0000007190916, y: 0.035208564, z: 0.00000017922088}
rotation: {x: -0.06035389, y: -0.014396597, z: -0.007425322, w: 0.9980456}
scale: {x: 0.9999992, y: 0.99999994, z: 1.0000001}
- name: B-thigh.L
parentName: B-hips
position: {x: -0.096950985, y: -0.05446949, z: 0.0020414153}
rotation: {x: 0.9977441, y: 0.011110197, z: -0.0039620763, w: 0.066088475}
scale: {x: 1.0000002, y: 0.9999997, z: 1.000001}
- name: B-shin.L
parentName: B-thigh.L
position: {x: 0.00000018468991, y: 0.41111633, z: 0.0000005281011}
rotation: {x: 0.067057244, y: -0.00057845906, z: 0.011617889, w: 0.9976813}
scale: {x: 0.9999997, y: 1.0000002, z: 0.99999964}
- name: B-foot.L
parentName: B-shin.L
position: {x: -0.00000017405802, y: 0.3880767, z: -0.00000019306846}
rotation: {x: -0.5354999, y: 0.004330197, z: 0.0016612022, w: 0.84452266}
scale: {x: 1.0000001, y: 0.9999997, z: 0.99999976}
- name: B-toe.L
parentName: B-foot.L
position: {x: -0.00000027025197, y: 0.17254004, z: -0.000000117418054}
rotation: {x: 0.000012936387, y: 0.9622731, z: -0.27208534, w: 0.00017343421}
scale: {x: 1, y: 1.0000018, z: 0.999999}
- name: B-thigh.R
parentName: B-hips
position: {x: 0.096950985, y: -0.05446959, z: 0.0020404202}
rotation: {x: 0.9977441, y: -0.011109428, z: 0.003967029, w: 0.066088304}
scale: {x: 1.0000004, y: 0.99999976, z: 1.000008}
- name: B-shin.R
parentName: B-thigh.R
position: {x: 0.0000005496826, y: 0.41111633, z: -0.00000065481464}
rotation: {x: 0.06705632, y: 0.0005783735, z: -0.011616509, w: 0.99768144}
scale: {x: 0.9999997, y: 1.0000002, z: 1.0000007}
- name: B-foot.R
parentName: B-shin.R
position: {x: -0.00000044263592, y: 0.3880767, z: 0.000000107811644}
rotation: {x: -0.53550065, y: -0.0043338453, z: -0.0016630876, w: 0.84452206}
scale: {x: 1, y: 0.9999993, z: 0.99999994}
- name: B-toe.R
parentName: B-foot.R
position: {x: 0.00000074386196, y: 0.17254034, z: 0.00000017937037}
rotation: {x: -0.000012542016, y: 0.96227294, z: -0.27208585, w: -0.00017487761}
scale: {x: 1, y: 1.0000029, z: 0.999997}
armTwist: 0.5
foreArmTwist: 0.5
upperLegTwist: 0.5
legTwist: 0.5
armStretch: 0.05
legStretch: 0.05
feetSpacing: 0
globalScale: 1
rootMotionBoneName:
hasTranslationDoF: 0
hasExtraRoot: 0
skeletonHasParents: 1
lastHumanDescriptionAvatarSource: {fileID: 9000000, guid: 1841c298173cdad4db8df8602c8f1c8d,
type: 3}
autoGenerateAvatarMappingIfUnspecified: 1
animationType: 3
humanoidOversampling: 1
avatarSetup: 2
addHumanoidExtraRootOnlyWhenUsingAvatar: 1
importBlendShapeDeformPercent: 1
remapMaterialsIfMaterialImportModeIsNone: 0
additionalBone: 0
userData:
assetBundleName:
assetBundleVariant:
AssetOrigin:
serializedVersion: 1
productId: 154271
packageName: Human Basic Motions FREE
packageVersion: 2.4.2
assetPath: Assets/Kevin Iglesias/Human Animations/Animations/Female/Movement/Jump/HumanF@Jump01
- Land.fbx
uploadId: 908942

View file

@ -1,974 +0,0 @@
fileFormatVersion: 2
guid: c8115ddbaf422d84bba45d0cc5d9fc70
ModelImporter:
serializedVersion: 22200
internalIDToNameTable: []
externalObjects: {}
materials:
materialImportMode: 0
materialName: 0
materialSearch: 1
materialLocation: 1
animations:
legacyGenerateAnimations: 4
bakeSimulation: 0
resampleCurves: 1
optimizeGameObjects: 0
removeConstantScaleCurves: 0
motionNodeName: Rig/B-root
animationImportErrors:
animationImportWarnings:
animationRetargetingWarnings:
animationDoRetargetingWarnings: 0
importAnimatedCustomProperties: 0
importConstraints: 0
animationCompression: 0
animationRotationError: 0.5
animationPositionError: 0.5
animationScaleError: 0.5
animationWrapMode: 0
extraExposedTransformPaths: []
extraUserProperties: []
clipAnimations:
- serializedVersion: 16
name: HumanF@Jump01 [RM] - Begin
takeName: Untitled
internalID: 3094330708855449807
firstFrame: 0
lastFrame: 20
wrapMode: 0
orientationOffsetY: 0
level: 0
cycleOffset: 0
loop: 0
hasAdditiveReferencePose: 0
loopTime: 0
loopBlend: 0
loopBlendOrientation: 1
loopBlendPositionY: 1
loopBlendPositionXZ: 0
keepOriginalOrientation: 1
keepOriginalPositionY: 1
keepOriginalPositionXZ: 1
heightFromFeet: 0
mirror: 0
bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
curves: []
events: []
transformMask:
- path:
weight: 1
- path: HumanF_BodyMesh
weight: 0
- path: Rig
weight: 1
- path: Rig/B-root
weight: 1
- path: Rig/B-root/B-hips
weight: 1
- path: Rig/B-root/B-hips/B-spine
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck/B-head
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck/B-head/B-jaw
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-handProp.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L/B-indexFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L/B-indexFinger02.L/B-indexFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L/B-middleFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L/B-middleFinger02.L/B-middleFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L/B-pinky02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L/B-pinky02.L/B-pinky03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L/B-ringFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L/B-ringFinger02.L/B-ringFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L/B-thumb02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L/B-thumb02.L/B-thumb03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-handProp.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R/B-indexFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R/B-indexFinger02.R/B-indexFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R/B-middleFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R/B-middleFinger02.R/B-middleFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R/B-pinky02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R/B-pinky02.R/B-pinky03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R/B-ringFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R/B-ringFinger02.R/B-ringFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R/B-thumb02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R/B-thumb02.R/B-thumb03.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L/B-foot.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L/B-foot.L/B-toe.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R/B-foot.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R/B-foot.R/B-toe.R
weight: 1
- path: Rig/B-root/B-spineProxy
weight: 1
maskType: 1
maskSource: {fileID: 31900000, guid: 89527f5525238ee44b3182458d85143a, type: 2}
additiveReferencePoseFrame: 0
isReadable: 0
meshes:
lODScreenPercentages: []
globalScale: 1
meshCompression: 0
addColliders: 0
useSRGBMaterialColor: 1
sortHierarchyByName: 1
importPhysicalCameras: 1
importVisibility: 1
importBlendShapes: 1
importCameras: 1
importLights: 1
nodeNameCollisionStrategy: 1
fileIdsGeneration: 2
swapUVChannels: 0
generateSecondaryUV: 0
useFileUnits: 1
keepQuads: 0
weldVertices: 1
bakeAxisConversion: 0
preserveHierarchy: 1
skinWeightsMode: 0
maxBonesPerVertex: 4
minBoneWeight: 0.001
optimizeBones: 1
meshOptimizationFlags: -1
indexFormat: 0
secondaryUVAngleDistortion: 8
secondaryUVAreaDistortion: 15.000001
secondaryUVHardAngle: 88
secondaryUVMarginMethod: 1
secondaryUVMinLightmapResolution: 40
secondaryUVMinObjectScale: 1
secondaryUVPackMargin: 4
useFileScale: 1
strictVertexDataChecks: 0
tangentSpace:
normalSmoothAngle: 60
normalImportMode: 0
tangentImportMode: 3
normalCalculationMode: 4
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0
blendShapeNormalImportMode: 1
normalSmoothingSource: 0
referencedClips: []
importAnimation: 1
humanDescription:
serializedVersion: 3
human:
- boneName: B-hips
humanName: Hips
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thigh.L
humanName: LeftUpperLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thigh.R
humanName: RightUpperLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shin.L
humanName: LeftLowerLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shin.R
humanName: RightLowerLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-foot.L
humanName: LeftFoot
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-foot.R
humanName: RightFoot
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-spine
humanName: Spine
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-chest
humanName: Chest
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-neck
humanName: Neck
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-head
humanName: Head
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shoulder.L
humanName: LeftShoulder
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shoulder.R
humanName: RightShoulder
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-upperArm.L
humanName: LeftUpperArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-upperArm.R
humanName: RightUpperArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-forearm.L
humanName: LeftLowerArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-forearm.R
humanName: RightLowerArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-hand.L
humanName: LeftHand
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-hand.R
humanName: RightHand
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-toe.L
humanName: LeftToes
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-toe.R
humanName: RightToes
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-jaw
humanName: Jaw
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb01.L
humanName: Left Thumb Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb02.L
humanName: Left Thumb Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb03.L
humanName: Left Thumb Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger01.L
humanName: Left Index Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger02.L
humanName: Left Index Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger03.L
humanName: Left Index Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger01.L
humanName: Left Middle Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger02.L
humanName: Left Middle Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger03.L
humanName: Left Middle Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger01.L
humanName: Left Ring Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger02.L
humanName: Left Ring Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger03.L
humanName: Left Ring Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky01.L
humanName: Left Little Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky02.L
humanName: Left Little Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky03.L
humanName: Left Little Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb01.R
humanName: Right Thumb Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb02.R
humanName: Right Thumb Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb03.R
humanName: Right Thumb Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger01.R
humanName: Right Index Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger02.R
humanName: Right Index Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger03.R
humanName: Right Index Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger01.R
humanName: Right Middle Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger02.R
humanName: Right Middle Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger03.R
humanName: Right Middle Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger01.R
humanName: Right Ring Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger02.R
humanName: Right Ring Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger03.R
humanName: Right Ring Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky01.R
humanName: Right Little Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky02.R
humanName: Right Little Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky03.R
humanName: Right Little Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
skeleton:
- name: Human_DummyModel_F(Clone)
parentName:
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: HumanF_BodyMesh
parentName: Human_DummyModel_F(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Rig
parentName: Human_DummyModel_F(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: B-root
parentName: Rig
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: B-spineProxy
parentName: B-root
position: {x: -0, y: 1.092844, z: 0.029147}
rotation: {x: -0.012905054, y: 0, z: -0, w: 0.99991673}
scale: {x: 1, y: 1.0000001, z: 1.0000001}
- name: B-hips
parentName: B-root
position: {x: -0, y: 0.967712, z: 0.016772}
rotation: {x: 0.04926631, y: 0, z: -0, w: 0.9987857}
scale: {x: 1, y: 1.0000004, z: 1.0000004}
- name: B-spine
parentName: B-hips
position: {x: -0, y: 0.12574437, z: 0.00000011940791}
rotation: {x: -0.062152267, y: 0, z: -0, w: 0.99806666}
scale: {x: 1, y: 0.99999976, z: 0.99999976}
- name: B-chest
parentName: B-spine
position: {x: -0, y: 0.13376056, z: -0.00000077390683}
rotation: {x: -0.02258696, y: 0, z: -0, w: 0.9997449}
scale: {x: 1, y: 0.9999996, z: 0.9999996}
- name: B-shoulder.R
parentName: B-chest
position: {x: -0, y: 0.19125995, z: -0.005656177}
rotation: {x: -0.5165573, y: -0.44464085, z: -0.47738376, w: 0.554588}
scale: {x: 1.0000008, y: 1.0000006, z: 1.0000002}
- name: B-upperArm.R
parentName: B-shoulder.R
position: {x: -0.00000043065853, y: 0.1619337, z: -0.000000866464}
rotation: {x: 0.03406315, y: 0.7090742, z: -0.08345674, w: 0.69934857}
scale: {x: 0.99999976, y: 1, z: 0.99999946}
- name: B-forearm.R
parentName: B-upperArm.R
position: {x: -0.0000005071642, y: 0.23413825, z: 0.0000019611641}
rotation: {x: 0.0013730773, y: -0.00042225965, z: 0.0032032696, w: 0.99999386}
scale: {x: 1.0000001, y: 0.99999964, z: 0.9999996}
- name: B-hand.R
parentName: B-forearm.R
position: {x: -0.000000328232, y: 0.19596381, z: -0.0000008355853}
rotation: {x: 0.013529134, y: 0.7054088, z: 0.032969795, w: 0.70790416}
scale: {x: 0.9999999, y: 1.0000002, z: 1.0000005}
- name: B-handProp.R
parentName: B-hand.R
position: {x: 0.0029605331, y: 0.10533051, z: 0.022608897}
rotation: {x: -0.67608327, y: 0.73659164, z: -0.013668106, w: -0.012545319}
scale: {x: 0.99999964, y: 1.0000005, z: 0.9999996}
- name: B-indexFinger01.R
parentName: B-hand.R
position: {x: -0.036052607, y: 0.13202412, z: -0.0022375023}
rotation: {x: 0.019054495, y: -0.0149580045, z: 0.031315368, w: 0.999216}
scale: {x: 1.0000002, y: 0.99999964, z: 0.9999993}
- name: B-indexFinger02.R
parentName: B-indexFinger01.R
position: {x: 0.00000021708313, y: 0.046758045, z: -0.0000005285747}
rotation: {x: 0.040758472, y: 0.02876925, z: -0.0030862393, w: 0.99875003}
scale: {x: 1, y: 1.0000004, z: 1.0000002}
- name: B-indexFinger03.R
parentName: B-indexFinger02.R
position: {x: 0.000000038075022, y: 0.034652043, z: 0.00000019983679}
rotation: {x: -0.006236443, y: 0.004024028, z: -0.0109188985, w: 0.99991286}
scale: {x: 0.9999999, y: 0.9999999, z: 0.99999964}
- name: B-middleFinger01.R
parentName: B-hand.R
position: {x: -0.00928522, y: 0.1318378, z: -0.0089382}
rotation: {x: -0.004700204, y: -0.0032572027, z: -0.001801642, w: 0.99998206}
scale: {x: 1.0000006, y: 0.9999997, z: 0.99999917}
- name: B-middleFinger02.R
parentName: B-middleFinger01.R
position: {x: -0.0000003849299, y: 0.048716273, z: -0.0000001691299}
rotation: {x: 0.039366316, y: 0.04573892, z: 0.00377753, w: 0.9981703}
scale: {x: 0.9999997, y: 1.0000004, z: 1}
- name: B-middleFinger03.R
parentName: B-middleFinger02.R
position: {x: -0.00000039262213, y: 0.035888083, z: 0.00000029152696}
rotation: {x: 0.0049846717, y: -0.02122791, z: -0.0063242065, w: 0.99974227}
scale: {x: 0.99999964, y: 0.99999994, z: 1.0000002}
- name: B-ringFinger01.R
parentName: B-hand.R
position: {x: 0.016020812, y: 0.1283572, z: -0.005707851}
rotation: {x: -0.0071167736, y: 0.0017728558, z: -0.036400504, w: 0.9993104}
scale: {x: 1.0000005, y: 0.9999992, z: 0.9999996}
- name: B-ringFinger02.R
parentName: B-ringFinger01.R
position: {x: 0.00000047158898, y: 0.045192316, z: 0.00000021597218}
rotation: {x: 0.037958622, y: -0.0021153935, z: 0.012520862, w: 0.9991986}
scale: {x: 0.99999946, y: 1.0000005, z: 0.9999997}
- name: B-ringFinger03.R
parentName: B-ringFinger02.R
position: {x: -0.0000004720245, y: 0.034694634, z: 0.00000008820079}
rotation: {x: 0.02091165, y: -0.04065229, z: -0.015794862, w: 0.99882966}
scale: {x: 1.0000002, y: 0.99999976, z: 0.9999997}
- name: B-pinky01.R
parentName: B-hand.R
position: {x: 0.041580904, y: 0.119742304, z: -0.0024299922}
rotation: {x: -0.011731888, y: -0.016481936, z: -0.04421447, w: 0.9988172}
scale: {x: 1.0000002, y: 0.9999994, z: 0.99999917}
- name: B-pinky02.R
parentName: B-pinky01.R
position: {x: 0.0000007804244, y: 0.03832724, z: 0.00000044214514}
rotation: {x: 0.039002027, y: 0.011177708, z: 0.009234122, w: 0.99913394}
scale: {x: 1.0000002, y: 1.0000006, z: 1.0000002}
- name: B-pinky03.R
parentName: B-pinky02.R
position: {x: -0.000000269953, y: 0.03220071, z: -0.0000005856981}
rotation: {x: 0.022101695, y: -0.02182341, z: 0.009210792, w: 0.99947506}
scale: {x: 1.0000005, y: 0.99999994, z: 1.0000007}
- name: B-thumb01.R
parentName: B-hand.R
position: {x: -0.039809253, y: 0.048496302, z: 0.0130518135}
rotation: {x: -0.22471787, y: 0.63045275, z: 0.29821387, w: 0.6805144}
scale: {x: 0.99999946, y: 1.0000002, z: 1.0000005}
- name: B-thumb02.R
parentName: B-thumb01.R
position: {x: 0.00000020260806, y: 0.047178134, z: 0.000000160123}
rotation: {x: 0.038173996, y: 0.013301423, z: -0.008042345, w: 0.9991502}
scale: {x: 1.0000007, y: 0.9999997, z: 0.9999999}
- name: B-thumb03.R
parentName: B-thumb02.R
position: {x: -0.00000069069114, y: 0.03520854, z: 0.00000004046409}
rotation: {x: -0.060352694, y: 0.014396386, z: 0.0074255248, w: 0.9980457}
scale: {x: 0.9999995, y: 1.0000004, z: 1}
- name: B-neck
parentName: B-chest
position: {x: -0, y: 0.27081212, z: 0.0000007058524}
rotation: {x: 0.105346866, y: 0, z: -0, w: 0.99443555}
scale: {x: 1, y: 0.9999997, z: 1.0000007}
- name: B-head
parentName: B-neck
position: {x: -0, y: 0.07409704, z: 0.00000025054106}
rotation: {x: -0.069990024, y: 0, z: -0, w: 0.9975477}
scale: {x: 1, y: 1.0000006, z: 0.99999964}
- name: B-jaw
parentName: B-head
position: {x: -0, y: 0, z: 0}
rotation: {x: 0.70698464, y: 0.000007072379, z: -0.00000706994, w: 0.7072289}
scale: {x: 1, y: 1, z: 1}
- name: B-shoulder.L
parentName: B-chest
position: {x: -0, y: 0.19125995, z: -0.005656177}
rotation: {x: -0.5165571, y: 0.44464028, z: 0.47738382, w: 0.5545886}
scale: {x: 0.9999998, y: 0.9999995, z: 1.0000002}
- name: B-upperArm.L
parentName: B-shoulder.L
position: {x: 0.00000040656337, y: 0.16193385, z: -0.0000008664629}
rotation: {x: 0.033948872, y: -0.70908755, z: 0.08334149, w: 0.69935447}
scale: {x: 0.9999998, y: 1.0000002, z: 0.9999999}
- name: B-forearm.L
parentName: B-upperArm.L
position: {x: 0.000000097359035, y: 0.2341381, z: 0.00000030291466}
rotation: {x: 0.0017385628, y: 0.0004205673, z: -0.0032047313, w: 0.99999326}
scale: {x: 0.99999994, y: 1.0000004, z: 1.0000001}
- name: B-hand.L
parentName: B-forearm.L
position: {x: 0.00000052406216, y: 0.1959644, z: -0.0000011816531}
rotation: {x: 0.013386631, y: -0.70541465, z: -0.032826252, w: 0.7079078}
scale: {x: 0.99999994, y: 0.9999992, z: 0.9999996}
- name: B-handProp.L
parentName: B-hand.L
position: {x: -0.0029615294, y: 0.10533054, z: 0.02260892}
rotation: {x: 0.67608327, y: 0.73659164, z: -0.013668119, w: 0.012545332}
scale: {x: 1.0000006, y: 0.99999946, z: 1.0000006}
- name: B-indexFinger01.L
parentName: B-hand.L
position: {x: 0.03605161, y: 0.13202417, z: -0.0022375062}
rotation: {x: 0.019054513, y: 0.014957919, z: -0.03131587, w: 0.99921596}
scale: {x: 1.0000004, y: 0.9999998, z: 1.0000002}
- name: B-indexFinger02.L
parentName: B-indexFinger01.L
position: {x: 0.00000072554116, y: 0.04675823, z: -0.0000005109258}
rotation: {x: 0.04075494, y: -0.02876944, z: 0.0030826945, w: 0.9987502}
scale: {x: 1.0000001, y: 1.0000002, z: 1.0000002}
- name: B-indexFinger03.L
parentName: B-indexFinger02.L
position: {x: -0.00000009920999, y: 0.034652077, z: 0.00000023013986}
rotation: {x: -0.0062364372, y: -0.004023549, z: 0.010918792, w: 0.99991286}
scale: {x: 0.9999998, y: 1.0000008, z: 0.9999995}
- name: B-middleFinger01.L
parentName: B-hand.L
position: {x: 0.00928522, y: 0.13183793, z: -0.008938214}
rotation: {x: -0.004700207, y: 0.0032570793, z: 0.0018007505, w: 0.99998206}
scale: {x: 1.0000007, y: 0.9999999, z: 1.0000001}
- name: B-middleFinger02.L
parentName: B-middleFinger01.L
position: {x: 0.00000028786184, y: 0.048716314, z: -0.00000017087451}
rotation: {x: 0.039368037, y: -0.045739666, z: -0.0037847473, w: 0.9981702}
scale: {x: 0.99999976, y: 1.000001, z: 1.0000006}
- name: B-middleFinger03.L
parentName: B-middleFinger02.L
position: {x: -0.00000066842983, y: 0.035888, z: 0.00000028642995}
rotation: {x: 0.0049827034, y: 0.021227859, z: 0.0063241003, w: 0.99974227}
scale: {x: 0.9999996, y: 0.99999905, z: 0.99999934}
- name: B-ringFinger01.L
parentName: B-hand.L
position: {x: -0.016021809, y: 0.12835726, z: -0.005707858}
rotation: {x: -0.007116776, y: -0.0017729683, z: 0.036399588, w: 0.99931043}
scale: {x: 1.0000005, y: 1.0000002, z: 1.0000006}
- name: B-ringFinger02.L
parentName: B-ringFinger01.L
position: {x: 0.00000043795694, y: 0.04519233, z: 0.00000021050154}
rotation: {x: 0.037963506, y: 0.0021157071, z: -0.01252746, w: 0.9991984}
scale: {x: 0.9999995, y: 0.99999964, z: 0.9999996}
- name: B-ringFinger03.L
parentName: B-ringFinger02.L
position: {x: 0.00000034561023, y: 0.03469565, z: -0.00000007648653}
rotation: {x: 0.020911071, y: 0.04065225, z: 0.015794758, w: 0.99882966}
scale: {x: 1.0000001, y: 1.0000005, z: 0.9999997}
- name: B-pinky01.L
parentName: B-hand.L
position: {x: -0.041581903, y: 0.119742356, z: -0.0024299957}
rotation: {x: -0.01172906, y: 0.01648238, z: 0.0442254, w: 0.9988167}
scale: {x: 1.0000002, y: 1.0000004, z: 1.0000002}
- name: B-pinky02.L
parentName: B-pinky01.L
position: {x: 0.00000014151807, y: 0.03832722, z: 0.00000047056287}
rotation: {x: 0.039005004, y: -0.011177422, z: -0.009239738, w: 0.99913377}
scale: {x: 1.0000002, y: 0.99999946, z: 1.0000001}
- name: B-pinky03.L
parentName: B-pinky02.L
position: {x: 0.000000233103, y: 0.032200746, z: -0.00000055902217}
rotation: {x: 0.022101717, y: 0.02182328, z: -0.009211465, w: 0.99947506}
scale: {x: 0.9999995, y: 1, z: 0.99999964}
- name: B-thumb01.L
parentName: B-hand.L
position: {x: 0.03980834, y: 0.048495278, z: 0.013051865}
rotation: {x: -0.2247114, y: -0.6304557, z: -0.2982149, w: 0.6805132}
scale: {x: 1.0000005, y: 1, z: 1.0000005}
- name: B-thumb02.L
parentName: B-thumb01.L
position: {x: -0.0000007063521, y: 0.047179468, z: -0.00000013365789}
rotation: {x: 0.038171936, y: -0.013301728, z: 0.008042519, w: 0.9991503}
scale: {x: 1.0000004, y: 1, z: 0.9999994}
- name: B-thumb03.L
parentName: B-thumb02.L
position: {x: 0.0000007190916, y: 0.035208564, z: 0.00000017922088}
rotation: {x: -0.06035389, y: -0.014396597, z: -0.007425322, w: 0.9980456}
scale: {x: 0.9999992, y: 0.99999994, z: 1.0000001}
- name: B-thigh.L
parentName: B-hips
position: {x: -0.096950985, y: -0.05446949, z: 0.0020414153}
rotation: {x: 0.9977441, y: 0.011110197, z: -0.0039620763, w: 0.066088475}
scale: {x: 1.0000002, y: 0.9999997, z: 1.000001}
- name: B-shin.L
parentName: B-thigh.L
position: {x: 0.00000018468991, y: 0.41111633, z: 0.0000005281011}
rotation: {x: 0.067057244, y: -0.00057845906, z: 0.011617889, w: 0.9976813}
scale: {x: 0.9999997, y: 1.0000002, z: 0.99999964}
- name: B-foot.L
parentName: B-shin.L
position: {x: -0.00000017405802, y: 0.3880767, z: -0.00000019306846}
rotation: {x: -0.5354999, y: 0.004330197, z: 0.0016612022, w: 0.84452266}
scale: {x: 1.0000001, y: 0.9999997, z: 0.99999976}
- name: B-toe.L
parentName: B-foot.L
position: {x: -0.00000027025197, y: 0.17254004, z: -0.000000117418054}
rotation: {x: 0.000012936387, y: 0.9622731, z: -0.27208534, w: 0.00017343421}
scale: {x: 1, y: 1.0000018, z: 0.999999}
- name: B-thigh.R
parentName: B-hips
position: {x: 0.096950985, y: -0.05446959, z: 0.0020404202}
rotation: {x: 0.9977441, y: -0.011109428, z: 0.003967029, w: 0.066088304}
scale: {x: 1.0000004, y: 0.99999976, z: 1.000008}
- name: B-shin.R
parentName: B-thigh.R
position: {x: 0.0000005496826, y: 0.41111633, z: -0.00000065481464}
rotation: {x: 0.06705632, y: 0.0005783735, z: -0.011616509, w: 0.99768144}
scale: {x: 0.9999997, y: 1.0000002, z: 1.0000007}
- name: B-foot.R
parentName: B-shin.R
position: {x: -0.00000044263592, y: 0.3880767, z: 0.000000107811644}
rotation: {x: -0.53550065, y: -0.0043338453, z: -0.0016630876, w: 0.84452206}
scale: {x: 1, y: 0.9999993, z: 0.99999994}
- name: B-toe.R
parentName: B-foot.R
position: {x: 0.00000074386196, y: 0.17254034, z: 0.00000017937037}
rotation: {x: -0.000012542016, y: 0.96227294, z: -0.27208585, w: -0.00017487761}
scale: {x: 1, y: 1.0000029, z: 0.999997}
armTwist: 0.5
foreArmTwist: 0.5
upperLegTwist: 0.5
legTwist: 0.5
armStretch: 0.05
legStretch: 0.05
feetSpacing: 0
globalScale: 1
rootMotionBoneName:
hasTranslationDoF: 0
hasExtraRoot: 0
skeletonHasParents: 1
lastHumanDescriptionAvatarSource: {fileID: 9000000, guid: 1841c298173cdad4db8df8602c8f1c8d,
type: 3}
autoGenerateAvatarMappingIfUnspecified: 1
animationType: 3
humanoidOversampling: 1
avatarSetup: 2
addHumanoidExtraRootOnlyWhenUsingAvatar: 1
importBlendShapeDeformPercent: 1
remapMaterialsIfMaterialImportModeIsNone: 0
additionalBone: 0
userData:
assetBundleName:
assetBundleVariant:
AssetOrigin:
serializedVersion: 1
productId: 154271
packageName: Human Basic Motions FREE
packageVersion: 2.4.2
assetPath: Assets/Kevin Iglesias/Human Animations/Animations/Female/Movement/Jump/HumanF@Jump01
[RM] - Begin.fbx
uploadId: 908942

View file

@ -1,974 +0,0 @@
fileFormatVersion: 2
guid: 2d5dcba826921c444bb225aa66997abd
ModelImporter:
serializedVersion: 22200
internalIDToNameTable: []
externalObjects: {}
materials:
materialImportMode: 0
materialName: 0
materialSearch: 1
materialLocation: 1
animations:
legacyGenerateAnimations: 4
bakeSimulation: 0
resampleCurves: 1
optimizeGameObjects: 0
removeConstantScaleCurves: 0
motionNodeName: Rig/B-root
animationImportErrors:
animationImportWarnings:
animationRetargetingWarnings:
animationDoRetargetingWarnings: 0
importAnimatedCustomProperties: 0
importConstraints: 0
animationCompression: 0
animationRotationError: 0.5
animationPositionError: 0.5
animationScaleError: 0.5
animationWrapMode: 0
extraExposedTransformPaths: []
extraUserProperties: []
clipAnimations:
- serializedVersion: 16
name: HumanF@Jump01 [RM] - Land
takeName: Untitled
internalID: 3094330708855449807
firstFrame: 0
lastFrame: 18
wrapMode: 0
orientationOffsetY: 0
level: 0
cycleOffset: 0
loop: 0
hasAdditiveReferencePose: 0
loopTime: 0
loopBlend: 0
loopBlendOrientation: 1
loopBlendPositionY: 1
loopBlendPositionXZ: 0
keepOriginalOrientation: 1
keepOriginalPositionY: 1
keepOriginalPositionXZ: 1
heightFromFeet: 0
mirror: 0
bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
curves: []
events: []
transformMask:
- path:
weight: 1
- path: HumanF_BodyMesh
weight: 0
- path: Rig
weight: 1
- path: Rig/B-root
weight: 1
- path: Rig/B-root/B-hips
weight: 1
- path: Rig/B-root/B-hips/B-spine
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck/B-head
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck/B-head/B-jaw
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-handProp.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L/B-indexFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L/B-indexFinger02.L/B-indexFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L/B-middleFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L/B-middleFinger02.L/B-middleFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L/B-pinky02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L/B-pinky02.L/B-pinky03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L/B-ringFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L/B-ringFinger02.L/B-ringFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L/B-thumb02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L/B-thumb02.L/B-thumb03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-handProp.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R/B-indexFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R/B-indexFinger02.R/B-indexFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R/B-middleFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R/B-middleFinger02.R/B-middleFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R/B-pinky02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R/B-pinky02.R/B-pinky03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R/B-ringFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R/B-ringFinger02.R/B-ringFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R/B-thumb02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R/B-thumb02.R/B-thumb03.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L/B-foot.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L/B-foot.L/B-toe.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R/B-foot.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R/B-foot.R/B-toe.R
weight: 1
- path: Rig/B-root/B-spineProxy
weight: 1
maskType: 1
maskSource: {fileID: 31900000, guid: 89527f5525238ee44b3182458d85143a, type: 2}
additiveReferencePoseFrame: 0
isReadable: 0
meshes:
lODScreenPercentages: []
globalScale: 1
meshCompression: 0
addColliders: 0
useSRGBMaterialColor: 1
sortHierarchyByName: 1
importPhysicalCameras: 1
importVisibility: 1
importBlendShapes: 1
importCameras: 1
importLights: 1
nodeNameCollisionStrategy: 1
fileIdsGeneration: 2
swapUVChannels: 0
generateSecondaryUV: 0
useFileUnits: 1
keepQuads: 0
weldVertices: 1
bakeAxisConversion: 0
preserveHierarchy: 1
skinWeightsMode: 0
maxBonesPerVertex: 4
minBoneWeight: 0.001
optimizeBones: 1
meshOptimizationFlags: -1
indexFormat: 0
secondaryUVAngleDistortion: 8
secondaryUVAreaDistortion: 15.000001
secondaryUVHardAngle: 88
secondaryUVMarginMethod: 1
secondaryUVMinLightmapResolution: 40
secondaryUVMinObjectScale: 1
secondaryUVPackMargin: 4
useFileScale: 1
strictVertexDataChecks: 0
tangentSpace:
normalSmoothAngle: 60
normalImportMode: 0
tangentImportMode: 3
normalCalculationMode: 4
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0
blendShapeNormalImportMode: 1
normalSmoothingSource: 0
referencedClips: []
importAnimation: 1
humanDescription:
serializedVersion: 3
human:
- boneName: B-hips
humanName: Hips
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thigh.L
humanName: LeftUpperLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thigh.R
humanName: RightUpperLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shin.L
humanName: LeftLowerLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shin.R
humanName: RightLowerLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-foot.L
humanName: LeftFoot
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-foot.R
humanName: RightFoot
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-spine
humanName: Spine
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-chest
humanName: Chest
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-neck
humanName: Neck
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-head
humanName: Head
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shoulder.L
humanName: LeftShoulder
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shoulder.R
humanName: RightShoulder
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-upperArm.L
humanName: LeftUpperArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-upperArm.R
humanName: RightUpperArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-forearm.L
humanName: LeftLowerArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-forearm.R
humanName: RightLowerArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-hand.L
humanName: LeftHand
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-hand.R
humanName: RightHand
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-toe.L
humanName: LeftToes
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-toe.R
humanName: RightToes
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-jaw
humanName: Jaw
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb01.L
humanName: Left Thumb Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb02.L
humanName: Left Thumb Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb03.L
humanName: Left Thumb Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger01.L
humanName: Left Index Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger02.L
humanName: Left Index Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger03.L
humanName: Left Index Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger01.L
humanName: Left Middle Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger02.L
humanName: Left Middle Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger03.L
humanName: Left Middle Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger01.L
humanName: Left Ring Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger02.L
humanName: Left Ring Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger03.L
humanName: Left Ring Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky01.L
humanName: Left Little Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky02.L
humanName: Left Little Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky03.L
humanName: Left Little Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb01.R
humanName: Right Thumb Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb02.R
humanName: Right Thumb Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb03.R
humanName: Right Thumb Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger01.R
humanName: Right Index Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger02.R
humanName: Right Index Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger03.R
humanName: Right Index Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger01.R
humanName: Right Middle Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger02.R
humanName: Right Middle Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger03.R
humanName: Right Middle Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger01.R
humanName: Right Ring Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger02.R
humanName: Right Ring Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger03.R
humanName: Right Ring Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky01.R
humanName: Right Little Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky02.R
humanName: Right Little Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky03.R
humanName: Right Little Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
skeleton:
- name: Human_DummyModel_F(Clone)
parentName:
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: HumanF_BodyMesh
parentName: Human_DummyModel_F(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Rig
parentName: Human_DummyModel_F(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: B-root
parentName: Rig
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: B-spineProxy
parentName: B-root
position: {x: -0, y: 1.092844, z: 0.029147}
rotation: {x: -0.012905054, y: 0, z: -0, w: 0.99991673}
scale: {x: 1, y: 1.0000001, z: 1.0000001}
- name: B-hips
parentName: B-root
position: {x: -0, y: 0.967712, z: 0.016772}
rotation: {x: 0.04926631, y: 0, z: -0, w: 0.9987857}
scale: {x: 1, y: 1.0000004, z: 1.0000004}
- name: B-spine
parentName: B-hips
position: {x: -0, y: 0.12574437, z: 0.00000011940791}
rotation: {x: -0.062152267, y: 0, z: -0, w: 0.99806666}
scale: {x: 1, y: 0.99999976, z: 0.99999976}
- name: B-chest
parentName: B-spine
position: {x: -0, y: 0.13376056, z: -0.00000077390683}
rotation: {x: -0.02258696, y: 0, z: -0, w: 0.9997449}
scale: {x: 1, y: 0.9999996, z: 0.9999996}
- name: B-shoulder.R
parentName: B-chest
position: {x: -0, y: 0.19125995, z: -0.005656177}
rotation: {x: -0.5165573, y: -0.44464085, z: -0.47738376, w: 0.554588}
scale: {x: 1.0000008, y: 1.0000006, z: 1.0000002}
- name: B-upperArm.R
parentName: B-shoulder.R
position: {x: -0.00000043065853, y: 0.1619337, z: -0.000000866464}
rotation: {x: 0.03406315, y: 0.7090742, z: -0.08345674, w: 0.69934857}
scale: {x: 0.99999976, y: 1, z: 0.99999946}
- name: B-forearm.R
parentName: B-upperArm.R
position: {x: -0.0000005071642, y: 0.23413825, z: 0.0000019611641}
rotation: {x: 0.0013730773, y: -0.00042225965, z: 0.0032032696, w: 0.99999386}
scale: {x: 1.0000001, y: 0.99999964, z: 0.9999996}
- name: B-hand.R
parentName: B-forearm.R
position: {x: -0.000000328232, y: 0.19596381, z: -0.0000008355853}
rotation: {x: 0.013529134, y: 0.7054088, z: 0.032969795, w: 0.70790416}
scale: {x: 0.9999999, y: 1.0000002, z: 1.0000005}
- name: B-handProp.R
parentName: B-hand.R
position: {x: 0.0029605331, y: 0.10533051, z: 0.022608897}
rotation: {x: -0.67608327, y: 0.73659164, z: -0.013668106, w: -0.012545319}
scale: {x: 0.99999964, y: 1.0000005, z: 0.9999996}
- name: B-indexFinger01.R
parentName: B-hand.R
position: {x: -0.036052607, y: 0.13202412, z: -0.0022375023}
rotation: {x: 0.019054495, y: -0.0149580045, z: 0.031315368, w: 0.999216}
scale: {x: 1.0000002, y: 0.99999964, z: 0.9999993}
- name: B-indexFinger02.R
parentName: B-indexFinger01.R
position: {x: 0.00000021708313, y: 0.046758045, z: -0.0000005285747}
rotation: {x: 0.040758472, y: 0.02876925, z: -0.0030862393, w: 0.99875003}
scale: {x: 1, y: 1.0000004, z: 1.0000002}
- name: B-indexFinger03.R
parentName: B-indexFinger02.R
position: {x: 0.000000038075022, y: 0.034652043, z: 0.00000019983679}
rotation: {x: -0.006236443, y: 0.004024028, z: -0.0109188985, w: 0.99991286}
scale: {x: 0.9999999, y: 0.9999999, z: 0.99999964}
- name: B-middleFinger01.R
parentName: B-hand.R
position: {x: -0.00928522, y: 0.1318378, z: -0.0089382}
rotation: {x: -0.004700204, y: -0.0032572027, z: -0.001801642, w: 0.99998206}
scale: {x: 1.0000006, y: 0.9999997, z: 0.99999917}
- name: B-middleFinger02.R
parentName: B-middleFinger01.R
position: {x: -0.0000003849299, y: 0.048716273, z: -0.0000001691299}
rotation: {x: 0.039366316, y: 0.04573892, z: 0.00377753, w: 0.9981703}
scale: {x: 0.9999997, y: 1.0000004, z: 1}
- name: B-middleFinger03.R
parentName: B-middleFinger02.R
position: {x: -0.00000039262213, y: 0.035888083, z: 0.00000029152696}
rotation: {x: 0.0049846717, y: -0.02122791, z: -0.0063242065, w: 0.99974227}
scale: {x: 0.99999964, y: 0.99999994, z: 1.0000002}
- name: B-ringFinger01.R
parentName: B-hand.R
position: {x: 0.016020812, y: 0.1283572, z: -0.005707851}
rotation: {x: -0.0071167736, y: 0.0017728558, z: -0.036400504, w: 0.9993104}
scale: {x: 1.0000005, y: 0.9999992, z: 0.9999996}
- name: B-ringFinger02.R
parentName: B-ringFinger01.R
position: {x: 0.00000047158898, y: 0.045192316, z: 0.00000021597218}
rotation: {x: 0.037958622, y: -0.0021153935, z: 0.012520862, w: 0.9991986}
scale: {x: 0.99999946, y: 1.0000005, z: 0.9999997}
- name: B-ringFinger03.R
parentName: B-ringFinger02.R
position: {x: -0.0000004720245, y: 0.034694634, z: 0.00000008820079}
rotation: {x: 0.02091165, y: -0.04065229, z: -0.015794862, w: 0.99882966}
scale: {x: 1.0000002, y: 0.99999976, z: 0.9999997}
- name: B-pinky01.R
parentName: B-hand.R
position: {x: 0.041580904, y: 0.119742304, z: -0.0024299922}
rotation: {x: -0.011731888, y: -0.016481936, z: -0.04421447, w: 0.9988172}
scale: {x: 1.0000002, y: 0.9999994, z: 0.99999917}
- name: B-pinky02.R
parentName: B-pinky01.R
position: {x: 0.0000007804244, y: 0.03832724, z: 0.00000044214514}
rotation: {x: 0.039002027, y: 0.011177708, z: 0.009234122, w: 0.99913394}
scale: {x: 1.0000002, y: 1.0000006, z: 1.0000002}
- name: B-pinky03.R
parentName: B-pinky02.R
position: {x: -0.000000269953, y: 0.03220071, z: -0.0000005856981}
rotation: {x: 0.022101695, y: -0.02182341, z: 0.009210792, w: 0.99947506}
scale: {x: 1.0000005, y: 0.99999994, z: 1.0000007}
- name: B-thumb01.R
parentName: B-hand.R
position: {x: -0.039809253, y: 0.048496302, z: 0.0130518135}
rotation: {x: -0.22471787, y: 0.63045275, z: 0.29821387, w: 0.6805144}
scale: {x: 0.99999946, y: 1.0000002, z: 1.0000005}
- name: B-thumb02.R
parentName: B-thumb01.R
position: {x: 0.00000020260806, y: 0.047178134, z: 0.000000160123}
rotation: {x: 0.038173996, y: 0.013301423, z: -0.008042345, w: 0.9991502}
scale: {x: 1.0000007, y: 0.9999997, z: 0.9999999}
- name: B-thumb03.R
parentName: B-thumb02.R
position: {x: -0.00000069069114, y: 0.03520854, z: 0.00000004046409}
rotation: {x: -0.060352694, y: 0.014396386, z: 0.0074255248, w: 0.9980457}
scale: {x: 0.9999995, y: 1.0000004, z: 1}
- name: B-neck
parentName: B-chest
position: {x: -0, y: 0.27081212, z: 0.0000007058524}
rotation: {x: 0.105346866, y: 0, z: -0, w: 0.99443555}
scale: {x: 1, y: 0.9999997, z: 1.0000007}
- name: B-head
parentName: B-neck
position: {x: -0, y: 0.07409704, z: 0.00000025054106}
rotation: {x: -0.069990024, y: 0, z: -0, w: 0.9975477}
scale: {x: 1, y: 1.0000006, z: 0.99999964}
- name: B-jaw
parentName: B-head
position: {x: -0, y: 0, z: 0}
rotation: {x: 0.70698464, y: 0.000007072379, z: -0.00000706994, w: 0.7072289}
scale: {x: 1, y: 1, z: 1}
- name: B-shoulder.L
parentName: B-chest
position: {x: -0, y: 0.19125995, z: -0.005656177}
rotation: {x: -0.5165571, y: 0.44464028, z: 0.47738382, w: 0.5545886}
scale: {x: 0.9999998, y: 0.9999995, z: 1.0000002}
- name: B-upperArm.L
parentName: B-shoulder.L
position: {x: 0.00000040656337, y: 0.16193385, z: -0.0000008664629}
rotation: {x: 0.033948872, y: -0.70908755, z: 0.08334149, w: 0.69935447}
scale: {x: 0.9999998, y: 1.0000002, z: 0.9999999}
- name: B-forearm.L
parentName: B-upperArm.L
position: {x: 0.000000097359035, y: 0.2341381, z: 0.00000030291466}
rotation: {x: 0.0017385628, y: 0.0004205673, z: -0.0032047313, w: 0.99999326}
scale: {x: 0.99999994, y: 1.0000004, z: 1.0000001}
- name: B-hand.L
parentName: B-forearm.L
position: {x: 0.00000052406216, y: 0.1959644, z: -0.0000011816531}
rotation: {x: 0.013386631, y: -0.70541465, z: -0.032826252, w: 0.7079078}
scale: {x: 0.99999994, y: 0.9999992, z: 0.9999996}
- name: B-handProp.L
parentName: B-hand.L
position: {x: -0.0029615294, y: 0.10533054, z: 0.02260892}
rotation: {x: 0.67608327, y: 0.73659164, z: -0.013668119, w: 0.012545332}
scale: {x: 1.0000006, y: 0.99999946, z: 1.0000006}
- name: B-indexFinger01.L
parentName: B-hand.L
position: {x: 0.03605161, y: 0.13202417, z: -0.0022375062}
rotation: {x: 0.019054513, y: 0.014957919, z: -0.03131587, w: 0.99921596}
scale: {x: 1.0000004, y: 0.9999998, z: 1.0000002}
- name: B-indexFinger02.L
parentName: B-indexFinger01.L
position: {x: 0.00000072554116, y: 0.04675823, z: -0.0000005109258}
rotation: {x: 0.04075494, y: -0.02876944, z: 0.0030826945, w: 0.9987502}
scale: {x: 1.0000001, y: 1.0000002, z: 1.0000002}
- name: B-indexFinger03.L
parentName: B-indexFinger02.L
position: {x: -0.00000009920999, y: 0.034652077, z: 0.00000023013986}
rotation: {x: -0.0062364372, y: -0.004023549, z: 0.010918792, w: 0.99991286}
scale: {x: 0.9999998, y: 1.0000008, z: 0.9999995}
- name: B-middleFinger01.L
parentName: B-hand.L
position: {x: 0.00928522, y: 0.13183793, z: -0.008938214}
rotation: {x: -0.004700207, y: 0.0032570793, z: 0.0018007505, w: 0.99998206}
scale: {x: 1.0000007, y: 0.9999999, z: 1.0000001}
- name: B-middleFinger02.L
parentName: B-middleFinger01.L
position: {x: 0.00000028786184, y: 0.048716314, z: -0.00000017087451}
rotation: {x: 0.039368037, y: -0.045739666, z: -0.0037847473, w: 0.9981702}
scale: {x: 0.99999976, y: 1.000001, z: 1.0000006}
- name: B-middleFinger03.L
parentName: B-middleFinger02.L
position: {x: -0.00000066842983, y: 0.035888, z: 0.00000028642995}
rotation: {x: 0.0049827034, y: 0.021227859, z: 0.0063241003, w: 0.99974227}
scale: {x: 0.9999996, y: 0.99999905, z: 0.99999934}
- name: B-ringFinger01.L
parentName: B-hand.L
position: {x: -0.016021809, y: 0.12835726, z: -0.005707858}
rotation: {x: -0.007116776, y: -0.0017729683, z: 0.036399588, w: 0.99931043}
scale: {x: 1.0000005, y: 1.0000002, z: 1.0000006}
- name: B-ringFinger02.L
parentName: B-ringFinger01.L
position: {x: 0.00000043795694, y: 0.04519233, z: 0.00000021050154}
rotation: {x: 0.037963506, y: 0.0021157071, z: -0.01252746, w: 0.9991984}
scale: {x: 0.9999995, y: 0.99999964, z: 0.9999996}
- name: B-ringFinger03.L
parentName: B-ringFinger02.L
position: {x: 0.00000034561023, y: 0.03469565, z: -0.00000007648653}
rotation: {x: 0.020911071, y: 0.04065225, z: 0.015794758, w: 0.99882966}
scale: {x: 1.0000001, y: 1.0000005, z: 0.9999997}
- name: B-pinky01.L
parentName: B-hand.L
position: {x: -0.041581903, y: 0.119742356, z: -0.0024299957}
rotation: {x: -0.01172906, y: 0.01648238, z: 0.0442254, w: 0.9988167}
scale: {x: 1.0000002, y: 1.0000004, z: 1.0000002}
- name: B-pinky02.L
parentName: B-pinky01.L
position: {x: 0.00000014151807, y: 0.03832722, z: 0.00000047056287}
rotation: {x: 0.039005004, y: -0.011177422, z: -0.009239738, w: 0.99913377}
scale: {x: 1.0000002, y: 0.99999946, z: 1.0000001}
- name: B-pinky03.L
parentName: B-pinky02.L
position: {x: 0.000000233103, y: 0.032200746, z: -0.00000055902217}
rotation: {x: 0.022101717, y: 0.02182328, z: -0.009211465, w: 0.99947506}
scale: {x: 0.9999995, y: 1, z: 0.99999964}
- name: B-thumb01.L
parentName: B-hand.L
position: {x: 0.03980834, y: 0.048495278, z: 0.013051865}
rotation: {x: -0.2247114, y: -0.6304557, z: -0.2982149, w: 0.6805132}
scale: {x: 1.0000005, y: 1, z: 1.0000005}
- name: B-thumb02.L
parentName: B-thumb01.L
position: {x: -0.0000007063521, y: 0.047179468, z: -0.00000013365789}
rotation: {x: 0.038171936, y: -0.013301728, z: 0.008042519, w: 0.9991503}
scale: {x: 1.0000004, y: 1, z: 0.9999994}
- name: B-thumb03.L
parentName: B-thumb02.L
position: {x: 0.0000007190916, y: 0.035208564, z: 0.00000017922088}
rotation: {x: -0.06035389, y: -0.014396597, z: -0.007425322, w: 0.9980456}
scale: {x: 0.9999992, y: 0.99999994, z: 1.0000001}
- name: B-thigh.L
parentName: B-hips
position: {x: -0.096950985, y: -0.05446949, z: 0.0020414153}
rotation: {x: 0.9977441, y: 0.011110197, z: -0.0039620763, w: 0.066088475}
scale: {x: 1.0000002, y: 0.9999997, z: 1.000001}
- name: B-shin.L
parentName: B-thigh.L
position: {x: 0.00000018468991, y: 0.41111633, z: 0.0000005281011}
rotation: {x: 0.067057244, y: -0.00057845906, z: 0.011617889, w: 0.9976813}
scale: {x: 0.9999997, y: 1.0000002, z: 0.99999964}
- name: B-foot.L
parentName: B-shin.L
position: {x: -0.00000017405802, y: 0.3880767, z: -0.00000019306846}
rotation: {x: -0.5354999, y: 0.004330197, z: 0.0016612022, w: 0.84452266}
scale: {x: 1.0000001, y: 0.9999997, z: 0.99999976}
- name: B-toe.L
parentName: B-foot.L
position: {x: -0.00000027025197, y: 0.17254004, z: -0.000000117418054}
rotation: {x: 0.000012936387, y: 0.9622731, z: -0.27208534, w: 0.00017343421}
scale: {x: 1, y: 1.0000018, z: 0.999999}
- name: B-thigh.R
parentName: B-hips
position: {x: 0.096950985, y: -0.05446959, z: 0.0020404202}
rotation: {x: 0.9977441, y: -0.011109428, z: 0.003967029, w: 0.066088304}
scale: {x: 1.0000004, y: 0.99999976, z: 1.000008}
- name: B-shin.R
parentName: B-thigh.R
position: {x: 0.0000005496826, y: 0.41111633, z: -0.00000065481464}
rotation: {x: 0.06705632, y: 0.0005783735, z: -0.011616509, w: 0.99768144}
scale: {x: 0.9999997, y: 1.0000002, z: 1.0000007}
- name: B-foot.R
parentName: B-shin.R
position: {x: -0.00000044263592, y: 0.3880767, z: 0.000000107811644}
rotation: {x: -0.53550065, y: -0.0043338453, z: -0.0016630876, w: 0.84452206}
scale: {x: 1, y: 0.9999993, z: 0.99999994}
- name: B-toe.R
parentName: B-foot.R
position: {x: 0.00000074386196, y: 0.17254034, z: 0.00000017937037}
rotation: {x: -0.000012542016, y: 0.96227294, z: -0.27208585, w: -0.00017487761}
scale: {x: 1, y: 1.0000029, z: 0.999997}
armTwist: 0.5
foreArmTwist: 0.5
upperLegTwist: 0.5
legTwist: 0.5
armStretch: 0.05
legStretch: 0.05
feetSpacing: 0
globalScale: 1
rootMotionBoneName:
hasTranslationDoF: 0
hasExtraRoot: 0
skeletonHasParents: 1
lastHumanDescriptionAvatarSource: {fileID: 9000000, guid: 1841c298173cdad4db8df8602c8f1c8d,
type: 3}
autoGenerateAvatarMappingIfUnspecified: 1
animationType: 3
humanoidOversampling: 1
avatarSetup: 2
addHumanoidExtraRootOnlyWhenUsingAvatar: 1
importBlendShapeDeformPercent: 1
remapMaterialsIfMaterialImportModeIsNone: 0
additionalBone: 0
userData:
assetBundleName:
assetBundleVariant:
AssetOrigin:
serializedVersion: 1
productId: 154271
packageName: Human Basic Motions FREE
packageVersion: 2.4.2
assetPath: Assets/Kevin Iglesias/Human Animations/Animations/Female/Movement/Jump/HumanF@Jump01
[RM] - Land.fbx
uploadId: 908942

View file

@ -1,976 +0,0 @@
fileFormatVersion: 2
guid: 33332cc79a8e983428d3ba32af4c8997
labels:
- Animation
ModelImporter:
serializedVersion: 22200
internalIDToNameTable: []
externalObjects: {}
materials:
materialImportMode: 0
materialName: 0
materialSearch: 1
materialLocation: 1
animations:
legacyGenerateAnimations: 4
bakeSimulation: 0
resampleCurves: 1
optimizeGameObjects: 0
removeConstantScaleCurves: 0
motionNodeName: Rig/B-root
animationImportErrors:
animationImportWarnings:
animationRetargetingWarnings:
animationDoRetargetingWarnings: 0
importAnimatedCustomProperties: 0
importConstraints: 0
animationCompression: 0
animationRotationError: 0.5
animationPositionError: 0.5
animationScaleError: 0.5
animationWrapMode: 0
extraExposedTransformPaths: []
extraUserProperties: []
clipAnimations:
- serializedVersion: 16
name: 'HumanF@Jump01 [RM]'
takeName: Untitled
internalID: 3094330708855449807
firstFrame: 0
lastFrame: 46
wrapMode: 0
orientationOffsetY: 0
level: 0
cycleOffset: 0
loop: 0
hasAdditiveReferencePose: 0
loopTime: 0
loopBlend: 0
loopBlendOrientation: 1
loopBlendPositionY: 0
loopBlendPositionXZ: 1
keepOriginalOrientation: 1
keepOriginalPositionY: 1
keepOriginalPositionXZ: 1
heightFromFeet: 0
mirror: 0
bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
curves: []
events: []
transformMask:
- path:
weight: 1
- path: HumanF_BodyMesh
weight: 0
- path: Rig
weight: 1
- path: Rig/B-root
weight: 1
- path: Rig/B-root/B-hips
weight: 1
- path: Rig/B-root/B-hips/B-spine
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck/B-head
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck/B-head/B-jaw
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-handProp.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L/B-indexFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L/B-indexFinger02.L/B-indexFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L/B-middleFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L/B-middleFinger02.L/B-middleFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L/B-pinky02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L/B-pinky02.L/B-pinky03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L/B-ringFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L/B-ringFinger02.L/B-ringFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L/B-thumb02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L/B-thumb02.L/B-thumb03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-handProp.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R/B-indexFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R/B-indexFinger02.R/B-indexFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R/B-middleFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R/B-middleFinger02.R/B-middleFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R/B-pinky02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R/B-pinky02.R/B-pinky03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R/B-ringFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R/B-ringFinger02.R/B-ringFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R/B-thumb02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R/B-thumb02.R/B-thumb03.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L/B-foot.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L/B-foot.L/B-toe.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R/B-foot.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R/B-foot.R/B-toe.R
weight: 1
- path: Rig/B-root/B-spineProxy
weight: 1
maskType: 1
maskSource: {fileID: 31900000, guid: 89527f5525238ee44b3182458d85143a, type: 2}
additiveReferencePoseFrame: 0
isReadable: 0
meshes:
lODScreenPercentages: []
globalScale: 1
meshCompression: 0
addColliders: 0
useSRGBMaterialColor: 1
sortHierarchyByName: 1
importPhysicalCameras: 1
importVisibility: 1
importBlendShapes: 1
importCameras: 1
importLights: 1
nodeNameCollisionStrategy: 1
fileIdsGeneration: 2
swapUVChannels: 0
generateSecondaryUV: 0
useFileUnits: 1
keepQuads: 0
weldVertices: 1
bakeAxisConversion: 0
preserveHierarchy: 1
skinWeightsMode: 0
maxBonesPerVertex: 4
minBoneWeight: 0.001
optimizeBones: 1
meshOptimizationFlags: -1
indexFormat: 0
secondaryUVAngleDistortion: 8
secondaryUVAreaDistortion: 15.000001
secondaryUVHardAngle: 88
secondaryUVMarginMethod: 1
secondaryUVMinLightmapResolution: 40
secondaryUVMinObjectScale: 1
secondaryUVPackMargin: 4
useFileScale: 1
strictVertexDataChecks: 0
tangentSpace:
normalSmoothAngle: 60
normalImportMode: 0
tangentImportMode: 3
normalCalculationMode: 4
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0
blendShapeNormalImportMode: 1
normalSmoothingSource: 0
referencedClips: []
importAnimation: 1
humanDescription:
serializedVersion: 3
human:
- boneName: B-hips
humanName: Hips
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thigh.L
humanName: LeftUpperLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thigh.R
humanName: RightUpperLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shin.L
humanName: LeftLowerLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shin.R
humanName: RightLowerLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-foot.L
humanName: LeftFoot
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-foot.R
humanName: RightFoot
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-spine
humanName: Spine
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-chest
humanName: Chest
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-neck
humanName: Neck
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-head
humanName: Head
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shoulder.L
humanName: LeftShoulder
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shoulder.R
humanName: RightShoulder
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-upperArm.L
humanName: LeftUpperArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-upperArm.R
humanName: RightUpperArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-forearm.L
humanName: LeftLowerArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-forearm.R
humanName: RightLowerArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-hand.L
humanName: LeftHand
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-hand.R
humanName: RightHand
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-toe.L
humanName: LeftToes
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-toe.R
humanName: RightToes
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-jaw
humanName: Jaw
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb01.L
humanName: Left Thumb Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb02.L
humanName: Left Thumb Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb03.L
humanName: Left Thumb Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger01.L
humanName: Left Index Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger02.L
humanName: Left Index Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger03.L
humanName: Left Index Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger01.L
humanName: Left Middle Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger02.L
humanName: Left Middle Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger03.L
humanName: Left Middle Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger01.L
humanName: Left Ring Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger02.L
humanName: Left Ring Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger03.L
humanName: Left Ring Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky01.L
humanName: Left Little Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky02.L
humanName: Left Little Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky03.L
humanName: Left Little Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb01.R
humanName: Right Thumb Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb02.R
humanName: Right Thumb Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb03.R
humanName: Right Thumb Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger01.R
humanName: Right Index Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger02.R
humanName: Right Index Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger03.R
humanName: Right Index Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger01.R
humanName: Right Middle Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger02.R
humanName: Right Middle Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger03.R
humanName: Right Middle Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger01.R
humanName: Right Ring Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger02.R
humanName: Right Ring Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger03.R
humanName: Right Ring Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky01.R
humanName: Right Little Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky02.R
humanName: Right Little Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky03.R
humanName: Right Little Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
skeleton:
- name: Human_DummyModel_F(Clone)
parentName:
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: HumanF_BodyMesh
parentName: Human_DummyModel_F(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Rig
parentName: Human_DummyModel_F(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: B-root
parentName: Rig
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: B-spineProxy
parentName: B-root
position: {x: -0, y: 1.092844, z: 0.029147}
rotation: {x: -0.012905054, y: 0, z: -0, w: 0.99991673}
scale: {x: 1, y: 1.0000001, z: 1.0000001}
- name: B-hips
parentName: B-root
position: {x: -0, y: 0.967712, z: 0.016772}
rotation: {x: 0.04926631, y: 0, z: -0, w: 0.9987857}
scale: {x: 1, y: 1.0000004, z: 1.0000004}
- name: B-spine
parentName: B-hips
position: {x: -0, y: 0.12574437, z: 0.00000011940791}
rotation: {x: -0.062152267, y: 0, z: -0, w: 0.99806666}
scale: {x: 1, y: 0.99999976, z: 0.99999976}
- name: B-chest
parentName: B-spine
position: {x: -0, y: 0.13376056, z: -0.00000077390683}
rotation: {x: -0.02258696, y: 0, z: -0, w: 0.9997449}
scale: {x: 1, y: 0.9999996, z: 0.9999996}
- name: B-shoulder.R
parentName: B-chest
position: {x: -0, y: 0.19125995, z: -0.005656177}
rotation: {x: -0.5165573, y: -0.44464085, z: -0.47738376, w: 0.554588}
scale: {x: 1.0000008, y: 1.0000006, z: 1.0000002}
- name: B-upperArm.R
parentName: B-shoulder.R
position: {x: -0.00000043065853, y: 0.1619337, z: -0.000000866464}
rotation: {x: 0.03406315, y: 0.7090742, z: -0.08345674, w: 0.69934857}
scale: {x: 0.99999976, y: 1, z: 0.99999946}
- name: B-forearm.R
parentName: B-upperArm.R
position: {x: -0.0000005071642, y: 0.23413825, z: 0.0000019611641}
rotation: {x: 0.0013730773, y: -0.00042225965, z: 0.0032032696, w: 0.99999386}
scale: {x: 1.0000001, y: 0.99999964, z: 0.9999996}
- name: B-hand.R
parentName: B-forearm.R
position: {x: -0.000000328232, y: 0.19596381, z: -0.0000008355853}
rotation: {x: 0.013529134, y: 0.7054088, z: 0.032969795, w: 0.70790416}
scale: {x: 0.9999999, y: 1.0000002, z: 1.0000005}
- name: B-handProp.R
parentName: B-hand.R
position: {x: 0.0029605331, y: 0.10533051, z: 0.022608897}
rotation: {x: -0.67608327, y: 0.73659164, z: -0.013668106, w: -0.012545319}
scale: {x: 0.99999964, y: 1.0000005, z: 0.9999996}
- name: B-indexFinger01.R
parentName: B-hand.R
position: {x: -0.036052607, y: 0.13202412, z: -0.0022375023}
rotation: {x: 0.019054495, y: -0.0149580045, z: 0.031315368, w: 0.999216}
scale: {x: 1.0000002, y: 0.99999964, z: 0.9999993}
- name: B-indexFinger02.R
parentName: B-indexFinger01.R
position: {x: 0.00000021708313, y: 0.046758045, z: -0.0000005285747}
rotation: {x: 0.040758472, y: 0.02876925, z: -0.0030862393, w: 0.99875003}
scale: {x: 1, y: 1.0000004, z: 1.0000002}
- name: B-indexFinger03.R
parentName: B-indexFinger02.R
position: {x: 0.000000038075022, y: 0.034652043, z: 0.00000019983679}
rotation: {x: -0.006236443, y: 0.004024028, z: -0.0109188985, w: 0.99991286}
scale: {x: 0.9999999, y: 0.9999999, z: 0.99999964}
- name: B-middleFinger01.R
parentName: B-hand.R
position: {x: -0.00928522, y: 0.1318378, z: -0.0089382}
rotation: {x: -0.004700204, y: -0.0032572027, z: -0.001801642, w: 0.99998206}
scale: {x: 1.0000006, y: 0.9999997, z: 0.99999917}
- name: B-middleFinger02.R
parentName: B-middleFinger01.R
position: {x: -0.0000003849299, y: 0.048716273, z: -0.0000001691299}
rotation: {x: 0.039366316, y: 0.04573892, z: 0.00377753, w: 0.9981703}
scale: {x: 0.9999997, y: 1.0000004, z: 1}
- name: B-middleFinger03.R
parentName: B-middleFinger02.R
position: {x: -0.00000039262213, y: 0.035888083, z: 0.00000029152696}
rotation: {x: 0.0049846717, y: -0.02122791, z: -0.0063242065, w: 0.99974227}
scale: {x: 0.99999964, y: 0.99999994, z: 1.0000002}
- name: B-ringFinger01.R
parentName: B-hand.R
position: {x: 0.016020812, y: 0.1283572, z: -0.005707851}
rotation: {x: -0.0071167736, y: 0.0017728558, z: -0.036400504, w: 0.9993104}
scale: {x: 1.0000005, y: 0.9999992, z: 0.9999996}
- name: B-ringFinger02.R
parentName: B-ringFinger01.R
position: {x: 0.00000047158898, y: 0.045192316, z: 0.00000021597218}
rotation: {x: 0.037958622, y: -0.0021153935, z: 0.012520862, w: 0.9991986}
scale: {x: 0.99999946, y: 1.0000005, z: 0.9999997}
- name: B-ringFinger03.R
parentName: B-ringFinger02.R
position: {x: -0.0000004720245, y: 0.034694634, z: 0.00000008820079}
rotation: {x: 0.02091165, y: -0.04065229, z: -0.015794862, w: 0.99882966}
scale: {x: 1.0000002, y: 0.99999976, z: 0.9999997}
- name: B-pinky01.R
parentName: B-hand.R
position: {x: 0.041580904, y: 0.119742304, z: -0.0024299922}
rotation: {x: -0.011731888, y: -0.016481936, z: -0.04421447, w: 0.9988172}
scale: {x: 1.0000002, y: 0.9999994, z: 0.99999917}
- name: B-pinky02.R
parentName: B-pinky01.R
position: {x: 0.0000007804244, y: 0.03832724, z: 0.00000044214514}
rotation: {x: 0.039002027, y: 0.011177708, z: 0.009234122, w: 0.99913394}
scale: {x: 1.0000002, y: 1.0000006, z: 1.0000002}
- name: B-pinky03.R
parentName: B-pinky02.R
position: {x: -0.000000269953, y: 0.03220071, z: -0.0000005856981}
rotation: {x: 0.022101695, y: -0.02182341, z: 0.009210792, w: 0.99947506}
scale: {x: 1.0000005, y: 0.99999994, z: 1.0000007}
- name: B-thumb01.R
parentName: B-hand.R
position: {x: -0.039809253, y: 0.048496302, z: 0.0130518135}
rotation: {x: -0.22471787, y: 0.63045275, z: 0.29821387, w: 0.6805144}
scale: {x: 0.99999946, y: 1.0000002, z: 1.0000005}
- name: B-thumb02.R
parentName: B-thumb01.R
position: {x: 0.00000020260806, y: 0.047178134, z: 0.000000160123}
rotation: {x: 0.038173996, y: 0.013301423, z: -0.008042345, w: 0.9991502}
scale: {x: 1.0000007, y: 0.9999997, z: 0.9999999}
- name: B-thumb03.R
parentName: B-thumb02.R
position: {x: -0.00000069069114, y: 0.03520854, z: 0.00000004046409}
rotation: {x: -0.060352694, y: 0.014396386, z: 0.0074255248, w: 0.9980457}
scale: {x: 0.9999995, y: 1.0000004, z: 1}
- name: B-neck
parentName: B-chest
position: {x: -0, y: 0.27081212, z: 0.0000007058524}
rotation: {x: 0.105346866, y: 0, z: -0, w: 0.99443555}
scale: {x: 1, y: 0.9999997, z: 1.0000007}
- name: B-head
parentName: B-neck
position: {x: -0, y: 0.07409704, z: 0.00000025054106}
rotation: {x: -0.069990024, y: 0, z: -0, w: 0.9975477}
scale: {x: 1, y: 1.0000006, z: 0.99999964}
- name: B-jaw
parentName: B-head
position: {x: -0, y: 0, z: 0}
rotation: {x: 0.70698464, y: 0.000007072379, z: -0.00000706994, w: 0.7072289}
scale: {x: 1, y: 1, z: 1}
- name: B-shoulder.L
parentName: B-chest
position: {x: -0, y: 0.19125995, z: -0.005656177}
rotation: {x: -0.5165571, y: 0.44464028, z: 0.47738382, w: 0.5545886}
scale: {x: 0.9999998, y: 0.9999995, z: 1.0000002}
- name: B-upperArm.L
parentName: B-shoulder.L
position: {x: 0.00000040656337, y: 0.16193385, z: -0.0000008664629}
rotation: {x: 0.033948872, y: -0.70908755, z: 0.08334149, w: 0.69935447}
scale: {x: 0.9999998, y: 1.0000002, z: 0.9999999}
- name: B-forearm.L
parentName: B-upperArm.L
position: {x: 0.000000097359035, y: 0.2341381, z: 0.00000030291466}
rotation: {x: 0.0017385628, y: 0.0004205673, z: -0.0032047313, w: 0.99999326}
scale: {x: 0.99999994, y: 1.0000004, z: 1.0000001}
- name: B-hand.L
parentName: B-forearm.L
position: {x: 0.00000052406216, y: 0.1959644, z: -0.0000011816531}
rotation: {x: 0.013386631, y: -0.70541465, z: -0.032826252, w: 0.7079078}
scale: {x: 0.99999994, y: 0.9999992, z: 0.9999996}
- name: B-handProp.L
parentName: B-hand.L
position: {x: -0.0029615294, y: 0.10533054, z: 0.02260892}
rotation: {x: 0.67608327, y: 0.73659164, z: -0.013668119, w: 0.012545332}
scale: {x: 1.0000006, y: 0.99999946, z: 1.0000006}
- name: B-indexFinger01.L
parentName: B-hand.L
position: {x: 0.03605161, y: 0.13202417, z: -0.0022375062}
rotation: {x: 0.019054513, y: 0.014957919, z: -0.03131587, w: 0.99921596}
scale: {x: 1.0000004, y: 0.9999998, z: 1.0000002}
- name: B-indexFinger02.L
parentName: B-indexFinger01.L
position: {x: 0.00000072554116, y: 0.04675823, z: -0.0000005109258}
rotation: {x: 0.04075494, y: -0.02876944, z: 0.0030826945, w: 0.9987502}
scale: {x: 1.0000001, y: 1.0000002, z: 1.0000002}
- name: B-indexFinger03.L
parentName: B-indexFinger02.L
position: {x: -0.00000009920999, y: 0.034652077, z: 0.00000023013986}
rotation: {x: -0.0062364372, y: -0.004023549, z: 0.010918792, w: 0.99991286}
scale: {x: 0.9999998, y: 1.0000008, z: 0.9999995}
- name: B-middleFinger01.L
parentName: B-hand.L
position: {x: 0.00928522, y: 0.13183793, z: -0.008938214}
rotation: {x: -0.004700207, y: 0.0032570793, z: 0.0018007505, w: 0.99998206}
scale: {x: 1.0000007, y: 0.9999999, z: 1.0000001}
- name: B-middleFinger02.L
parentName: B-middleFinger01.L
position: {x: 0.00000028786184, y: 0.048716314, z: -0.00000017087451}
rotation: {x: 0.039368037, y: -0.045739666, z: -0.0037847473, w: 0.9981702}
scale: {x: 0.99999976, y: 1.000001, z: 1.0000006}
- name: B-middleFinger03.L
parentName: B-middleFinger02.L
position: {x: -0.00000066842983, y: 0.035888, z: 0.00000028642995}
rotation: {x: 0.0049827034, y: 0.021227859, z: 0.0063241003, w: 0.99974227}
scale: {x: 0.9999996, y: 0.99999905, z: 0.99999934}
- name: B-ringFinger01.L
parentName: B-hand.L
position: {x: -0.016021809, y: 0.12835726, z: -0.005707858}
rotation: {x: -0.007116776, y: -0.0017729683, z: 0.036399588, w: 0.99931043}
scale: {x: 1.0000005, y: 1.0000002, z: 1.0000006}
- name: B-ringFinger02.L
parentName: B-ringFinger01.L
position: {x: 0.00000043795694, y: 0.04519233, z: 0.00000021050154}
rotation: {x: 0.037963506, y: 0.0021157071, z: -0.01252746, w: 0.9991984}
scale: {x: 0.9999995, y: 0.99999964, z: 0.9999996}
- name: B-ringFinger03.L
parentName: B-ringFinger02.L
position: {x: 0.00000034561023, y: 0.03469565, z: -0.00000007648653}
rotation: {x: 0.020911071, y: 0.04065225, z: 0.015794758, w: 0.99882966}
scale: {x: 1.0000001, y: 1.0000005, z: 0.9999997}
- name: B-pinky01.L
parentName: B-hand.L
position: {x: -0.041581903, y: 0.119742356, z: -0.0024299957}
rotation: {x: -0.01172906, y: 0.01648238, z: 0.0442254, w: 0.9988167}
scale: {x: 1.0000002, y: 1.0000004, z: 1.0000002}
- name: B-pinky02.L
parentName: B-pinky01.L
position: {x: 0.00000014151807, y: 0.03832722, z: 0.00000047056287}
rotation: {x: 0.039005004, y: -0.011177422, z: -0.009239738, w: 0.99913377}
scale: {x: 1.0000002, y: 0.99999946, z: 1.0000001}
- name: B-pinky03.L
parentName: B-pinky02.L
position: {x: 0.000000233103, y: 0.032200746, z: -0.00000055902217}
rotation: {x: 0.022101717, y: 0.02182328, z: -0.009211465, w: 0.99947506}
scale: {x: 0.9999995, y: 1, z: 0.99999964}
- name: B-thumb01.L
parentName: B-hand.L
position: {x: 0.03980834, y: 0.048495278, z: 0.013051865}
rotation: {x: -0.2247114, y: -0.6304557, z: -0.2982149, w: 0.6805132}
scale: {x: 1.0000005, y: 1, z: 1.0000005}
- name: B-thumb02.L
parentName: B-thumb01.L
position: {x: -0.0000007063521, y: 0.047179468, z: -0.00000013365789}
rotation: {x: 0.038171936, y: -0.013301728, z: 0.008042519, w: 0.9991503}
scale: {x: 1.0000004, y: 1, z: 0.9999994}
- name: B-thumb03.L
parentName: B-thumb02.L
position: {x: 0.0000007190916, y: 0.035208564, z: 0.00000017922088}
rotation: {x: -0.06035389, y: -0.014396597, z: -0.007425322, w: 0.9980456}
scale: {x: 0.9999992, y: 0.99999994, z: 1.0000001}
- name: B-thigh.L
parentName: B-hips
position: {x: -0.096950985, y: -0.05446949, z: 0.0020414153}
rotation: {x: 0.9977441, y: 0.011110197, z: -0.0039620763, w: 0.066088475}
scale: {x: 1.0000002, y: 0.9999997, z: 1.000001}
- name: B-shin.L
parentName: B-thigh.L
position: {x: 0.00000018468991, y: 0.41111633, z: 0.0000005281011}
rotation: {x: 0.067057244, y: -0.00057845906, z: 0.011617889, w: 0.9976813}
scale: {x: 0.9999997, y: 1.0000002, z: 0.99999964}
- name: B-foot.L
parentName: B-shin.L
position: {x: -0.00000017405802, y: 0.3880767, z: -0.00000019306846}
rotation: {x: -0.5354999, y: 0.004330197, z: 0.0016612022, w: 0.84452266}
scale: {x: 1.0000001, y: 0.9999997, z: 0.99999976}
- name: B-toe.L
parentName: B-foot.L
position: {x: -0.00000027025197, y: 0.17254004, z: -0.000000117418054}
rotation: {x: 0.000012936387, y: 0.9622731, z: -0.27208534, w: 0.00017343421}
scale: {x: 1, y: 1.0000018, z: 0.999999}
- name: B-thigh.R
parentName: B-hips
position: {x: 0.096950985, y: -0.05446959, z: 0.0020404202}
rotation: {x: 0.9977441, y: -0.011109428, z: 0.003967029, w: 0.066088304}
scale: {x: 1.0000004, y: 0.99999976, z: 1.000008}
- name: B-shin.R
parentName: B-thigh.R
position: {x: 0.0000005496826, y: 0.41111633, z: -0.00000065481464}
rotation: {x: 0.06705632, y: 0.0005783735, z: -0.011616509, w: 0.99768144}
scale: {x: 0.9999997, y: 1.0000002, z: 1.0000007}
- name: B-foot.R
parentName: B-shin.R
position: {x: -0.00000044263592, y: 0.3880767, z: 0.000000107811644}
rotation: {x: -0.53550065, y: -0.0043338453, z: -0.0016630876, w: 0.84452206}
scale: {x: 1, y: 0.9999993, z: 0.99999994}
- name: B-toe.R
parentName: B-foot.R
position: {x: 0.00000074386196, y: 0.17254034, z: 0.00000017937037}
rotation: {x: -0.000012542016, y: 0.96227294, z: -0.27208585, w: -0.00017487761}
scale: {x: 1, y: 1.0000029, z: 0.999997}
armTwist: 0.5
foreArmTwist: 0.5
upperLegTwist: 0.5
legTwist: 0.5
armStretch: 0.05
legStretch: 0.05
feetSpacing: 0
globalScale: 1
rootMotionBoneName:
hasTranslationDoF: 0
hasExtraRoot: 0
skeletonHasParents: 1
lastHumanDescriptionAvatarSource: {fileID: 9000000, guid: 1841c298173cdad4db8df8602c8f1c8d,
type: 3}
autoGenerateAvatarMappingIfUnspecified: 1
animationType: 3
humanoidOversampling: 1
avatarSetup: 2
addHumanoidExtraRootOnlyWhenUsingAvatar: 1
importBlendShapeDeformPercent: 1
remapMaterialsIfMaterialImportModeIsNone: 0
additionalBone: 0
userData:
assetBundleName:
assetBundleVariant:
AssetOrigin:
serializedVersion: 1
productId: 154271
packageName: Human Basic Motions FREE
packageVersion: 2.4.2
assetPath: Assets/Kevin Iglesias/Human Animations/Animations/Female/Movement/Jump/HumanF@Jump01
[RM].fbx
uploadId: 908942

View file

@ -1,975 +0,0 @@
fileFormatVersion: 2
guid: d0d93c131bda12e4bb9798ea4aefb6cb
labels:
- Animation
ModelImporter:
serializedVersion: 22200
internalIDToNameTable: []
externalObjects: {}
materials:
materialImportMode: 0
materialName: 0
materialSearch: 1
materialLocation: 1
animations:
legacyGenerateAnimations: 4
bakeSimulation: 0
resampleCurves: 1
optimizeGameObjects: 0
removeConstantScaleCurves: 0
motionNodeName:
animationImportErrors:
animationImportWarnings:
animationRetargetingWarnings:
animationDoRetargetingWarnings: 0
importAnimatedCustomProperties: 0
importConstraints: 0
animationCompression: 0
animationRotationError: 0.5
animationPositionError: 0.5
animationScaleError: 0.5
animationWrapMode: 0
extraExposedTransformPaths: []
extraUserProperties: []
clipAnimations:
- serializedVersion: 16
name: HumanF@Jump01
takeName: Untitled
internalID: 3094330708855449807
firstFrame: 0
lastFrame: 46
wrapMode: 0
orientationOffsetY: 0
level: 0
cycleOffset: 0
loop: 0
hasAdditiveReferencePose: 0
loopTime: 0
loopBlend: 0
loopBlendOrientation: 1
loopBlendPositionY: 1
loopBlendPositionXZ: 1
keepOriginalOrientation: 1
keepOriginalPositionY: 1
keepOriginalPositionXZ: 1
heightFromFeet: 0
mirror: 0
bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
curves: []
events: []
transformMask:
- path:
weight: 1
- path: HumanF_BodyMesh
weight: 0
- path: Rig
weight: 1
- path: Rig/B-root
weight: 1
- path: Rig/B-root/B-hips
weight: 1
- path: Rig/B-root/B-hips/B-spine
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck/B-head
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck/B-head/B-jaw
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-handProp.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L/B-indexFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L/B-indexFinger02.L/B-indexFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L/B-middleFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L/B-middleFinger02.L/B-middleFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L/B-pinky02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L/B-pinky02.L/B-pinky03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L/B-ringFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L/B-ringFinger02.L/B-ringFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L/B-thumb02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L/B-thumb02.L/B-thumb03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-handProp.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R/B-indexFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R/B-indexFinger02.R/B-indexFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R/B-middleFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R/B-middleFinger02.R/B-middleFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R/B-pinky02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R/B-pinky02.R/B-pinky03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R/B-ringFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R/B-ringFinger02.R/B-ringFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R/B-thumb02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R/B-thumb02.R/B-thumb03.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L/B-foot.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L/B-foot.L/B-toe.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R/B-foot.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R/B-foot.R/B-toe.R
weight: 1
- path: Rig/B-root/B-spineProxy
weight: 1
maskType: 1
maskSource: {fileID: 31900000, guid: 89527f5525238ee44b3182458d85143a, type: 2}
additiveReferencePoseFrame: 0
isReadable: 0
meshes:
lODScreenPercentages: []
globalScale: 1
meshCompression: 0
addColliders: 0
useSRGBMaterialColor: 1
sortHierarchyByName: 1
importPhysicalCameras: 1
importVisibility: 1
importBlendShapes: 1
importCameras: 1
importLights: 1
nodeNameCollisionStrategy: 1
fileIdsGeneration: 2
swapUVChannels: 0
generateSecondaryUV: 0
useFileUnits: 1
keepQuads: 0
weldVertices: 1
bakeAxisConversion: 0
preserveHierarchy: 1
skinWeightsMode: 0
maxBonesPerVertex: 4
minBoneWeight: 0.001
optimizeBones: 1
meshOptimizationFlags: -1
indexFormat: 0
secondaryUVAngleDistortion: 8
secondaryUVAreaDistortion: 15.000001
secondaryUVHardAngle: 88
secondaryUVMarginMethod: 1
secondaryUVMinLightmapResolution: 40
secondaryUVMinObjectScale: 1
secondaryUVPackMargin: 4
useFileScale: 1
strictVertexDataChecks: 0
tangentSpace:
normalSmoothAngle: 60
normalImportMode: 0
tangentImportMode: 3
normalCalculationMode: 4
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0
blendShapeNormalImportMode: 1
normalSmoothingSource: 0
referencedClips: []
importAnimation: 1
humanDescription:
serializedVersion: 3
human:
- boneName: B-hips
humanName: Hips
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thigh.L
humanName: LeftUpperLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thigh.R
humanName: RightUpperLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shin.L
humanName: LeftLowerLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shin.R
humanName: RightLowerLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-foot.L
humanName: LeftFoot
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-foot.R
humanName: RightFoot
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-spine
humanName: Spine
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-chest
humanName: Chest
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-neck
humanName: Neck
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-head
humanName: Head
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shoulder.L
humanName: LeftShoulder
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shoulder.R
humanName: RightShoulder
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-upperArm.L
humanName: LeftUpperArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-upperArm.R
humanName: RightUpperArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-forearm.L
humanName: LeftLowerArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-forearm.R
humanName: RightLowerArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-hand.L
humanName: LeftHand
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-hand.R
humanName: RightHand
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-toe.L
humanName: LeftToes
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-toe.R
humanName: RightToes
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-jaw
humanName: Jaw
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb01.L
humanName: Left Thumb Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb02.L
humanName: Left Thumb Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb03.L
humanName: Left Thumb Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger01.L
humanName: Left Index Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger02.L
humanName: Left Index Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger03.L
humanName: Left Index Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger01.L
humanName: Left Middle Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger02.L
humanName: Left Middle Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger03.L
humanName: Left Middle Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger01.L
humanName: Left Ring Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger02.L
humanName: Left Ring Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger03.L
humanName: Left Ring Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky01.L
humanName: Left Little Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky02.L
humanName: Left Little Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky03.L
humanName: Left Little Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb01.R
humanName: Right Thumb Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb02.R
humanName: Right Thumb Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb03.R
humanName: Right Thumb Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger01.R
humanName: Right Index Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger02.R
humanName: Right Index Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger03.R
humanName: Right Index Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger01.R
humanName: Right Middle Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger02.R
humanName: Right Middle Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger03.R
humanName: Right Middle Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger01.R
humanName: Right Ring Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger02.R
humanName: Right Ring Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger03.R
humanName: Right Ring Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky01.R
humanName: Right Little Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky02.R
humanName: Right Little Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky03.R
humanName: Right Little Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
skeleton:
- name: Human_DummyModel_F(Clone)
parentName:
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: HumanF_BodyMesh
parentName: Human_DummyModel_F(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Rig
parentName: Human_DummyModel_F(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: B-root
parentName: Rig
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: B-spineProxy
parentName: B-root
position: {x: -0, y: 1.092844, z: 0.029147}
rotation: {x: -0.012905054, y: 0, z: -0, w: 0.99991673}
scale: {x: 1, y: 1.0000001, z: 1.0000001}
- name: B-hips
parentName: B-root
position: {x: -0, y: 0.967712, z: 0.016772}
rotation: {x: 0.04926631, y: 0, z: -0, w: 0.9987857}
scale: {x: 1, y: 1.0000004, z: 1.0000004}
- name: B-spine
parentName: B-hips
position: {x: -0, y: 0.12574437, z: 0.00000011940791}
rotation: {x: -0.062152267, y: 0, z: -0, w: 0.99806666}
scale: {x: 1, y: 0.99999976, z: 0.99999976}
- name: B-chest
parentName: B-spine
position: {x: -0, y: 0.13376056, z: -0.00000077390683}
rotation: {x: -0.02258696, y: 0, z: -0, w: 0.9997449}
scale: {x: 1, y: 0.9999996, z: 0.9999996}
- name: B-shoulder.R
parentName: B-chest
position: {x: -0, y: 0.19125995, z: -0.005656177}
rotation: {x: -0.5165573, y: -0.44464085, z: -0.47738376, w: 0.554588}
scale: {x: 1.0000008, y: 1.0000006, z: 1.0000002}
- name: B-upperArm.R
parentName: B-shoulder.R
position: {x: -0.00000043065853, y: 0.1619337, z: -0.000000866464}
rotation: {x: 0.03406315, y: 0.7090742, z: -0.08345674, w: 0.69934857}
scale: {x: 0.99999976, y: 1, z: 0.99999946}
- name: B-forearm.R
parentName: B-upperArm.R
position: {x: -0.0000005071642, y: 0.23413825, z: 0.0000019611641}
rotation: {x: 0.0013730773, y: -0.00042225965, z: 0.0032032696, w: 0.99999386}
scale: {x: 1.0000001, y: 0.99999964, z: 0.9999996}
- name: B-hand.R
parentName: B-forearm.R
position: {x: -0.000000328232, y: 0.19596381, z: -0.0000008355853}
rotation: {x: 0.013529134, y: 0.7054088, z: 0.032969795, w: 0.70790416}
scale: {x: 0.9999999, y: 1.0000002, z: 1.0000005}
- name: B-handProp.R
parentName: B-hand.R
position: {x: 0.0029605331, y: 0.10533051, z: 0.022608897}
rotation: {x: -0.67608327, y: 0.73659164, z: -0.013668106, w: -0.012545319}
scale: {x: 0.99999964, y: 1.0000005, z: 0.9999996}
- name: B-indexFinger01.R
parentName: B-hand.R
position: {x: -0.036052607, y: 0.13202412, z: -0.0022375023}
rotation: {x: 0.019054495, y: -0.0149580045, z: 0.031315368, w: 0.999216}
scale: {x: 1.0000002, y: 0.99999964, z: 0.9999993}
- name: B-indexFinger02.R
parentName: B-indexFinger01.R
position: {x: 0.00000021708313, y: 0.046758045, z: -0.0000005285747}
rotation: {x: 0.040758472, y: 0.02876925, z: -0.0030862393, w: 0.99875003}
scale: {x: 1, y: 1.0000004, z: 1.0000002}
- name: B-indexFinger03.R
parentName: B-indexFinger02.R
position: {x: 0.000000038075022, y: 0.034652043, z: 0.00000019983679}
rotation: {x: -0.006236443, y: 0.004024028, z: -0.0109188985, w: 0.99991286}
scale: {x: 0.9999999, y: 0.9999999, z: 0.99999964}
- name: B-middleFinger01.R
parentName: B-hand.R
position: {x: -0.00928522, y: 0.1318378, z: -0.0089382}
rotation: {x: -0.004700204, y: -0.0032572027, z: -0.001801642, w: 0.99998206}
scale: {x: 1.0000006, y: 0.9999997, z: 0.99999917}
- name: B-middleFinger02.R
parentName: B-middleFinger01.R
position: {x: -0.0000003849299, y: 0.048716273, z: -0.0000001691299}
rotation: {x: 0.039366316, y: 0.04573892, z: 0.00377753, w: 0.9981703}
scale: {x: 0.9999997, y: 1.0000004, z: 1}
- name: B-middleFinger03.R
parentName: B-middleFinger02.R
position: {x: -0.00000039262213, y: 0.035888083, z: 0.00000029152696}
rotation: {x: 0.0049846717, y: -0.02122791, z: -0.0063242065, w: 0.99974227}
scale: {x: 0.99999964, y: 0.99999994, z: 1.0000002}
- name: B-ringFinger01.R
parentName: B-hand.R
position: {x: 0.016020812, y: 0.1283572, z: -0.005707851}
rotation: {x: -0.0071167736, y: 0.0017728558, z: -0.036400504, w: 0.9993104}
scale: {x: 1.0000005, y: 0.9999992, z: 0.9999996}
- name: B-ringFinger02.R
parentName: B-ringFinger01.R
position: {x: 0.00000047158898, y: 0.045192316, z: 0.00000021597218}
rotation: {x: 0.037958622, y: -0.0021153935, z: 0.012520862, w: 0.9991986}
scale: {x: 0.99999946, y: 1.0000005, z: 0.9999997}
- name: B-ringFinger03.R
parentName: B-ringFinger02.R
position: {x: -0.0000004720245, y: 0.034694634, z: 0.00000008820079}
rotation: {x: 0.02091165, y: -0.04065229, z: -0.015794862, w: 0.99882966}
scale: {x: 1.0000002, y: 0.99999976, z: 0.9999997}
- name: B-pinky01.R
parentName: B-hand.R
position: {x: 0.041580904, y: 0.119742304, z: -0.0024299922}
rotation: {x: -0.011731888, y: -0.016481936, z: -0.04421447, w: 0.9988172}
scale: {x: 1.0000002, y: 0.9999994, z: 0.99999917}
- name: B-pinky02.R
parentName: B-pinky01.R
position: {x: 0.0000007804244, y: 0.03832724, z: 0.00000044214514}
rotation: {x: 0.039002027, y: 0.011177708, z: 0.009234122, w: 0.99913394}
scale: {x: 1.0000002, y: 1.0000006, z: 1.0000002}
- name: B-pinky03.R
parentName: B-pinky02.R
position: {x: -0.000000269953, y: 0.03220071, z: -0.0000005856981}
rotation: {x: 0.022101695, y: -0.02182341, z: 0.009210792, w: 0.99947506}
scale: {x: 1.0000005, y: 0.99999994, z: 1.0000007}
- name: B-thumb01.R
parentName: B-hand.R
position: {x: -0.039809253, y: 0.048496302, z: 0.0130518135}
rotation: {x: -0.22471787, y: 0.63045275, z: 0.29821387, w: 0.6805144}
scale: {x: 0.99999946, y: 1.0000002, z: 1.0000005}
- name: B-thumb02.R
parentName: B-thumb01.R
position: {x: 0.00000020260806, y: 0.047178134, z: 0.000000160123}
rotation: {x: 0.038173996, y: 0.013301423, z: -0.008042345, w: 0.9991502}
scale: {x: 1.0000007, y: 0.9999997, z: 0.9999999}
- name: B-thumb03.R
parentName: B-thumb02.R
position: {x: -0.00000069069114, y: 0.03520854, z: 0.00000004046409}
rotation: {x: -0.060352694, y: 0.014396386, z: 0.0074255248, w: 0.9980457}
scale: {x: 0.9999995, y: 1.0000004, z: 1}
- name: B-neck
parentName: B-chest
position: {x: -0, y: 0.27081212, z: 0.0000007058524}
rotation: {x: 0.105346866, y: 0, z: -0, w: 0.99443555}
scale: {x: 1, y: 0.9999997, z: 1.0000007}
- name: B-head
parentName: B-neck
position: {x: -0, y: 0.07409704, z: 0.00000025054106}
rotation: {x: -0.069990024, y: 0, z: -0, w: 0.9975477}
scale: {x: 1, y: 1.0000006, z: 0.99999964}
- name: B-jaw
parentName: B-head
position: {x: -0, y: 0, z: 0}
rotation: {x: 0.70698464, y: 0.000007072379, z: -0.00000706994, w: 0.7072289}
scale: {x: 1, y: 1, z: 1}
- name: B-shoulder.L
parentName: B-chest
position: {x: -0, y: 0.19125995, z: -0.005656177}
rotation: {x: -0.5165571, y: 0.44464028, z: 0.47738382, w: 0.5545886}
scale: {x: 0.9999998, y: 0.9999995, z: 1.0000002}
- name: B-upperArm.L
parentName: B-shoulder.L
position: {x: 0.00000040656337, y: 0.16193385, z: -0.0000008664629}
rotation: {x: 0.033948872, y: -0.70908755, z: 0.08334149, w: 0.69935447}
scale: {x: 0.9999998, y: 1.0000002, z: 0.9999999}
- name: B-forearm.L
parentName: B-upperArm.L
position: {x: 0.000000097359035, y: 0.2341381, z: 0.00000030291466}
rotation: {x: 0.0017385628, y: 0.0004205673, z: -0.0032047313, w: 0.99999326}
scale: {x: 0.99999994, y: 1.0000004, z: 1.0000001}
- name: B-hand.L
parentName: B-forearm.L
position: {x: 0.00000052406216, y: 0.1959644, z: -0.0000011816531}
rotation: {x: 0.013386631, y: -0.70541465, z: -0.032826252, w: 0.7079078}
scale: {x: 0.99999994, y: 0.9999992, z: 0.9999996}
- name: B-handProp.L
parentName: B-hand.L
position: {x: -0.0029615294, y: 0.10533054, z: 0.02260892}
rotation: {x: 0.67608327, y: 0.73659164, z: -0.013668119, w: 0.012545332}
scale: {x: 1.0000006, y: 0.99999946, z: 1.0000006}
- name: B-indexFinger01.L
parentName: B-hand.L
position: {x: 0.03605161, y: 0.13202417, z: -0.0022375062}
rotation: {x: 0.019054513, y: 0.014957919, z: -0.03131587, w: 0.99921596}
scale: {x: 1.0000004, y: 0.9999998, z: 1.0000002}
- name: B-indexFinger02.L
parentName: B-indexFinger01.L
position: {x: 0.00000072554116, y: 0.04675823, z: -0.0000005109258}
rotation: {x: 0.04075494, y: -0.02876944, z: 0.0030826945, w: 0.9987502}
scale: {x: 1.0000001, y: 1.0000002, z: 1.0000002}
- name: B-indexFinger03.L
parentName: B-indexFinger02.L
position: {x: -0.00000009920999, y: 0.034652077, z: 0.00000023013986}
rotation: {x: -0.0062364372, y: -0.004023549, z: 0.010918792, w: 0.99991286}
scale: {x: 0.9999998, y: 1.0000008, z: 0.9999995}
- name: B-middleFinger01.L
parentName: B-hand.L
position: {x: 0.00928522, y: 0.13183793, z: -0.008938214}
rotation: {x: -0.004700207, y: 0.0032570793, z: 0.0018007505, w: 0.99998206}
scale: {x: 1.0000007, y: 0.9999999, z: 1.0000001}
- name: B-middleFinger02.L
parentName: B-middleFinger01.L
position: {x: 0.00000028786184, y: 0.048716314, z: -0.00000017087451}
rotation: {x: 0.039368037, y: -0.045739666, z: -0.0037847473, w: 0.9981702}
scale: {x: 0.99999976, y: 1.000001, z: 1.0000006}
- name: B-middleFinger03.L
parentName: B-middleFinger02.L
position: {x: -0.00000066842983, y: 0.035888, z: 0.00000028642995}
rotation: {x: 0.0049827034, y: 0.021227859, z: 0.0063241003, w: 0.99974227}
scale: {x: 0.9999996, y: 0.99999905, z: 0.99999934}
- name: B-ringFinger01.L
parentName: B-hand.L
position: {x: -0.016021809, y: 0.12835726, z: -0.005707858}
rotation: {x: -0.007116776, y: -0.0017729683, z: 0.036399588, w: 0.99931043}
scale: {x: 1.0000005, y: 1.0000002, z: 1.0000006}
- name: B-ringFinger02.L
parentName: B-ringFinger01.L
position: {x: 0.00000043795694, y: 0.04519233, z: 0.00000021050154}
rotation: {x: 0.037963506, y: 0.0021157071, z: -0.01252746, w: 0.9991984}
scale: {x: 0.9999995, y: 0.99999964, z: 0.9999996}
- name: B-ringFinger03.L
parentName: B-ringFinger02.L
position: {x: 0.00000034561023, y: 0.03469565, z: -0.00000007648653}
rotation: {x: 0.020911071, y: 0.04065225, z: 0.015794758, w: 0.99882966}
scale: {x: 1.0000001, y: 1.0000005, z: 0.9999997}
- name: B-pinky01.L
parentName: B-hand.L
position: {x: -0.041581903, y: 0.119742356, z: -0.0024299957}
rotation: {x: -0.01172906, y: 0.01648238, z: 0.0442254, w: 0.9988167}
scale: {x: 1.0000002, y: 1.0000004, z: 1.0000002}
- name: B-pinky02.L
parentName: B-pinky01.L
position: {x: 0.00000014151807, y: 0.03832722, z: 0.00000047056287}
rotation: {x: 0.039005004, y: -0.011177422, z: -0.009239738, w: 0.99913377}
scale: {x: 1.0000002, y: 0.99999946, z: 1.0000001}
- name: B-pinky03.L
parentName: B-pinky02.L
position: {x: 0.000000233103, y: 0.032200746, z: -0.00000055902217}
rotation: {x: 0.022101717, y: 0.02182328, z: -0.009211465, w: 0.99947506}
scale: {x: 0.9999995, y: 1, z: 0.99999964}
- name: B-thumb01.L
parentName: B-hand.L
position: {x: 0.03980834, y: 0.048495278, z: 0.013051865}
rotation: {x: -0.2247114, y: -0.6304557, z: -0.2982149, w: 0.6805132}
scale: {x: 1.0000005, y: 1, z: 1.0000005}
- name: B-thumb02.L
parentName: B-thumb01.L
position: {x: -0.0000007063521, y: 0.047179468, z: -0.00000013365789}
rotation: {x: 0.038171936, y: -0.013301728, z: 0.008042519, w: 0.9991503}
scale: {x: 1.0000004, y: 1, z: 0.9999994}
- name: B-thumb03.L
parentName: B-thumb02.L
position: {x: 0.0000007190916, y: 0.035208564, z: 0.00000017922088}
rotation: {x: -0.06035389, y: -0.014396597, z: -0.007425322, w: 0.9980456}
scale: {x: 0.9999992, y: 0.99999994, z: 1.0000001}
- name: B-thigh.L
parentName: B-hips
position: {x: -0.096950985, y: -0.05446949, z: 0.0020414153}
rotation: {x: 0.9977441, y: 0.011110197, z: -0.0039620763, w: 0.066088475}
scale: {x: 1.0000002, y: 0.9999997, z: 1.000001}
- name: B-shin.L
parentName: B-thigh.L
position: {x: 0.00000018468991, y: 0.41111633, z: 0.0000005281011}
rotation: {x: 0.067057244, y: -0.00057845906, z: 0.011617889, w: 0.9976813}
scale: {x: 0.9999997, y: 1.0000002, z: 0.99999964}
- name: B-foot.L
parentName: B-shin.L
position: {x: -0.00000017405802, y: 0.3880767, z: -0.00000019306846}
rotation: {x: -0.5354999, y: 0.004330197, z: 0.0016612022, w: 0.84452266}
scale: {x: 1.0000001, y: 0.9999997, z: 0.99999976}
- name: B-toe.L
parentName: B-foot.L
position: {x: -0.00000027025197, y: 0.17254004, z: -0.000000117418054}
rotation: {x: 0.000012936387, y: 0.9622731, z: -0.27208534, w: 0.00017343421}
scale: {x: 1, y: 1.0000018, z: 0.999999}
- name: B-thigh.R
parentName: B-hips
position: {x: 0.096950985, y: -0.05446959, z: 0.0020404202}
rotation: {x: 0.9977441, y: -0.011109428, z: 0.003967029, w: 0.066088304}
scale: {x: 1.0000004, y: 0.99999976, z: 1.000008}
- name: B-shin.R
parentName: B-thigh.R
position: {x: 0.0000005496826, y: 0.41111633, z: -0.00000065481464}
rotation: {x: 0.06705632, y: 0.0005783735, z: -0.011616509, w: 0.99768144}
scale: {x: 0.9999997, y: 1.0000002, z: 1.0000007}
- name: B-foot.R
parentName: B-shin.R
position: {x: -0.00000044263592, y: 0.3880767, z: 0.000000107811644}
rotation: {x: -0.53550065, y: -0.0043338453, z: -0.0016630876, w: 0.84452206}
scale: {x: 1, y: 0.9999993, z: 0.99999994}
- name: B-toe.R
parentName: B-foot.R
position: {x: 0.00000074386196, y: 0.17254034, z: 0.00000017937037}
rotation: {x: -0.000012542016, y: 0.96227294, z: -0.27208585, w: -0.00017487761}
scale: {x: 1, y: 1.0000029, z: 0.999997}
armTwist: 0.5
foreArmTwist: 0.5
upperLegTwist: 0.5
legTwist: 0.5
armStretch: 0.05
legStretch: 0.05
feetSpacing: 0
globalScale: 1
rootMotionBoneName:
hasTranslationDoF: 0
hasExtraRoot: 0
skeletonHasParents: 1
lastHumanDescriptionAvatarSource: {fileID: 9000000, guid: 1841c298173cdad4db8df8602c8f1c8d,
type: 3}
autoGenerateAvatarMappingIfUnspecified: 1
animationType: 3
humanoidOversampling: 1
avatarSetup: 2
addHumanoidExtraRootOnlyWhenUsingAvatar: 1
importBlendShapeDeformPercent: 1
remapMaterialsIfMaterialImportModeIsNone: 0
additionalBone: 0
userData:
assetBundleName:
assetBundleVariant:
AssetOrigin:
serializedVersion: 1
productId: 154271
packageName: Human Basic Motions FREE
packageVersion: 2.4.2
assetPath: Assets/Kevin Iglesias/Human Animations/Animations/Female/Movement/Jump/HumanF@Jump01.fbx
uploadId: 908942

View file

@ -1,8 +0,0 @@
fileFormatVersion: 2
guid: 8878cb0ce0b5b5646833d1a8d0830eb9
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View file

@ -1,973 +0,0 @@
fileFormatVersion: 2
guid: b7ff898919f115a4095d79af0129756f
ModelImporter:
serializedVersion: 22200
internalIDToNameTable: []
externalObjects: {}
materials:
materialImportMode: 0
materialName: 0
materialSearch: 1
materialLocation: 1
animations:
legacyGenerateAnimations: 4
bakeSimulation: 0
resampleCurves: 1
optimizeGameObjects: 0
removeConstantScaleCurves: 0
motionNodeName:
animationImportErrors:
animationImportWarnings:
animationRetargetingWarnings:
animationDoRetargetingWarnings: 0
importAnimatedCustomProperties: 0
importConstraints: 0
animationCompression: 0
animationRotationError: 0.5
animationPositionError: 0.5
animationScaleError: 0.5
animationWrapMode: 0
extraExposedTransformPaths: []
extraUserProperties: []
clipAnimations:
- serializedVersion: 16
name: HumanF@Run01_Backward
takeName: Untitled
internalID: 3094330708855449807
firstFrame: 0
lastFrame: 18
wrapMode: 0
orientationOffsetY: 0
level: 0
cycleOffset: 0
loop: 0
hasAdditiveReferencePose: 0
loopTime: 1
loopBlend: 0
loopBlendOrientation: 1
loopBlendPositionY: 1
loopBlendPositionXZ: 1
keepOriginalOrientation: 1
keepOriginalPositionY: 1
keepOriginalPositionXZ: 1
heightFromFeet: 0
mirror: 0
bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
curves: []
events: []
transformMask:
- path:
weight: 1
- path: HumanF_BodyMesh
weight: 0
- path: Rig
weight: 1
- path: Rig/B-root
weight: 1
- path: Rig/B-root/B-hips
weight: 1
- path: Rig/B-root/B-hips/B-spine
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck/B-head
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck/B-head/B-jaw
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-handProp.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L/B-indexFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L/B-indexFinger02.L/B-indexFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L/B-middleFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L/B-middleFinger02.L/B-middleFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L/B-pinky02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L/B-pinky02.L/B-pinky03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L/B-ringFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L/B-ringFinger02.L/B-ringFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L/B-thumb02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L/B-thumb02.L/B-thumb03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-handProp.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R/B-indexFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R/B-indexFinger02.R/B-indexFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R/B-middleFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R/B-middleFinger02.R/B-middleFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R/B-pinky02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R/B-pinky02.R/B-pinky03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R/B-ringFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R/B-ringFinger02.R/B-ringFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R/B-thumb02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R/B-thumb02.R/B-thumb03.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L/B-foot.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L/B-foot.L/B-toe.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R/B-foot.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R/B-foot.R/B-toe.R
weight: 1
- path: Rig/B-root/B-spineProxy
weight: 1
maskType: 1
maskSource: {fileID: 31900000, guid: 89527f5525238ee44b3182458d85143a, type: 2}
additiveReferencePoseFrame: 0
isReadable: 0
meshes:
lODScreenPercentages: []
globalScale: 1
meshCompression: 0
addColliders: 0
useSRGBMaterialColor: 1
sortHierarchyByName: 1
importPhysicalCameras: 1
importVisibility: 1
importBlendShapes: 1
importCameras: 1
importLights: 1
nodeNameCollisionStrategy: 1
fileIdsGeneration: 2
swapUVChannels: 0
generateSecondaryUV: 0
useFileUnits: 1
keepQuads: 0
weldVertices: 1
bakeAxisConversion: 0
preserveHierarchy: 1
skinWeightsMode: 0
maxBonesPerVertex: 4
minBoneWeight: 0.001
optimizeBones: 1
meshOptimizationFlags: -1
indexFormat: 0
secondaryUVAngleDistortion: 8
secondaryUVAreaDistortion: 15.000001
secondaryUVHardAngle: 88
secondaryUVMarginMethod: 1
secondaryUVMinLightmapResolution: 40
secondaryUVMinObjectScale: 1
secondaryUVPackMargin: 4
useFileScale: 1
strictVertexDataChecks: 0
tangentSpace:
normalSmoothAngle: 60
normalImportMode: 0
tangentImportMode: 3
normalCalculationMode: 4
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0
blendShapeNormalImportMode: 1
normalSmoothingSource: 0
referencedClips: []
importAnimation: 1
humanDescription:
serializedVersion: 3
human:
- boneName: B-hips
humanName: Hips
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thigh.L
humanName: LeftUpperLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thigh.R
humanName: RightUpperLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shin.L
humanName: LeftLowerLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shin.R
humanName: RightLowerLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-foot.L
humanName: LeftFoot
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-foot.R
humanName: RightFoot
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-spine
humanName: Spine
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-chest
humanName: Chest
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-neck
humanName: Neck
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-head
humanName: Head
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shoulder.L
humanName: LeftShoulder
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shoulder.R
humanName: RightShoulder
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-upperArm.L
humanName: LeftUpperArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-upperArm.R
humanName: RightUpperArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-forearm.L
humanName: LeftLowerArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-forearm.R
humanName: RightLowerArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-hand.L
humanName: LeftHand
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-hand.R
humanName: RightHand
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-toe.L
humanName: LeftToes
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-toe.R
humanName: RightToes
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-jaw
humanName: Jaw
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb01.L
humanName: Left Thumb Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb02.L
humanName: Left Thumb Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb03.L
humanName: Left Thumb Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger01.L
humanName: Left Index Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger02.L
humanName: Left Index Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger03.L
humanName: Left Index Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger01.L
humanName: Left Middle Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger02.L
humanName: Left Middle Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger03.L
humanName: Left Middle Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger01.L
humanName: Left Ring Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger02.L
humanName: Left Ring Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger03.L
humanName: Left Ring Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky01.L
humanName: Left Little Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky02.L
humanName: Left Little Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky03.L
humanName: Left Little Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb01.R
humanName: Right Thumb Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb02.R
humanName: Right Thumb Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb03.R
humanName: Right Thumb Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger01.R
humanName: Right Index Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger02.R
humanName: Right Index Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger03.R
humanName: Right Index Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger01.R
humanName: Right Middle Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger02.R
humanName: Right Middle Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger03.R
humanName: Right Middle Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger01.R
humanName: Right Ring Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger02.R
humanName: Right Ring Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger03.R
humanName: Right Ring Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky01.R
humanName: Right Little Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky02.R
humanName: Right Little Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky03.R
humanName: Right Little Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
skeleton:
- name: Human_DummyModel_F(Clone)
parentName:
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: HumanF_BodyMesh
parentName: Human_DummyModel_F(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Rig
parentName: Human_DummyModel_F(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: B-root
parentName: Rig
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: B-spineProxy
parentName: B-root
position: {x: -0, y: 1.092844, z: 0.029147}
rotation: {x: -0.012905054, y: 0, z: -0, w: 0.99991673}
scale: {x: 1, y: 1.0000001, z: 1.0000001}
- name: B-hips
parentName: B-root
position: {x: -0, y: 0.967712, z: 0.016772}
rotation: {x: 0.04926631, y: 0, z: -0, w: 0.9987857}
scale: {x: 1, y: 1.0000004, z: 1.0000004}
- name: B-spine
parentName: B-hips
position: {x: -0, y: 0.12574437, z: 0.00000011940791}
rotation: {x: -0.062152267, y: 0, z: -0, w: 0.99806666}
scale: {x: 1, y: 0.99999976, z: 0.99999976}
- name: B-chest
parentName: B-spine
position: {x: -0, y: 0.13376056, z: -0.00000077390683}
rotation: {x: -0.02258696, y: 0, z: -0, w: 0.9997449}
scale: {x: 1, y: 0.9999996, z: 0.9999996}
- name: B-shoulder.R
parentName: B-chest
position: {x: -0, y: 0.19125995, z: -0.005656177}
rotation: {x: -0.5165573, y: -0.44464085, z: -0.47738376, w: 0.554588}
scale: {x: 1.0000008, y: 1.0000006, z: 1.0000002}
- name: B-upperArm.R
parentName: B-shoulder.R
position: {x: -0.00000043065853, y: 0.1619337, z: -0.000000866464}
rotation: {x: 0.03406315, y: 0.7090742, z: -0.08345674, w: 0.69934857}
scale: {x: 0.99999976, y: 1, z: 0.99999946}
- name: B-forearm.R
parentName: B-upperArm.R
position: {x: -0.0000005071642, y: 0.23413825, z: 0.0000019611641}
rotation: {x: 0.0013730773, y: -0.00042225965, z: 0.0032032696, w: 0.99999386}
scale: {x: 1.0000001, y: 0.99999964, z: 0.9999996}
- name: B-hand.R
parentName: B-forearm.R
position: {x: -0.000000328232, y: 0.19596381, z: -0.0000008355853}
rotation: {x: 0.013529134, y: 0.7054088, z: 0.032969795, w: 0.70790416}
scale: {x: 0.9999999, y: 1.0000002, z: 1.0000005}
- name: B-handProp.R
parentName: B-hand.R
position: {x: 0.0029605331, y: 0.10533051, z: 0.022608897}
rotation: {x: -0.67608327, y: 0.73659164, z: -0.013668106, w: -0.012545319}
scale: {x: 0.99999964, y: 1.0000005, z: 0.9999996}
- name: B-indexFinger01.R
parentName: B-hand.R
position: {x: -0.036052607, y: 0.13202412, z: -0.0022375023}
rotation: {x: 0.019054495, y: -0.0149580045, z: 0.031315368, w: 0.999216}
scale: {x: 1.0000002, y: 0.99999964, z: 0.9999993}
- name: B-indexFinger02.R
parentName: B-indexFinger01.R
position: {x: 0.00000021708313, y: 0.046758045, z: -0.0000005285747}
rotation: {x: 0.040758472, y: 0.02876925, z: -0.0030862393, w: 0.99875003}
scale: {x: 1, y: 1.0000004, z: 1.0000002}
- name: B-indexFinger03.R
parentName: B-indexFinger02.R
position: {x: 0.000000038075022, y: 0.034652043, z: 0.00000019983679}
rotation: {x: -0.006236443, y: 0.004024028, z: -0.0109188985, w: 0.99991286}
scale: {x: 0.9999999, y: 0.9999999, z: 0.99999964}
- name: B-middleFinger01.R
parentName: B-hand.R
position: {x: -0.00928522, y: 0.1318378, z: -0.0089382}
rotation: {x: -0.004700204, y: -0.0032572027, z: -0.001801642, w: 0.99998206}
scale: {x: 1.0000006, y: 0.9999997, z: 0.99999917}
- name: B-middleFinger02.R
parentName: B-middleFinger01.R
position: {x: -0.0000003849299, y: 0.048716273, z: -0.0000001691299}
rotation: {x: 0.039366316, y: 0.04573892, z: 0.00377753, w: 0.9981703}
scale: {x: 0.9999997, y: 1.0000004, z: 1}
- name: B-middleFinger03.R
parentName: B-middleFinger02.R
position: {x: -0.00000039262213, y: 0.035888083, z: 0.00000029152696}
rotation: {x: 0.0049846717, y: -0.02122791, z: -0.0063242065, w: 0.99974227}
scale: {x: 0.99999964, y: 0.99999994, z: 1.0000002}
- name: B-ringFinger01.R
parentName: B-hand.R
position: {x: 0.016020812, y: 0.1283572, z: -0.005707851}
rotation: {x: -0.0071167736, y: 0.0017728558, z: -0.036400504, w: 0.9993104}
scale: {x: 1.0000005, y: 0.9999992, z: 0.9999996}
- name: B-ringFinger02.R
parentName: B-ringFinger01.R
position: {x: 0.00000047158898, y: 0.045192316, z: 0.00000021597218}
rotation: {x: 0.037958622, y: -0.0021153935, z: 0.012520862, w: 0.9991986}
scale: {x: 0.99999946, y: 1.0000005, z: 0.9999997}
- name: B-ringFinger03.R
parentName: B-ringFinger02.R
position: {x: -0.0000004720245, y: 0.034694634, z: 0.00000008820079}
rotation: {x: 0.02091165, y: -0.04065229, z: -0.015794862, w: 0.99882966}
scale: {x: 1.0000002, y: 0.99999976, z: 0.9999997}
- name: B-pinky01.R
parentName: B-hand.R
position: {x: 0.041580904, y: 0.119742304, z: -0.0024299922}
rotation: {x: -0.011731888, y: -0.016481936, z: -0.04421447, w: 0.9988172}
scale: {x: 1.0000002, y: 0.9999994, z: 0.99999917}
- name: B-pinky02.R
parentName: B-pinky01.R
position: {x: 0.0000007804244, y: 0.03832724, z: 0.00000044214514}
rotation: {x: 0.039002027, y: 0.011177708, z: 0.009234122, w: 0.99913394}
scale: {x: 1.0000002, y: 1.0000006, z: 1.0000002}
- name: B-pinky03.R
parentName: B-pinky02.R
position: {x: -0.000000269953, y: 0.03220071, z: -0.0000005856981}
rotation: {x: 0.022101695, y: -0.02182341, z: 0.009210792, w: 0.99947506}
scale: {x: 1.0000005, y: 0.99999994, z: 1.0000007}
- name: B-thumb01.R
parentName: B-hand.R
position: {x: -0.039809253, y: 0.048496302, z: 0.0130518135}
rotation: {x: -0.22471787, y: 0.63045275, z: 0.29821387, w: 0.6805144}
scale: {x: 0.99999946, y: 1.0000002, z: 1.0000005}
- name: B-thumb02.R
parentName: B-thumb01.R
position: {x: 0.00000020260806, y: 0.047178134, z: 0.000000160123}
rotation: {x: 0.038173996, y: 0.013301423, z: -0.008042345, w: 0.9991502}
scale: {x: 1.0000007, y: 0.9999997, z: 0.9999999}
- name: B-thumb03.R
parentName: B-thumb02.R
position: {x: -0.00000069069114, y: 0.03520854, z: 0.00000004046409}
rotation: {x: -0.060352694, y: 0.014396386, z: 0.0074255248, w: 0.9980457}
scale: {x: 0.9999995, y: 1.0000004, z: 1}
- name: B-neck
parentName: B-chest
position: {x: -0, y: 0.27081212, z: 0.0000007058524}
rotation: {x: 0.105346866, y: 0, z: -0, w: 0.99443555}
scale: {x: 1, y: 0.9999997, z: 1.0000007}
- name: B-head
parentName: B-neck
position: {x: -0, y: 0.07409704, z: 0.00000025054106}
rotation: {x: -0.069990024, y: 0, z: -0, w: 0.9975477}
scale: {x: 1, y: 1.0000006, z: 0.99999964}
- name: B-jaw
parentName: B-head
position: {x: -0, y: 0, z: 0}
rotation: {x: 0.70698464, y: 0.000007072379, z: -0.00000706994, w: 0.7072289}
scale: {x: 1, y: 1, z: 1}
- name: B-shoulder.L
parentName: B-chest
position: {x: -0, y: 0.19125995, z: -0.005656177}
rotation: {x: -0.5165571, y: 0.44464028, z: 0.47738382, w: 0.5545886}
scale: {x: 0.9999998, y: 0.9999995, z: 1.0000002}
- name: B-upperArm.L
parentName: B-shoulder.L
position: {x: 0.00000040656337, y: 0.16193385, z: -0.0000008664629}
rotation: {x: 0.033948872, y: -0.70908755, z: 0.08334149, w: 0.69935447}
scale: {x: 0.9999998, y: 1.0000002, z: 0.9999999}
- name: B-forearm.L
parentName: B-upperArm.L
position: {x: 0.000000097359035, y: 0.2341381, z: 0.00000030291466}
rotation: {x: 0.0017385628, y: 0.0004205673, z: -0.0032047313, w: 0.99999326}
scale: {x: 0.99999994, y: 1.0000004, z: 1.0000001}
- name: B-hand.L
parentName: B-forearm.L
position: {x: 0.00000052406216, y: 0.1959644, z: -0.0000011816531}
rotation: {x: 0.013386631, y: -0.70541465, z: -0.032826252, w: 0.7079078}
scale: {x: 0.99999994, y: 0.9999992, z: 0.9999996}
- name: B-handProp.L
parentName: B-hand.L
position: {x: -0.0029615294, y: 0.10533054, z: 0.02260892}
rotation: {x: 0.67608327, y: 0.73659164, z: -0.013668119, w: 0.012545332}
scale: {x: 1.0000006, y: 0.99999946, z: 1.0000006}
- name: B-indexFinger01.L
parentName: B-hand.L
position: {x: 0.03605161, y: 0.13202417, z: -0.0022375062}
rotation: {x: 0.019054513, y: 0.014957919, z: -0.03131587, w: 0.99921596}
scale: {x: 1.0000004, y: 0.9999998, z: 1.0000002}
- name: B-indexFinger02.L
parentName: B-indexFinger01.L
position: {x: 0.00000072554116, y: 0.04675823, z: -0.0000005109258}
rotation: {x: 0.04075494, y: -0.02876944, z: 0.0030826945, w: 0.9987502}
scale: {x: 1.0000001, y: 1.0000002, z: 1.0000002}
- name: B-indexFinger03.L
parentName: B-indexFinger02.L
position: {x: -0.00000009920999, y: 0.034652077, z: 0.00000023013986}
rotation: {x: -0.0062364372, y: -0.004023549, z: 0.010918792, w: 0.99991286}
scale: {x: 0.9999998, y: 1.0000008, z: 0.9999995}
- name: B-middleFinger01.L
parentName: B-hand.L
position: {x: 0.00928522, y: 0.13183793, z: -0.008938214}
rotation: {x: -0.004700207, y: 0.0032570793, z: 0.0018007505, w: 0.99998206}
scale: {x: 1.0000007, y: 0.9999999, z: 1.0000001}
- name: B-middleFinger02.L
parentName: B-middleFinger01.L
position: {x: 0.00000028786184, y: 0.048716314, z: -0.00000017087451}
rotation: {x: 0.039368037, y: -0.045739666, z: -0.0037847473, w: 0.9981702}
scale: {x: 0.99999976, y: 1.000001, z: 1.0000006}
- name: B-middleFinger03.L
parentName: B-middleFinger02.L
position: {x: -0.00000066842983, y: 0.035888, z: 0.00000028642995}
rotation: {x: 0.0049827034, y: 0.021227859, z: 0.0063241003, w: 0.99974227}
scale: {x: 0.9999996, y: 0.99999905, z: 0.99999934}
- name: B-ringFinger01.L
parentName: B-hand.L
position: {x: -0.016021809, y: 0.12835726, z: -0.005707858}
rotation: {x: -0.007116776, y: -0.0017729683, z: 0.036399588, w: 0.99931043}
scale: {x: 1.0000005, y: 1.0000002, z: 1.0000006}
- name: B-ringFinger02.L
parentName: B-ringFinger01.L
position: {x: 0.00000043795694, y: 0.04519233, z: 0.00000021050154}
rotation: {x: 0.037963506, y: 0.0021157071, z: -0.01252746, w: 0.9991984}
scale: {x: 0.9999995, y: 0.99999964, z: 0.9999996}
- name: B-ringFinger03.L
parentName: B-ringFinger02.L
position: {x: 0.00000034561023, y: 0.03469565, z: -0.00000007648653}
rotation: {x: 0.020911071, y: 0.04065225, z: 0.015794758, w: 0.99882966}
scale: {x: 1.0000001, y: 1.0000005, z: 0.9999997}
- name: B-pinky01.L
parentName: B-hand.L
position: {x: -0.041581903, y: 0.119742356, z: -0.0024299957}
rotation: {x: -0.01172906, y: 0.01648238, z: 0.0442254, w: 0.9988167}
scale: {x: 1.0000002, y: 1.0000004, z: 1.0000002}
- name: B-pinky02.L
parentName: B-pinky01.L
position: {x: 0.00000014151807, y: 0.03832722, z: 0.00000047056287}
rotation: {x: 0.039005004, y: -0.011177422, z: -0.009239738, w: 0.99913377}
scale: {x: 1.0000002, y: 0.99999946, z: 1.0000001}
- name: B-pinky03.L
parentName: B-pinky02.L
position: {x: 0.000000233103, y: 0.032200746, z: -0.00000055902217}
rotation: {x: 0.022101717, y: 0.02182328, z: -0.009211465, w: 0.99947506}
scale: {x: 0.9999995, y: 1, z: 0.99999964}
- name: B-thumb01.L
parentName: B-hand.L
position: {x: 0.03980834, y: 0.048495278, z: 0.013051865}
rotation: {x: -0.2247114, y: -0.6304557, z: -0.2982149, w: 0.6805132}
scale: {x: 1.0000005, y: 1, z: 1.0000005}
- name: B-thumb02.L
parentName: B-thumb01.L
position: {x: -0.0000007063521, y: 0.047179468, z: -0.00000013365789}
rotation: {x: 0.038171936, y: -0.013301728, z: 0.008042519, w: 0.9991503}
scale: {x: 1.0000004, y: 1, z: 0.9999994}
- name: B-thumb03.L
parentName: B-thumb02.L
position: {x: 0.0000007190916, y: 0.035208564, z: 0.00000017922088}
rotation: {x: -0.06035389, y: -0.014396597, z: -0.007425322, w: 0.9980456}
scale: {x: 0.9999992, y: 0.99999994, z: 1.0000001}
- name: B-thigh.L
parentName: B-hips
position: {x: -0.096950985, y: -0.05446949, z: 0.0020414153}
rotation: {x: 0.9977441, y: 0.011110197, z: -0.0039620763, w: 0.066088475}
scale: {x: 1.0000002, y: 0.9999997, z: 1.000001}
- name: B-shin.L
parentName: B-thigh.L
position: {x: 0.00000018468991, y: 0.41111633, z: 0.0000005281011}
rotation: {x: 0.067057244, y: -0.00057845906, z: 0.011617889, w: 0.9976813}
scale: {x: 0.9999997, y: 1.0000002, z: 0.99999964}
- name: B-foot.L
parentName: B-shin.L
position: {x: -0.00000017405802, y: 0.3880767, z: -0.00000019306846}
rotation: {x: -0.5354999, y: 0.004330197, z: 0.0016612022, w: 0.84452266}
scale: {x: 1.0000001, y: 0.9999997, z: 0.99999976}
- name: B-toe.L
parentName: B-foot.L
position: {x: -0.00000027025197, y: 0.17254004, z: -0.000000117418054}
rotation: {x: 0.000012936387, y: 0.9622731, z: -0.27208534, w: 0.00017343421}
scale: {x: 1, y: 1.0000018, z: 0.999999}
- name: B-thigh.R
parentName: B-hips
position: {x: 0.096950985, y: -0.05446959, z: 0.0020404202}
rotation: {x: 0.9977441, y: -0.011109428, z: 0.003967029, w: 0.066088304}
scale: {x: 1.0000004, y: 0.99999976, z: 1.000008}
- name: B-shin.R
parentName: B-thigh.R
position: {x: 0.0000005496826, y: 0.41111633, z: -0.00000065481464}
rotation: {x: 0.06705632, y: 0.0005783735, z: -0.011616509, w: 0.99768144}
scale: {x: 0.9999997, y: 1.0000002, z: 1.0000007}
- name: B-foot.R
parentName: B-shin.R
position: {x: -0.00000044263592, y: 0.3880767, z: 0.000000107811644}
rotation: {x: -0.53550065, y: -0.0043338453, z: -0.0016630876, w: 0.84452206}
scale: {x: 1, y: 0.9999993, z: 0.99999994}
- name: B-toe.R
parentName: B-foot.R
position: {x: 0.00000074386196, y: 0.17254034, z: 0.00000017937037}
rotation: {x: -0.000012542016, y: 0.96227294, z: -0.27208585, w: -0.00017487761}
scale: {x: 1, y: 1.0000029, z: 0.999997}
armTwist: 0.5
foreArmTwist: 0.5
upperLegTwist: 0.5
legTwist: 0.5
armStretch: 0.05
legStretch: 0.05
feetSpacing: 0
globalScale: 1
rootMotionBoneName:
hasTranslationDoF: 0
hasExtraRoot: 0
skeletonHasParents: 1
lastHumanDescriptionAvatarSource: {fileID: 9000000, guid: 1841c298173cdad4db8df8602c8f1c8d,
type: 3}
autoGenerateAvatarMappingIfUnspecified: 1
animationType: 3
humanoidOversampling: 1
avatarSetup: 2
addHumanoidExtraRootOnlyWhenUsingAvatar: 1
importBlendShapeDeformPercent: 1
remapMaterialsIfMaterialImportModeIsNone: 0
additionalBone: 0
userData:
assetBundleName:
assetBundleVariant:
AssetOrigin:
serializedVersion: 1
productId: 154271
packageName: Human Basic Motions FREE
packageVersion: 2.4.2
assetPath: Assets/Kevin Iglesias/Human Animations/Animations/Female/Movement/Run/HumanF@Run01_Backward.fbx
uploadId: 908942

View file

@ -1,973 +0,0 @@
fileFormatVersion: 2
guid: 1f15e0650d22c9d48befae3bb44bc43d
ModelImporter:
serializedVersion: 22200
internalIDToNameTable: []
externalObjects: {}
materials:
materialImportMode: 0
materialName: 0
materialSearch: 1
materialLocation: 1
animations:
legacyGenerateAnimations: 4
bakeSimulation: 0
resampleCurves: 1
optimizeGameObjects: 0
removeConstantScaleCurves: 0
motionNodeName:
animationImportErrors:
animationImportWarnings:
animationRetargetingWarnings:
animationDoRetargetingWarnings: 0
importAnimatedCustomProperties: 0
importConstraints: 0
animationCompression: 0
animationRotationError: 0.5
animationPositionError: 0.5
animationScaleError: 0.5
animationWrapMode: 0
extraExposedTransformPaths: []
extraUserProperties: []
clipAnimations:
- serializedVersion: 16
name: HumanF@Run01_BackwardLeft
takeName: Untitled
internalID: 3094330708855449807
firstFrame: 0
lastFrame: 18
wrapMode: 0
orientationOffsetY: 0
level: 0
cycleOffset: 0
loop: 0
hasAdditiveReferencePose: 0
loopTime: 1
loopBlend: 0
loopBlendOrientation: 1
loopBlendPositionY: 1
loopBlendPositionXZ: 1
keepOriginalOrientation: 1
keepOriginalPositionY: 1
keepOriginalPositionXZ: 1
heightFromFeet: 0
mirror: 0
bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
curves: []
events: []
transformMask:
- path:
weight: 1
- path: HumanF_BodyMesh
weight: 0
- path: Rig
weight: 1
- path: Rig/B-root
weight: 1
- path: Rig/B-root/B-hips
weight: 1
- path: Rig/B-root/B-hips/B-spine
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck/B-head
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck/B-head/B-jaw
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-handProp.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L/B-indexFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L/B-indexFinger02.L/B-indexFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L/B-middleFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L/B-middleFinger02.L/B-middleFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L/B-pinky02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L/B-pinky02.L/B-pinky03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L/B-ringFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L/B-ringFinger02.L/B-ringFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L/B-thumb02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L/B-thumb02.L/B-thumb03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-handProp.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R/B-indexFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R/B-indexFinger02.R/B-indexFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R/B-middleFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R/B-middleFinger02.R/B-middleFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R/B-pinky02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R/B-pinky02.R/B-pinky03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R/B-ringFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R/B-ringFinger02.R/B-ringFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R/B-thumb02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R/B-thumb02.R/B-thumb03.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L/B-foot.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L/B-foot.L/B-toe.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R/B-foot.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R/B-foot.R/B-toe.R
weight: 1
- path: Rig/B-root/B-spineProxy
weight: 1
maskType: 1
maskSource: {fileID: 31900000, guid: 89527f5525238ee44b3182458d85143a, type: 2}
additiveReferencePoseFrame: 0
isReadable: 0
meshes:
lODScreenPercentages: []
globalScale: 1
meshCompression: 0
addColliders: 0
useSRGBMaterialColor: 1
sortHierarchyByName: 1
importPhysicalCameras: 1
importVisibility: 1
importBlendShapes: 1
importCameras: 1
importLights: 1
nodeNameCollisionStrategy: 1
fileIdsGeneration: 2
swapUVChannels: 0
generateSecondaryUV: 0
useFileUnits: 1
keepQuads: 0
weldVertices: 1
bakeAxisConversion: 0
preserveHierarchy: 1
skinWeightsMode: 0
maxBonesPerVertex: 4
minBoneWeight: 0.001
optimizeBones: 1
meshOptimizationFlags: -1
indexFormat: 0
secondaryUVAngleDistortion: 8
secondaryUVAreaDistortion: 15.000001
secondaryUVHardAngle: 88
secondaryUVMarginMethod: 1
secondaryUVMinLightmapResolution: 40
secondaryUVMinObjectScale: 1
secondaryUVPackMargin: 4
useFileScale: 1
strictVertexDataChecks: 0
tangentSpace:
normalSmoothAngle: 60
normalImportMode: 0
tangentImportMode: 3
normalCalculationMode: 4
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0
blendShapeNormalImportMode: 1
normalSmoothingSource: 0
referencedClips: []
importAnimation: 1
humanDescription:
serializedVersion: 3
human:
- boneName: B-hips
humanName: Hips
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thigh.L
humanName: LeftUpperLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thigh.R
humanName: RightUpperLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shin.L
humanName: LeftLowerLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shin.R
humanName: RightLowerLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-foot.L
humanName: LeftFoot
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-foot.R
humanName: RightFoot
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-spine
humanName: Spine
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-chest
humanName: Chest
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-neck
humanName: Neck
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-head
humanName: Head
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shoulder.L
humanName: LeftShoulder
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shoulder.R
humanName: RightShoulder
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-upperArm.L
humanName: LeftUpperArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-upperArm.R
humanName: RightUpperArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-forearm.L
humanName: LeftLowerArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-forearm.R
humanName: RightLowerArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-hand.L
humanName: LeftHand
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-hand.R
humanName: RightHand
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-toe.L
humanName: LeftToes
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-toe.R
humanName: RightToes
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-jaw
humanName: Jaw
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb01.L
humanName: Left Thumb Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb02.L
humanName: Left Thumb Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb03.L
humanName: Left Thumb Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger01.L
humanName: Left Index Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger02.L
humanName: Left Index Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger03.L
humanName: Left Index Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger01.L
humanName: Left Middle Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger02.L
humanName: Left Middle Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger03.L
humanName: Left Middle Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger01.L
humanName: Left Ring Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger02.L
humanName: Left Ring Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger03.L
humanName: Left Ring Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky01.L
humanName: Left Little Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky02.L
humanName: Left Little Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky03.L
humanName: Left Little Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb01.R
humanName: Right Thumb Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb02.R
humanName: Right Thumb Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb03.R
humanName: Right Thumb Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger01.R
humanName: Right Index Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger02.R
humanName: Right Index Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger03.R
humanName: Right Index Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger01.R
humanName: Right Middle Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger02.R
humanName: Right Middle Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger03.R
humanName: Right Middle Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger01.R
humanName: Right Ring Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger02.R
humanName: Right Ring Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger03.R
humanName: Right Ring Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky01.R
humanName: Right Little Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky02.R
humanName: Right Little Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky03.R
humanName: Right Little Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
skeleton:
- name: Human_DummyModel_F(Clone)
parentName:
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: HumanF_BodyMesh
parentName: Human_DummyModel_F(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Rig
parentName: Human_DummyModel_F(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: B-root
parentName: Rig
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: B-spineProxy
parentName: B-root
position: {x: -0, y: 1.092844, z: 0.029147}
rotation: {x: -0.012905054, y: 0, z: -0, w: 0.99991673}
scale: {x: 1, y: 1.0000001, z: 1.0000001}
- name: B-hips
parentName: B-root
position: {x: -0, y: 0.967712, z: 0.016772}
rotation: {x: 0.04926631, y: 0, z: -0, w: 0.9987857}
scale: {x: 1, y: 1.0000004, z: 1.0000004}
- name: B-spine
parentName: B-hips
position: {x: -0, y: 0.12574437, z: 0.00000011940791}
rotation: {x: -0.062152267, y: 0, z: -0, w: 0.99806666}
scale: {x: 1, y: 0.99999976, z: 0.99999976}
- name: B-chest
parentName: B-spine
position: {x: -0, y: 0.13376056, z: -0.00000077390683}
rotation: {x: -0.02258696, y: 0, z: -0, w: 0.9997449}
scale: {x: 1, y: 0.9999996, z: 0.9999996}
- name: B-shoulder.R
parentName: B-chest
position: {x: -0, y: 0.19125995, z: -0.005656177}
rotation: {x: -0.5165573, y: -0.44464085, z: -0.47738376, w: 0.554588}
scale: {x: 1.0000008, y: 1.0000006, z: 1.0000002}
- name: B-upperArm.R
parentName: B-shoulder.R
position: {x: -0.00000043065853, y: 0.1619337, z: -0.000000866464}
rotation: {x: 0.03406315, y: 0.7090742, z: -0.08345674, w: 0.69934857}
scale: {x: 0.99999976, y: 1, z: 0.99999946}
- name: B-forearm.R
parentName: B-upperArm.R
position: {x: -0.0000005071642, y: 0.23413825, z: 0.0000019611641}
rotation: {x: 0.0013730773, y: -0.00042225965, z: 0.0032032696, w: 0.99999386}
scale: {x: 1.0000001, y: 0.99999964, z: 0.9999996}
- name: B-hand.R
parentName: B-forearm.R
position: {x: -0.000000328232, y: 0.19596381, z: -0.0000008355853}
rotation: {x: 0.013529134, y: 0.7054088, z: 0.032969795, w: 0.70790416}
scale: {x: 0.9999999, y: 1.0000002, z: 1.0000005}
- name: B-handProp.R
parentName: B-hand.R
position: {x: 0.0029605331, y: 0.10533051, z: 0.022608897}
rotation: {x: -0.67608327, y: 0.73659164, z: -0.013668106, w: -0.012545319}
scale: {x: 0.99999964, y: 1.0000005, z: 0.9999996}
- name: B-indexFinger01.R
parentName: B-hand.R
position: {x: -0.036052607, y: 0.13202412, z: -0.0022375023}
rotation: {x: 0.019054495, y: -0.0149580045, z: 0.031315368, w: 0.999216}
scale: {x: 1.0000002, y: 0.99999964, z: 0.9999993}
- name: B-indexFinger02.R
parentName: B-indexFinger01.R
position: {x: 0.00000021708313, y: 0.046758045, z: -0.0000005285747}
rotation: {x: 0.040758472, y: 0.02876925, z: -0.0030862393, w: 0.99875003}
scale: {x: 1, y: 1.0000004, z: 1.0000002}
- name: B-indexFinger03.R
parentName: B-indexFinger02.R
position: {x: 0.000000038075022, y: 0.034652043, z: 0.00000019983679}
rotation: {x: -0.006236443, y: 0.004024028, z: -0.0109188985, w: 0.99991286}
scale: {x: 0.9999999, y: 0.9999999, z: 0.99999964}
- name: B-middleFinger01.R
parentName: B-hand.R
position: {x: -0.00928522, y: 0.1318378, z: -0.0089382}
rotation: {x: -0.004700204, y: -0.0032572027, z: -0.001801642, w: 0.99998206}
scale: {x: 1.0000006, y: 0.9999997, z: 0.99999917}
- name: B-middleFinger02.R
parentName: B-middleFinger01.R
position: {x: -0.0000003849299, y: 0.048716273, z: -0.0000001691299}
rotation: {x: 0.039366316, y: 0.04573892, z: 0.00377753, w: 0.9981703}
scale: {x: 0.9999997, y: 1.0000004, z: 1}
- name: B-middleFinger03.R
parentName: B-middleFinger02.R
position: {x: -0.00000039262213, y: 0.035888083, z: 0.00000029152696}
rotation: {x: 0.0049846717, y: -0.02122791, z: -0.0063242065, w: 0.99974227}
scale: {x: 0.99999964, y: 0.99999994, z: 1.0000002}
- name: B-ringFinger01.R
parentName: B-hand.R
position: {x: 0.016020812, y: 0.1283572, z: -0.005707851}
rotation: {x: -0.0071167736, y: 0.0017728558, z: -0.036400504, w: 0.9993104}
scale: {x: 1.0000005, y: 0.9999992, z: 0.9999996}
- name: B-ringFinger02.R
parentName: B-ringFinger01.R
position: {x: 0.00000047158898, y: 0.045192316, z: 0.00000021597218}
rotation: {x: 0.037958622, y: -0.0021153935, z: 0.012520862, w: 0.9991986}
scale: {x: 0.99999946, y: 1.0000005, z: 0.9999997}
- name: B-ringFinger03.R
parentName: B-ringFinger02.R
position: {x: -0.0000004720245, y: 0.034694634, z: 0.00000008820079}
rotation: {x: 0.02091165, y: -0.04065229, z: -0.015794862, w: 0.99882966}
scale: {x: 1.0000002, y: 0.99999976, z: 0.9999997}
- name: B-pinky01.R
parentName: B-hand.R
position: {x: 0.041580904, y: 0.119742304, z: -0.0024299922}
rotation: {x: -0.011731888, y: -0.016481936, z: -0.04421447, w: 0.9988172}
scale: {x: 1.0000002, y: 0.9999994, z: 0.99999917}
- name: B-pinky02.R
parentName: B-pinky01.R
position: {x: 0.0000007804244, y: 0.03832724, z: 0.00000044214514}
rotation: {x: 0.039002027, y: 0.011177708, z: 0.009234122, w: 0.99913394}
scale: {x: 1.0000002, y: 1.0000006, z: 1.0000002}
- name: B-pinky03.R
parentName: B-pinky02.R
position: {x: -0.000000269953, y: 0.03220071, z: -0.0000005856981}
rotation: {x: 0.022101695, y: -0.02182341, z: 0.009210792, w: 0.99947506}
scale: {x: 1.0000005, y: 0.99999994, z: 1.0000007}
- name: B-thumb01.R
parentName: B-hand.R
position: {x: -0.039809253, y: 0.048496302, z: 0.0130518135}
rotation: {x: -0.22471787, y: 0.63045275, z: 0.29821387, w: 0.6805144}
scale: {x: 0.99999946, y: 1.0000002, z: 1.0000005}
- name: B-thumb02.R
parentName: B-thumb01.R
position: {x: 0.00000020260806, y: 0.047178134, z: 0.000000160123}
rotation: {x: 0.038173996, y: 0.013301423, z: -0.008042345, w: 0.9991502}
scale: {x: 1.0000007, y: 0.9999997, z: 0.9999999}
- name: B-thumb03.R
parentName: B-thumb02.R
position: {x: -0.00000069069114, y: 0.03520854, z: 0.00000004046409}
rotation: {x: -0.060352694, y: 0.014396386, z: 0.0074255248, w: 0.9980457}
scale: {x: 0.9999995, y: 1.0000004, z: 1}
- name: B-neck
parentName: B-chest
position: {x: -0, y: 0.27081212, z: 0.0000007058524}
rotation: {x: 0.105346866, y: 0, z: -0, w: 0.99443555}
scale: {x: 1, y: 0.9999997, z: 1.0000007}
- name: B-head
parentName: B-neck
position: {x: -0, y: 0.07409704, z: 0.00000025054106}
rotation: {x: -0.069990024, y: 0, z: -0, w: 0.9975477}
scale: {x: 1, y: 1.0000006, z: 0.99999964}
- name: B-jaw
parentName: B-head
position: {x: -0, y: 0, z: 0}
rotation: {x: 0.70698464, y: 0.000007072379, z: -0.00000706994, w: 0.7072289}
scale: {x: 1, y: 1, z: 1}
- name: B-shoulder.L
parentName: B-chest
position: {x: -0, y: 0.19125995, z: -0.005656177}
rotation: {x: -0.5165571, y: 0.44464028, z: 0.47738382, w: 0.5545886}
scale: {x: 0.9999998, y: 0.9999995, z: 1.0000002}
- name: B-upperArm.L
parentName: B-shoulder.L
position: {x: 0.00000040656337, y: 0.16193385, z: -0.0000008664629}
rotation: {x: 0.033948872, y: -0.70908755, z: 0.08334149, w: 0.69935447}
scale: {x: 0.9999998, y: 1.0000002, z: 0.9999999}
- name: B-forearm.L
parentName: B-upperArm.L
position: {x: 0.000000097359035, y: 0.2341381, z: 0.00000030291466}
rotation: {x: 0.0017385628, y: 0.0004205673, z: -0.0032047313, w: 0.99999326}
scale: {x: 0.99999994, y: 1.0000004, z: 1.0000001}
- name: B-hand.L
parentName: B-forearm.L
position: {x: 0.00000052406216, y: 0.1959644, z: -0.0000011816531}
rotation: {x: 0.013386631, y: -0.70541465, z: -0.032826252, w: 0.7079078}
scale: {x: 0.99999994, y: 0.9999992, z: 0.9999996}
- name: B-handProp.L
parentName: B-hand.L
position: {x: -0.0029615294, y: 0.10533054, z: 0.02260892}
rotation: {x: 0.67608327, y: 0.73659164, z: -0.013668119, w: 0.012545332}
scale: {x: 1.0000006, y: 0.99999946, z: 1.0000006}
- name: B-indexFinger01.L
parentName: B-hand.L
position: {x: 0.03605161, y: 0.13202417, z: -0.0022375062}
rotation: {x: 0.019054513, y: 0.014957919, z: -0.03131587, w: 0.99921596}
scale: {x: 1.0000004, y: 0.9999998, z: 1.0000002}
- name: B-indexFinger02.L
parentName: B-indexFinger01.L
position: {x: 0.00000072554116, y: 0.04675823, z: -0.0000005109258}
rotation: {x: 0.04075494, y: -0.02876944, z: 0.0030826945, w: 0.9987502}
scale: {x: 1.0000001, y: 1.0000002, z: 1.0000002}
- name: B-indexFinger03.L
parentName: B-indexFinger02.L
position: {x: -0.00000009920999, y: 0.034652077, z: 0.00000023013986}
rotation: {x: -0.0062364372, y: -0.004023549, z: 0.010918792, w: 0.99991286}
scale: {x: 0.9999998, y: 1.0000008, z: 0.9999995}
- name: B-middleFinger01.L
parentName: B-hand.L
position: {x: 0.00928522, y: 0.13183793, z: -0.008938214}
rotation: {x: -0.004700207, y: 0.0032570793, z: 0.0018007505, w: 0.99998206}
scale: {x: 1.0000007, y: 0.9999999, z: 1.0000001}
- name: B-middleFinger02.L
parentName: B-middleFinger01.L
position: {x: 0.00000028786184, y: 0.048716314, z: -0.00000017087451}
rotation: {x: 0.039368037, y: -0.045739666, z: -0.0037847473, w: 0.9981702}
scale: {x: 0.99999976, y: 1.000001, z: 1.0000006}
- name: B-middleFinger03.L
parentName: B-middleFinger02.L
position: {x: -0.00000066842983, y: 0.035888, z: 0.00000028642995}
rotation: {x: 0.0049827034, y: 0.021227859, z: 0.0063241003, w: 0.99974227}
scale: {x: 0.9999996, y: 0.99999905, z: 0.99999934}
- name: B-ringFinger01.L
parentName: B-hand.L
position: {x: -0.016021809, y: 0.12835726, z: -0.005707858}
rotation: {x: -0.007116776, y: -0.0017729683, z: 0.036399588, w: 0.99931043}
scale: {x: 1.0000005, y: 1.0000002, z: 1.0000006}
- name: B-ringFinger02.L
parentName: B-ringFinger01.L
position: {x: 0.00000043795694, y: 0.04519233, z: 0.00000021050154}
rotation: {x: 0.037963506, y: 0.0021157071, z: -0.01252746, w: 0.9991984}
scale: {x: 0.9999995, y: 0.99999964, z: 0.9999996}
- name: B-ringFinger03.L
parentName: B-ringFinger02.L
position: {x: 0.00000034561023, y: 0.03469565, z: -0.00000007648653}
rotation: {x: 0.020911071, y: 0.04065225, z: 0.015794758, w: 0.99882966}
scale: {x: 1.0000001, y: 1.0000005, z: 0.9999997}
- name: B-pinky01.L
parentName: B-hand.L
position: {x: -0.041581903, y: 0.119742356, z: -0.0024299957}
rotation: {x: -0.01172906, y: 0.01648238, z: 0.0442254, w: 0.9988167}
scale: {x: 1.0000002, y: 1.0000004, z: 1.0000002}
- name: B-pinky02.L
parentName: B-pinky01.L
position: {x: 0.00000014151807, y: 0.03832722, z: 0.00000047056287}
rotation: {x: 0.039005004, y: -0.011177422, z: -0.009239738, w: 0.99913377}
scale: {x: 1.0000002, y: 0.99999946, z: 1.0000001}
- name: B-pinky03.L
parentName: B-pinky02.L
position: {x: 0.000000233103, y: 0.032200746, z: -0.00000055902217}
rotation: {x: 0.022101717, y: 0.02182328, z: -0.009211465, w: 0.99947506}
scale: {x: 0.9999995, y: 1, z: 0.99999964}
- name: B-thumb01.L
parentName: B-hand.L
position: {x: 0.03980834, y: 0.048495278, z: 0.013051865}
rotation: {x: -0.2247114, y: -0.6304557, z: -0.2982149, w: 0.6805132}
scale: {x: 1.0000005, y: 1, z: 1.0000005}
- name: B-thumb02.L
parentName: B-thumb01.L
position: {x: -0.0000007063521, y: 0.047179468, z: -0.00000013365789}
rotation: {x: 0.038171936, y: -0.013301728, z: 0.008042519, w: 0.9991503}
scale: {x: 1.0000004, y: 1, z: 0.9999994}
- name: B-thumb03.L
parentName: B-thumb02.L
position: {x: 0.0000007190916, y: 0.035208564, z: 0.00000017922088}
rotation: {x: -0.06035389, y: -0.014396597, z: -0.007425322, w: 0.9980456}
scale: {x: 0.9999992, y: 0.99999994, z: 1.0000001}
- name: B-thigh.L
parentName: B-hips
position: {x: -0.096950985, y: -0.05446949, z: 0.0020414153}
rotation: {x: 0.9977441, y: 0.011110197, z: -0.0039620763, w: 0.066088475}
scale: {x: 1.0000002, y: 0.9999997, z: 1.000001}
- name: B-shin.L
parentName: B-thigh.L
position: {x: 0.00000018468991, y: 0.41111633, z: 0.0000005281011}
rotation: {x: 0.067057244, y: -0.00057845906, z: 0.011617889, w: 0.9976813}
scale: {x: 0.9999997, y: 1.0000002, z: 0.99999964}
- name: B-foot.L
parentName: B-shin.L
position: {x: -0.00000017405802, y: 0.3880767, z: -0.00000019306846}
rotation: {x: -0.5354999, y: 0.004330197, z: 0.0016612022, w: 0.84452266}
scale: {x: 1.0000001, y: 0.9999997, z: 0.99999976}
- name: B-toe.L
parentName: B-foot.L
position: {x: -0.00000027025197, y: 0.17254004, z: -0.000000117418054}
rotation: {x: 0.000012936387, y: 0.9622731, z: -0.27208534, w: 0.00017343421}
scale: {x: 1, y: 1.0000018, z: 0.999999}
- name: B-thigh.R
parentName: B-hips
position: {x: 0.096950985, y: -0.05446959, z: 0.0020404202}
rotation: {x: 0.9977441, y: -0.011109428, z: 0.003967029, w: 0.066088304}
scale: {x: 1.0000004, y: 0.99999976, z: 1.000008}
- name: B-shin.R
parentName: B-thigh.R
position: {x: 0.0000005496826, y: 0.41111633, z: -0.00000065481464}
rotation: {x: 0.06705632, y: 0.0005783735, z: -0.011616509, w: 0.99768144}
scale: {x: 0.9999997, y: 1.0000002, z: 1.0000007}
- name: B-foot.R
parentName: B-shin.R
position: {x: -0.00000044263592, y: 0.3880767, z: 0.000000107811644}
rotation: {x: -0.53550065, y: -0.0043338453, z: -0.0016630876, w: 0.84452206}
scale: {x: 1, y: 0.9999993, z: 0.99999994}
- name: B-toe.R
parentName: B-foot.R
position: {x: 0.00000074386196, y: 0.17254034, z: 0.00000017937037}
rotation: {x: -0.000012542016, y: 0.96227294, z: -0.27208585, w: -0.00017487761}
scale: {x: 1, y: 1.0000029, z: 0.999997}
armTwist: 0.5
foreArmTwist: 0.5
upperLegTwist: 0.5
legTwist: 0.5
armStretch: 0.05
legStretch: 0.05
feetSpacing: 0
globalScale: 1
rootMotionBoneName:
hasTranslationDoF: 0
hasExtraRoot: 0
skeletonHasParents: 1
lastHumanDescriptionAvatarSource: {fileID: 9000000, guid: 1841c298173cdad4db8df8602c8f1c8d,
type: 3}
autoGenerateAvatarMappingIfUnspecified: 1
animationType: 3
humanoidOversampling: 1
avatarSetup: 2
addHumanoidExtraRootOnlyWhenUsingAvatar: 1
importBlendShapeDeformPercent: 1
remapMaterialsIfMaterialImportModeIsNone: 0
additionalBone: 0
userData:
assetBundleName:
assetBundleVariant:
AssetOrigin:
serializedVersion: 1
productId: 154271
packageName: Human Basic Motions FREE
packageVersion: 2.4.2
assetPath: Assets/Kevin Iglesias/Human Animations/Animations/Female/Movement/Run/HumanF@Run01_BackwardLeft.fbx
uploadId: 908942

View file

@ -1,973 +0,0 @@
fileFormatVersion: 2
guid: 1067eff693e77f143bc9982fef2aa0a1
ModelImporter:
serializedVersion: 22200
internalIDToNameTable: []
externalObjects: {}
materials:
materialImportMode: 0
materialName: 0
materialSearch: 1
materialLocation: 1
animations:
legacyGenerateAnimations: 4
bakeSimulation: 0
resampleCurves: 1
optimizeGameObjects: 0
removeConstantScaleCurves: 0
motionNodeName:
animationImportErrors:
animationImportWarnings:
animationRetargetingWarnings:
animationDoRetargetingWarnings: 0
importAnimatedCustomProperties: 0
importConstraints: 0
animationCompression: 0
animationRotationError: 0.5
animationPositionError: 0.5
animationScaleError: 0.5
animationWrapMode: 0
extraExposedTransformPaths: []
extraUserProperties: []
clipAnimations:
- serializedVersion: 16
name: HumanF@Run01_BackwardRight
takeName: Untitled
internalID: 3094330708855449807
firstFrame: 0
lastFrame: 18
wrapMode: 0
orientationOffsetY: 0
level: 0
cycleOffset: 0
loop: 0
hasAdditiveReferencePose: 0
loopTime: 1
loopBlend: 0
loopBlendOrientation: 1
loopBlendPositionY: 1
loopBlendPositionXZ: 1
keepOriginalOrientation: 1
keepOriginalPositionY: 1
keepOriginalPositionXZ: 1
heightFromFeet: 0
mirror: 0
bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
curves: []
events: []
transformMask:
- path:
weight: 1
- path: HumanF_BodyMesh
weight: 0
- path: Rig
weight: 1
- path: Rig/B-root
weight: 1
- path: Rig/B-root/B-hips
weight: 1
- path: Rig/B-root/B-hips/B-spine
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck/B-head
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck/B-head/B-jaw
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-handProp.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L/B-indexFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L/B-indexFinger02.L/B-indexFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L/B-middleFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L/B-middleFinger02.L/B-middleFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L/B-pinky02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L/B-pinky02.L/B-pinky03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L/B-ringFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L/B-ringFinger02.L/B-ringFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L/B-thumb02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L/B-thumb02.L/B-thumb03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-handProp.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R/B-indexFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R/B-indexFinger02.R/B-indexFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R/B-middleFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R/B-middleFinger02.R/B-middleFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R/B-pinky02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R/B-pinky02.R/B-pinky03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R/B-ringFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R/B-ringFinger02.R/B-ringFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R/B-thumb02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R/B-thumb02.R/B-thumb03.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L/B-foot.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L/B-foot.L/B-toe.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R/B-foot.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R/B-foot.R/B-toe.R
weight: 1
- path: Rig/B-root/B-spineProxy
weight: 1
maskType: 1
maskSource: {fileID: 31900000, guid: 89527f5525238ee44b3182458d85143a, type: 2}
additiveReferencePoseFrame: 0
isReadable: 0
meshes:
lODScreenPercentages: []
globalScale: 1
meshCompression: 0
addColliders: 0
useSRGBMaterialColor: 1
sortHierarchyByName: 1
importPhysicalCameras: 1
importVisibility: 1
importBlendShapes: 1
importCameras: 1
importLights: 1
nodeNameCollisionStrategy: 1
fileIdsGeneration: 2
swapUVChannels: 0
generateSecondaryUV: 0
useFileUnits: 1
keepQuads: 0
weldVertices: 1
bakeAxisConversion: 0
preserveHierarchy: 1
skinWeightsMode: 0
maxBonesPerVertex: 4
minBoneWeight: 0.001
optimizeBones: 1
meshOptimizationFlags: -1
indexFormat: 0
secondaryUVAngleDistortion: 8
secondaryUVAreaDistortion: 15.000001
secondaryUVHardAngle: 88
secondaryUVMarginMethod: 1
secondaryUVMinLightmapResolution: 40
secondaryUVMinObjectScale: 1
secondaryUVPackMargin: 4
useFileScale: 1
strictVertexDataChecks: 0
tangentSpace:
normalSmoothAngle: 60
normalImportMode: 0
tangentImportMode: 3
normalCalculationMode: 4
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0
blendShapeNormalImportMode: 1
normalSmoothingSource: 0
referencedClips: []
importAnimation: 1
humanDescription:
serializedVersion: 3
human:
- boneName: B-hips
humanName: Hips
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thigh.L
humanName: LeftUpperLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thigh.R
humanName: RightUpperLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shin.L
humanName: LeftLowerLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shin.R
humanName: RightLowerLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-foot.L
humanName: LeftFoot
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-foot.R
humanName: RightFoot
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-spine
humanName: Spine
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-chest
humanName: Chest
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-neck
humanName: Neck
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-head
humanName: Head
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shoulder.L
humanName: LeftShoulder
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shoulder.R
humanName: RightShoulder
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-upperArm.L
humanName: LeftUpperArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-upperArm.R
humanName: RightUpperArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-forearm.L
humanName: LeftLowerArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-forearm.R
humanName: RightLowerArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-hand.L
humanName: LeftHand
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-hand.R
humanName: RightHand
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-toe.L
humanName: LeftToes
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-toe.R
humanName: RightToes
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-jaw
humanName: Jaw
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb01.L
humanName: Left Thumb Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb02.L
humanName: Left Thumb Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb03.L
humanName: Left Thumb Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger01.L
humanName: Left Index Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger02.L
humanName: Left Index Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger03.L
humanName: Left Index Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger01.L
humanName: Left Middle Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger02.L
humanName: Left Middle Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger03.L
humanName: Left Middle Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger01.L
humanName: Left Ring Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger02.L
humanName: Left Ring Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger03.L
humanName: Left Ring Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky01.L
humanName: Left Little Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky02.L
humanName: Left Little Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky03.L
humanName: Left Little Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb01.R
humanName: Right Thumb Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb02.R
humanName: Right Thumb Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb03.R
humanName: Right Thumb Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger01.R
humanName: Right Index Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger02.R
humanName: Right Index Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger03.R
humanName: Right Index Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger01.R
humanName: Right Middle Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger02.R
humanName: Right Middle Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger03.R
humanName: Right Middle Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger01.R
humanName: Right Ring Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger02.R
humanName: Right Ring Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger03.R
humanName: Right Ring Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky01.R
humanName: Right Little Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky02.R
humanName: Right Little Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky03.R
humanName: Right Little Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
skeleton:
- name: Human_DummyModel_F(Clone)
parentName:
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: HumanF_BodyMesh
parentName: Human_DummyModel_F(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Rig
parentName: Human_DummyModel_F(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: B-root
parentName: Rig
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: B-spineProxy
parentName: B-root
position: {x: -0, y: 1.092844, z: 0.029147}
rotation: {x: -0.012905054, y: 0, z: -0, w: 0.99991673}
scale: {x: 1, y: 1.0000001, z: 1.0000001}
- name: B-hips
parentName: B-root
position: {x: -0, y: 0.967712, z: 0.016772}
rotation: {x: 0.04926631, y: 0, z: -0, w: 0.9987857}
scale: {x: 1, y: 1.0000004, z: 1.0000004}
- name: B-spine
parentName: B-hips
position: {x: -0, y: 0.12574437, z: 0.00000011940791}
rotation: {x: -0.062152267, y: 0, z: -0, w: 0.99806666}
scale: {x: 1, y: 0.99999976, z: 0.99999976}
- name: B-chest
parentName: B-spine
position: {x: -0, y: 0.13376056, z: -0.00000077390683}
rotation: {x: -0.02258696, y: 0, z: -0, w: 0.9997449}
scale: {x: 1, y: 0.9999996, z: 0.9999996}
- name: B-shoulder.R
parentName: B-chest
position: {x: -0, y: 0.19125995, z: -0.005656177}
rotation: {x: -0.5165573, y: -0.44464085, z: -0.47738376, w: 0.554588}
scale: {x: 1.0000008, y: 1.0000006, z: 1.0000002}
- name: B-upperArm.R
parentName: B-shoulder.R
position: {x: -0.00000043065853, y: 0.1619337, z: -0.000000866464}
rotation: {x: 0.03406315, y: 0.7090742, z: -0.08345674, w: 0.69934857}
scale: {x: 0.99999976, y: 1, z: 0.99999946}
- name: B-forearm.R
parentName: B-upperArm.R
position: {x: -0.0000005071642, y: 0.23413825, z: 0.0000019611641}
rotation: {x: 0.0013730773, y: -0.00042225965, z: 0.0032032696, w: 0.99999386}
scale: {x: 1.0000001, y: 0.99999964, z: 0.9999996}
- name: B-hand.R
parentName: B-forearm.R
position: {x: -0.000000328232, y: 0.19596381, z: -0.0000008355853}
rotation: {x: 0.013529134, y: 0.7054088, z: 0.032969795, w: 0.70790416}
scale: {x: 0.9999999, y: 1.0000002, z: 1.0000005}
- name: B-handProp.R
parentName: B-hand.R
position: {x: 0.0029605331, y: 0.10533051, z: 0.022608897}
rotation: {x: -0.67608327, y: 0.73659164, z: -0.013668106, w: -0.012545319}
scale: {x: 0.99999964, y: 1.0000005, z: 0.9999996}
- name: B-indexFinger01.R
parentName: B-hand.R
position: {x: -0.036052607, y: 0.13202412, z: -0.0022375023}
rotation: {x: 0.019054495, y: -0.0149580045, z: 0.031315368, w: 0.999216}
scale: {x: 1.0000002, y: 0.99999964, z: 0.9999993}
- name: B-indexFinger02.R
parentName: B-indexFinger01.R
position: {x: 0.00000021708313, y: 0.046758045, z: -0.0000005285747}
rotation: {x: 0.040758472, y: 0.02876925, z: -0.0030862393, w: 0.99875003}
scale: {x: 1, y: 1.0000004, z: 1.0000002}
- name: B-indexFinger03.R
parentName: B-indexFinger02.R
position: {x: 0.000000038075022, y: 0.034652043, z: 0.00000019983679}
rotation: {x: -0.006236443, y: 0.004024028, z: -0.0109188985, w: 0.99991286}
scale: {x: 0.9999999, y: 0.9999999, z: 0.99999964}
- name: B-middleFinger01.R
parentName: B-hand.R
position: {x: -0.00928522, y: 0.1318378, z: -0.0089382}
rotation: {x: -0.004700204, y: -0.0032572027, z: -0.001801642, w: 0.99998206}
scale: {x: 1.0000006, y: 0.9999997, z: 0.99999917}
- name: B-middleFinger02.R
parentName: B-middleFinger01.R
position: {x: -0.0000003849299, y: 0.048716273, z: -0.0000001691299}
rotation: {x: 0.039366316, y: 0.04573892, z: 0.00377753, w: 0.9981703}
scale: {x: 0.9999997, y: 1.0000004, z: 1}
- name: B-middleFinger03.R
parentName: B-middleFinger02.R
position: {x: -0.00000039262213, y: 0.035888083, z: 0.00000029152696}
rotation: {x: 0.0049846717, y: -0.02122791, z: -0.0063242065, w: 0.99974227}
scale: {x: 0.99999964, y: 0.99999994, z: 1.0000002}
- name: B-ringFinger01.R
parentName: B-hand.R
position: {x: 0.016020812, y: 0.1283572, z: -0.005707851}
rotation: {x: -0.0071167736, y: 0.0017728558, z: -0.036400504, w: 0.9993104}
scale: {x: 1.0000005, y: 0.9999992, z: 0.9999996}
- name: B-ringFinger02.R
parentName: B-ringFinger01.R
position: {x: 0.00000047158898, y: 0.045192316, z: 0.00000021597218}
rotation: {x: 0.037958622, y: -0.0021153935, z: 0.012520862, w: 0.9991986}
scale: {x: 0.99999946, y: 1.0000005, z: 0.9999997}
- name: B-ringFinger03.R
parentName: B-ringFinger02.R
position: {x: -0.0000004720245, y: 0.034694634, z: 0.00000008820079}
rotation: {x: 0.02091165, y: -0.04065229, z: -0.015794862, w: 0.99882966}
scale: {x: 1.0000002, y: 0.99999976, z: 0.9999997}
- name: B-pinky01.R
parentName: B-hand.R
position: {x: 0.041580904, y: 0.119742304, z: -0.0024299922}
rotation: {x: -0.011731888, y: -0.016481936, z: -0.04421447, w: 0.9988172}
scale: {x: 1.0000002, y: 0.9999994, z: 0.99999917}
- name: B-pinky02.R
parentName: B-pinky01.R
position: {x: 0.0000007804244, y: 0.03832724, z: 0.00000044214514}
rotation: {x: 0.039002027, y: 0.011177708, z: 0.009234122, w: 0.99913394}
scale: {x: 1.0000002, y: 1.0000006, z: 1.0000002}
- name: B-pinky03.R
parentName: B-pinky02.R
position: {x: -0.000000269953, y: 0.03220071, z: -0.0000005856981}
rotation: {x: 0.022101695, y: -0.02182341, z: 0.009210792, w: 0.99947506}
scale: {x: 1.0000005, y: 0.99999994, z: 1.0000007}
- name: B-thumb01.R
parentName: B-hand.R
position: {x: -0.039809253, y: 0.048496302, z: 0.0130518135}
rotation: {x: -0.22471787, y: 0.63045275, z: 0.29821387, w: 0.6805144}
scale: {x: 0.99999946, y: 1.0000002, z: 1.0000005}
- name: B-thumb02.R
parentName: B-thumb01.R
position: {x: 0.00000020260806, y: 0.047178134, z: 0.000000160123}
rotation: {x: 0.038173996, y: 0.013301423, z: -0.008042345, w: 0.9991502}
scale: {x: 1.0000007, y: 0.9999997, z: 0.9999999}
- name: B-thumb03.R
parentName: B-thumb02.R
position: {x: -0.00000069069114, y: 0.03520854, z: 0.00000004046409}
rotation: {x: -0.060352694, y: 0.014396386, z: 0.0074255248, w: 0.9980457}
scale: {x: 0.9999995, y: 1.0000004, z: 1}
- name: B-neck
parentName: B-chest
position: {x: -0, y: 0.27081212, z: 0.0000007058524}
rotation: {x: 0.105346866, y: 0, z: -0, w: 0.99443555}
scale: {x: 1, y: 0.9999997, z: 1.0000007}
- name: B-head
parentName: B-neck
position: {x: -0, y: 0.07409704, z: 0.00000025054106}
rotation: {x: -0.069990024, y: 0, z: -0, w: 0.9975477}
scale: {x: 1, y: 1.0000006, z: 0.99999964}
- name: B-jaw
parentName: B-head
position: {x: -0, y: 0, z: 0}
rotation: {x: 0.70698464, y: 0.000007072379, z: -0.00000706994, w: 0.7072289}
scale: {x: 1, y: 1, z: 1}
- name: B-shoulder.L
parentName: B-chest
position: {x: -0, y: 0.19125995, z: -0.005656177}
rotation: {x: -0.5165571, y: 0.44464028, z: 0.47738382, w: 0.5545886}
scale: {x: 0.9999998, y: 0.9999995, z: 1.0000002}
- name: B-upperArm.L
parentName: B-shoulder.L
position: {x: 0.00000040656337, y: 0.16193385, z: -0.0000008664629}
rotation: {x: 0.033948872, y: -0.70908755, z: 0.08334149, w: 0.69935447}
scale: {x: 0.9999998, y: 1.0000002, z: 0.9999999}
- name: B-forearm.L
parentName: B-upperArm.L
position: {x: 0.000000097359035, y: 0.2341381, z: 0.00000030291466}
rotation: {x: 0.0017385628, y: 0.0004205673, z: -0.0032047313, w: 0.99999326}
scale: {x: 0.99999994, y: 1.0000004, z: 1.0000001}
- name: B-hand.L
parentName: B-forearm.L
position: {x: 0.00000052406216, y: 0.1959644, z: -0.0000011816531}
rotation: {x: 0.013386631, y: -0.70541465, z: -0.032826252, w: 0.7079078}
scale: {x: 0.99999994, y: 0.9999992, z: 0.9999996}
- name: B-handProp.L
parentName: B-hand.L
position: {x: -0.0029615294, y: 0.10533054, z: 0.02260892}
rotation: {x: 0.67608327, y: 0.73659164, z: -0.013668119, w: 0.012545332}
scale: {x: 1.0000006, y: 0.99999946, z: 1.0000006}
- name: B-indexFinger01.L
parentName: B-hand.L
position: {x: 0.03605161, y: 0.13202417, z: -0.0022375062}
rotation: {x: 0.019054513, y: 0.014957919, z: -0.03131587, w: 0.99921596}
scale: {x: 1.0000004, y: 0.9999998, z: 1.0000002}
- name: B-indexFinger02.L
parentName: B-indexFinger01.L
position: {x: 0.00000072554116, y: 0.04675823, z: -0.0000005109258}
rotation: {x: 0.04075494, y: -0.02876944, z: 0.0030826945, w: 0.9987502}
scale: {x: 1.0000001, y: 1.0000002, z: 1.0000002}
- name: B-indexFinger03.L
parentName: B-indexFinger02.L
position: {x: -0.00000009920999, y: 0.034652077, z: 0.00000023013986}
rotation: {x: -0.0062364372, y: -0.004023549, z: 0.010918792, w: 0.99991286}
scale: {x: 0.9999998, y: 1.0000008, z: 0.9999995}
- name: B-middleFinger01.L
parentName: B-hand.L
position: {x: 0.00928522, y: 0.13183793, z: -0.008938214}
rotation: {x: -0.004700207, y: 0.0032570793, z: 0.0018007505, w: 0.99998206}
scale: {x: 1.0000007, y: 0.9999999, z: 1.0000001}
- name: B-middleFinger02.L
parentName: B-middleFinger01.L
position: {x: 0.00000028786184, y: 0.048716314, z: -0.00000017087451}
rotation: {x: 0.039368037, y: -0.045739666, z: -0.0037847473, w: 0.9981702}
scale: {x: 0.99999976, y: 1.000001, z: 1.0000006}
- name: B-middleFinger03.L
parentName: B-middleFinger02.L
position: {x: -0.00000066842983, y: 0.035888, z: 0.00000028642995}
rotation: {x: 0.0049827034, y: 0.021227859, z: 0.0063241003, w: 0.99974227}
scale: {x: 0.9999996, y: 0.99999905, z: 0.99999934}
- name: B-ringFinger01.L
parentName: B-hand.L
position: {x: -0.016021809, y: 0.12835726, z: -0.005707858}
rotation: {x: -0.007116776, y: -0.0017729683, z: 0.036399588, w: 0.99931043}
scale: {x: 1.0000005, y: 1.0000002, z: 1.0000006}
- name: B-ringFinger02.L
parentName: B-ringFinger01.L
position: {x: 0.00000043795694, y: 0.04519233, z: 0.00000021050154}
rotation: {x: 0.037963506, y: 0.0021157071, z: -0.01252746, w: 0.9991984}
scale: {x: 0.9999995, y: 0.99999964, z: 0.9999996}
- name: B-ringFinger03.L
parentName: B-ringFinger02.L
position: {x: 0.00000034561023, y: 0.03469565, z: -0.00000007648653}
rotation: {x: 0.020911071, y: 0.04065225, z: 0.015794758, w: 0.99882966}
scale: {x: 1.0000001, y: 1.0000005, z: 0.9999997}
- name: B-pinky01.L
parentName: B-hand.L
position: {x: -0.041581903, y: 0.119742356, z: -0.0024299957}
rotation: {x: -0.01172906, y: 0.01648238, z: 0.0442254, w: 0.9988167}
scale: {x: 1.0000002, y: 1.0000004, z: 1.0000002}
- name: B-pinky02.L
parentName: B-pinky01.L
position: {x: 0.00000014151807, y: 0.03832722, z: 0.00000047056287}
rotation: {x: 0.039005004, y: -0.011177422, z: -0.009239738, w: 0.99913377}
scale: {x: 1.0000002, y: 0.99999946, z: 1.0000001}
- name: B-pinky03.L
parentName: B-pinky02.L
position: {x: 0.000000233103, y: 0.032200746, z: -0.00000055902217}
rotation: {x: 0.022101717, y: 0.02182328, z: -0.009211465, w: 0.99947506}
scale: {x: 0.9999995, y: 1, z: 0.99999964}
- name: B-thumb01.L
parentName: B-hand.L
position: {x: 0.03980834, y: 0.048495278, z: 0.013051865}
rotation: {x: -0.2247114, y: -0.6304557, z: -0.2982149, w: 0.6805132}
scale: {x: 1.0000005, y: 1, z: 1.0000005}
- name: B-thumb02.L
parentName: B-thumb01.L
position: {x: -0.0000007063521, y: 0.047179468, z: -0.00000013365789}
rotation: {x: 0.038171936, y: -0.013301728, z: 0.008042519, w: 0.9991503}
scale: {x: 1.0000004, y: 1, z: 0.9999994}
- name: B-thumb03.L
parentName: B-thumb02.L
position: {x: 0.0000007190916, y: 0.035208564, z: 0.00000017922088}
rotation: {x: -0.06035389, y: -0.014396597, z: -0.007425322, w: 0.9980456}
scale: {x: 0.9999992, y: 0.99999994, z: 1.0000001}
- name: B-thigh.L
parentName: B-hips
position: {x: -0.096950985, y: -0.05446949, z: 0.0020414153}
rotation: {x: 0.9977441, y: 0.011110197, z: -0.0039620763, w: 0.066088475}
scale: {x: 1.0000002, y: 0.9999997, z: 1.000001}
- name: B-shin.L
parentName: B-thigh.L
position: {x: 0.00000018468991, y: 0.41111633, z: 0.0000005281011}
rotation: {x: 0.067057244, y: -0.00057845906, z: 0.011617889, w: 0.9976813}
scale: {x: 0.9999997, y: 1.0000002, z: 0.99999964}
- name: B-foot.L
parentName: B-shin.L
position: {x: -0.00000017405802, y: 0.3880767, z: -0.00000019306846}
rotation: {x: -0.5354999, y: 0.004330197, z: 0.0016612022, w: 0.84452266}
scale: {x: 1.0000001, y: 0.9999997, z: 0.99999976}
- name: B-toe.L
parentName: B-foot.L
position: {x: -0.00000027025197, y: 0.17254004, z: -0.000000117418054}
rotation: {x: 0.000012936387, y: 0.9622731, z: -0.27208534, w: 0.00017343421}
scale: {x: 1, y: 1.0000018, z: 0.999999}
- name: B-thigh.R
parentName: B-hips
position: {x: 0.096950985, y: -0.05446959, z: 0.0020404202}
rotation: {x: 0.9977441, y: -0.011109428, z: 0.003967029, w: 0.066088304}
scale: {x: 1.0000004, y: 0.99999976, z: 1.000008}
- name: B-shin.R
parentName: B-thigh.R
position: {x: 0.0000005496826, y: 0.41111633, z: -0.00000065481464}
rotation: {x: 0.06705632, y: 0.0005783735, z: -0.011616509, w: 0.99768144}
scale: {x: 0.9999997, y: 1.0000002, z: 1.0000007}
- name: B-foot.R
parentName: B-shin.R
position: {x: -0.00000044263592, y: 0.3880767, z: 0.000000107811644}
rotation: {x: -0.53550065, y: -0.0043338453, z: -0.0016630876, w: 0.84452206}
scale: {x: 1, y: 0.9999993, z: 0.99999994}
- name: B-toe.R
parentName: B-foot.R
position: {x: 0.00000074386196, y: 0.17254034, z: 0.00000017937037}
rotation: {x: -0.000012542016, y: 0.96227294, z: -0.27208585, w: -0.00017487761}
scale: {x: 1, y: 1.0000029, z: 0.999997}
armTwist: 0.5
foreArmTwist: 0.5
upperLegTwist: 0.5
legTwist: 0.5
armStretch: 0.05
legStretch: 0.05
feetSpacing: 0
globalScale: 1
rootMotionBoneName:
hasTranslationDoF: 0
hasExtraRoot: 0
skeletonHasParents: 1
lastHumanDescriptionAvatarSource: {fileID: 9000000, guid: 1841c298173cdad4db8df8602c8f1c8d,
type: 3}
autoGenerateAvatarMappingIfUnspecified: 1
animationType: 3
humanoidOversampling: 1
avatarSetup: 2
addHumanoidExtraRootOnlyWhenUsingAvatar: 1
importBlendShapeDeformPercent: 1
remapMaterialsIfMaterialImportModeIsNone: 0
additionalBone: 0
userData:
assetBundleName:
assetBundleVariant:
AssetOrigin:
serializedVersion: 1
productId: 154271
packageName: Human Basic Motions FREE
packageVersion: 2.4.2
assetPath: Assets/Kevin Iglesias/Human Animations/Animations/Female/Movement/Run/HumanF@Run01_BackwardRight.fbx
uploadId: 908942

View file

@ -1,973 +0,0 @@
fileFormatVersion: 2
guid: 40786e67f3ceb094b9c00543f295cb5f
ModelImporter:
serializedVersion: 22200
internalIDToNameTable: []
externalObjects: {}
materials:
materialImportMode: 0
materialName: 0
materialSearch: 1
materialLocation: 1
animations:
legacyGenerateAnimations: 4
bakeSimulation: 0
resampleCurves: 1
optimizeGameObjects: 0
removeConstantScaleCurves: 0
motionNodeName:
animationImportErrors:
animationImportWarnings:
animationRetargetingWarnings:
animationDoRetargetingWarnings: 0
importAnimatedCustomProperties: 0
importConstraints: 0
animationCompression: 0
animationRotationError: 0.5
animationPositionError: 0.5
animationScaleError: 0.5
animationWrapMode: 0
extraExposedTransformPaths: []
extraUserProperties: []
clipAnimations:
- serializedVersion: 16
name: HumanF@Run01_Forward
takeName: Untitled
internalID: 3094330708855449807
firstFrame: 0
lastFrame: 18
wrapMode: 0
orientationOffsetY: 0
level: 0
cycleOffset: 0
loop: 0
hasAdditiveReferencePose: 0
loopTime: 1
loopBlend: 0
loopBlendOrientation: 1
loopBlendPositionY: 1
loopBlendPositionXZ: 1
keepOriginalOrientation: 1
keepOriginalPositionY: 1
keepOriginalPositionXZ: 1
heightFromFeet: 0
mirror: 0
bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
curves: []
events: []
transformMask:
- path:
weight: 1
- path: HumanF_BodyMesh
weight: 0
- path: Rig
weight: 1
- path: Rig/B-root
weight: 1
- path: Rig/B-root/B-hips
weight: 1
- path: Rig/B-root/B-hips/B-spine
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck/B-head
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck/B-head/B-jaw
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-handProp.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L/B-indexFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L/B-indexFinger02.L/B-indexFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L/B-middleFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L/B-middleFinger02.L/B-middleFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L/B-pinky02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L/B-pinky02.L/B-pinky03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L/B-ringFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L/B-ringFinger02.L/B-ringFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L/B-thumb02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L/B-thumb02.L/B-thumb03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-handProp.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R/B-indexFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R/B-indexFinger02.R/B-indexFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R/B-middleFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R/B-middleFinger02.R/B-middleFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R/B-pinky02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R/B-pinky02.R/B-pinky03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R/B-ringFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R/B-ringFinger02.R/B-ringFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R/B-thumb02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R/B-thumb02.R/B-thumb03.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L/B-foot.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L/B-foot.L/B-toe.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R/B-foot.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R/B-foot.R/B-toe.R
weight: 1
- path: Rig/B-root/B-spineProxy
weight: 1
maskType: 1
maskSource: {fileID: 31900000, guid: 89527f5525238ee44b3182458d85143a, type: 2}
additiveReferencePoseFrame: 0
isReadable: 0
meshes:
lODScreenPercentages: []
globalScale: 1
meshCompression: 0
addColliders: 0
useSRGBMaterialColor: 1
sortHierarchyByName: 1
importPhysicalCameras: 1
importVisibility: 1
importBlendShapes: 1
importCameras: 1
importLights: 1
nodeNameCollisionStrategy: 1
fileIdsGeneration: 2
swapUVChannels: 0
generateSecondaryUV: 0
useFileUnits: 1
keepQuads: 0
weldVertices: 1
bakeAxisConversion: 0
preserveHierarchy: 1
skinWeightsMode: 0
maxBonesPerVertex: 4
minBoneWeight: 0.001
optimizeBones: 1
meshOptimizationFlags: -1
indexFormat: 0
secondaryUVAngleDistortion: 8
secondaryUVAreaDistortion: 15.000001
secondaryUVHardAngle: 88
secondaryUVMarginMethod: 1
secondaryUVMinLightmapResolution: 40
secondaryUVMinObjectScale: 1
secondaryUVPackMargin: 4
useFileScale: 1
strictVertexDataChecks: 0
tangentSpace:
normalSmoothAngle: 60
normalImportMode: 0
tangentImportMode: 3
normalCalculationMode: 4
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0
blendShapeNormalImportMode: 1
normalSmoothingSource: 0
referencedClips: []
importAnimation: 1
humanDescription:
serializedVersion: 3
human:
- boneName: B-hips
humanName: Hips
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thigh.L
humanName: LeftUpperLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thigh.R
humanName: RightUpperLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shin.L
humanName: LeftLowerLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shin.R
humanName: RightLowerLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-foot.L
humanName: LeftFoot
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-foot.R
humanName: RightFoot
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-spine
humanName: Spine
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-chest
humanName: Chest
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-neck
humanName: Neck
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-head
humanName: Head
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shoulder.L
humanName: LeftShoulder
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shoulder.R
humanName: RightShoulder
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-upperArm.L
humanName: LeftUpperArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-upperArm.R
humanName: RightUpperArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-forearm.L
humanName: LeftLowerArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-forearm.R
humanName: RightLowerArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-hand.L
humanName: LeftHand
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-hand.R
humanName: RightHand
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-toe.L
humanName: LeftToes
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-toe.R
humanName: RightToes
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-jaw
humanName: Jaw
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb01.L
humanName: Left Thumb Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb02.L
humanName: Left Thumb Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb03.L
humanName: Left Thumb Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger01.L
humanName: Left Index Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger02.L
humanName: Left Index Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger03.L
humanName: Left Index Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger01.L
humanName: Left Middle Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger02.L
humanName: Left Middle Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger03.L
humanName: Left Middle Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger01.L
humanName: Left Ring Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger02.L
humanName: Left Ring Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger03.L
humanName: Left Ring Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky01.L
humanName: Left Little Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky02.L
humanName: Left Little Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky03.L
humanName: Left Little Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb01.R
humanName: Right Thumb Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb02.R
humanName: Right Thumb Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb03.R
humanName: Right Thumb Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger01.R
humanName: Right Index Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger02.R
humanName: Right Index Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger03.R
humanName: Right Index Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger01.R
humanName: Right Middle Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger02.R
humanName: Right Middle Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger03.R
humanName: Right Middle Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger01.R
humanName: Right Ring Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger02.R
humanName: Right Ring Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger03.R
humanName: Right Ring Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky01.R
humanName: Right Little Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky02.R
humanName: Right Little Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky03.R
humanName: Right Little Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
skeleton:
- name: Human_DummyModel_F(Clone)
parentName:
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: HumanF_BodyMesh
parentName: Human_DummyModel_F(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Rig
parentName: Human_DummyModel_F(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: B-root
parentName: Rig
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: B-spineProxy
parentName: B-root
position: {x: -0, y: 1.092844, z: 0.029147}
rotation: {x: -0.012905054, y: 0, z: -0, w: 0.99991673}
scale: {x: 1, y: 1.0000001, z: 1.0000001}
- name: B-hips
parentName: B-root
position: {x: -0, y: 0.967712, z: 0.016772}
rotation: {x: 0.04926631, y: 0, z: -0, w: 0.9987857}
scale: {x: 1, y: 1.0000004, z: 1.0000004}
- name: B-spine
parentName: B-hips
position: {x: -0, y: 0.12574437, z: 0.00000011940791}
rotation: {x: -0.062152267, y: 0, z: -0, w: 0.99806666}
scale: {x: 1, y: 0.99999976, z: 0.99999976}
- name: B-chest
parentName: B-spine
position: {x: -0, y: 0.13376056, z: -0.00000077390683}
rotation: {x: -0.02258696, y: 0, z: -0, w: 0.9997449}
scale: {x: 1, y: 0.9999996, z: 0.9999996}
- name: B-shoulder.R
parentName: B-chest
position: {x: -0, y: 0.19125995, z: -0.005656177}
rotation: {x: -0.5165573, y: -0.44464085, z: -0.47738376, w: 0.554588}
scale: {x: 1.0000008, y: 1.0000006, z: 1.0000002}
- name: B-upperArm.R
parentName: B-shoulder.R
position: {x: -0.00000043065853, y: 0.1619337, z: -0.000000866464}
rotation: {x: 0.03406315, y: 0.7090742, z: -0.08345674, w: 0.69934857}
scale: {x: 0.99999976, y: 1, z: 0.99999946}
- name: B-forearm.R
parentName: B-upperArm.R
position: {x: -0.0000005071642, y: 0.23413825, z: 0.0000019611641}
rotation: {x: 0.0013730773, y: -0.00042225965, z: 0.0032032696, w: 0.99999386}
scale: {x: 1.0000001, y: 0.99999964, z: 0.9999996}
- name: B-hand.R
parentName: B-forearm.R
position: {x: -0.000000328232, y: 0.19596381, z: -0.0000008355853}
rotation: {x: 0.013529134, y: 0.7054088, z: 0.032969795, w: 0.70790416}
scale: {x: 0.9999999, y: 1.0000002, z: 1.0000005}
- name: B-handProp.R
parentName: B-hand.R
position: {x: 0.0029605331, y: 0.10533051, z: 0.022608897}
rotation: {x: -0.67608327, y: 0.73659164, z: -0.013668106, w: -0.012545319}
scale: {x: 0.99999964, y: 1.0000005, z: 0.9999996}
- name: B-indexFinger01.R
parentName: B-hand.R
position: {x: -0.036052607, y: 0.13202412, z: -0.0022375023}
rotation: {x: 0.019054495, y: -0.0149580045, z: 0.031315368, w: 0.999216}
scale: {x: 1.0000002, y: 0.99999964, z: 0.9999993}
- name: B-indexFinger02.R
parentName: B-indexFinger01.R
position: {x: 0.00000021708313, y: 0.046758045, z: -0.0000005285747}
rotation: {x: 0.040758472, y: 0.02876925, z: -0.0030862393, w: 0.99875003}
scale: {x: 1, y: 1.0000004, z: 1.0000002}
- name: B-indexFinger03.R
parentName: B-indexFinger02.R
position: {x: 0.000000038075022, y: 0.034652043, z: 0.00000019983679}
rotation: {x: -0.006236443, y: 0.004024028, z: -0.0109188985, w: 0.99991286}
scale: {x: 0.9999999, y: 0.9999999, z: 0.99999964}
- name: B-middleFinger01.R
parentName: B-hand.R
position: {x: -0.00928522, y: 0.1318378, z: -0.0089382}
rotation: {x: -0.004700204, y: -0.0032572027, z: -0.001801642, w: 0.99998206}
scale: {x: 1.0000006, y: 0.9999997, z: 0.99999917}
- name: B-middleFinger02.R
parentName: B-middleFinger01.R
position: {x: -0.0000003849299, y: 0.048716273, z: -0.0000001691299}
rotation: {x: 0.039366316, y: 0.04573892, z: 0.00377753, w: 0.9981703}
scale: {x: 0.9999997, y: 1.0000004, z: 1}
- name: B-middleFinger03.R
parentName: B-middleFinger02.R
position: {x: -0.00000039262213, y: 0.035888083, z: 0.00000029152696}
rotation: {x: 0.0049846717, y: -0.02122791, z: -0.0063242065, w: 0.99974227}
scale: {x: 0.99999964, y: 0.99999994, z: 1.0000002}
- name: B-ringFinger01.R
parentName: B-hand.R
position: {x: 0.016020812, y: 0.1283572, z: -0.005707851}
rotation: {x: -0.0071167736, y: 0.0017728558, z: -0.036400504, w: 0.9993104}
scale: {x: 1.0000005, y: 0.9999992, z: 0.9999996}
- name: B-ringFinger02.R
parentName: B-ringFinger01.R
position: {x: 0.00000047158898, y: 0.045192316, z: 0.00000021597218}
rotation: {x: 0.037958622, y: -0.0021153935, z: 0.012520862, w: 0.9991986}
scale: {x: 0.99999946, y: 1.0000005, z: 0.9999997}
- name: B-ringFinger03.R
parentName: B-ringFinger02.R
position: {x: -0.0000004720245, y: 0.034694634, z: 0.00000008820079}
rotation: {x: 0.02091165, y: -0.04065229, z: -0.015794862, w: 0.99882966}
scale: {x: 1.0000002, y: 0.99999976, z: 0.9999997}
- name: B-pinky01.R
parentName: B-hand.R
position: {x: 0.041580904, y: 0.119742304, z: -0.0024299922}
rotation: {x: -0.011731888, y: -0.016481936, z: -0.04421447, w: 0.9988172}
scale: {x: 1.0000002, y: 0.9999994, z: 0.99999917}
- name: B-pinky02.R
parentName: B-pinky01.R
position: {x: 0.0000007804244, y: 0.03832724, z: 0.00000044214514}
rotation: {x: 0.039002027, y: 0.011177708, z: 0.009234122, w: 0.99913394}
scale: {x: 1.0000002, y: 1.0000006, z: 1.0000002}
- name: B-pinky03.R
parentName: B-pinky02.R
position: {x: -0.000000269953, y: 0.03220071, z: -0.0000005856981}
rotation: {x: 0.022101695, y: -0.02182341, z: 0.009210792, w: 0.99947506}
scale: {x: 1.0000005, y: 0.99999994, z: 1.0000007}
- name: B-thumb01.R
parentName: B-hand.R
position: {x: -0.039809253, y: 0.048496302, z: 0.0130518135}
rotation: {x: -0.22471787, y: 0.63045275, z: 0.29821387, w: 0.6805144}
scale: {x: 0.99999946, y: 1.0000002, z: 1.0000005}
- name: B-thumb02.R
parentName: B-thumb01.R
position: {x: 0.00000020260806, y: 0.047178134, z: 0.000000160123}
rotation: {x: 0.038173996, y: 0.013301423, z: -0.008042345, w: 0.9991502}
scale: {x: 1.0000007, y: 0.9999997, z: 0.9999999}
- name: B-thumb03.R
parentName: B-thumb02.R
position: {x: -0.00000069069114, y: 0.03520854, z: 0.00000004046409}
rotation: {x: -0.060352694, y: 0.014396386, z: 0.0074255248, w: 0.9980457}
scale: {x: 0.9999995, y: 1.0000004, z: 1}
- name: B-neck
parentName: B-chest
position: {x: -0, y: 0.27081212, z: 0.0000007058524}
rotation: {x: 0.105346866, y: 0, z: -0, w: 0.99443555}
scale: {x: 1, y: 0.9999997, z: 1.0000007}
- name: B-head
parentName: B-neck
position: {x: -0, y: 0.07409704, z: 0.00000025054106}
rotation: {x: -0.069990024, y: 0, z: -0, w: 0.9975477}
scale: {x: 1, y: 1.0000006, z: 0.99999964}
- name: B-jaw
parentName: B-head
position: {x: -0, y: 0, z: 0}
rotation: {x: 0.70698464, y: 0.000007072379, z: -0.00000706994, w: 0.7072289}
scale: {x: 1, y: 1, z: 1}
- name: B-shoulder.L
parentName: B-chest
position: {x: -0, y: 0.19125995, z: -0.005656177}
rotation: {x: -0.5165571, y: 0.44464028, z: 0.47738382, w: 0.5545886}
scale: {x: 0.9999998, y: 0.9999995, z: 1.0000002}
- name: B-upperArm.L
parentName: B-shoulder.L
position: {x: 0.00000040656337, y: 0.16193385, z: -0.0000008664629}
rotation: {x: 0.033948872, y: -0.70908755, z: 0.08334149, w: 0.69935447}
scale: {x: 0.9999998, y: 1.0000002, z: 0.9999999}
- name: B-forearm.L
parentName: B-upperArm.L
position: {x: 0.000000097359035, y: 0.2341381, z: 0.00000030291466}
rotation: {x: 0.0017385628, y: 0.0004205673, z: -0.0032047313, w: 0.99999326}
scale: {x: 0.99999994, y: 1.0000004, z: 1.0000001}
- name: B-hand.L
parentName: B-forearm.L
position: {x: 0.00000052406216, y: 0.1959644, z: -0.0000011816531}
rotation: {x: 0.013386631, y: -0.70541465, z: -0.032826252, w: 0.7079078}
scale: {x: 0.99999994, y: 0.9999992, z: 0.9999996}
- name: B-handProp.L
parentName: B-hand.L
position: {x: -0.0029615294, y: 0.10533054, z: 0.02260892}
rotation: {x: 0.67608327, y: 0.73659164, z: -0.013668119, w: 0.012545332}
scale: {x: 1.0000006, y: 0.99999946, z: 1.0000006}
- name: B-indexFinger01.L
parentName: B-hand.L
position: {x: 0.03605161, y: 0.13202417, z: -0.0022375062}
rotation: {x: 0.019054513, y: 0.014957919, z: -0.03131587, w: 0.99921596}
scale: {x: 1.0000004, y: 0.9999998, z: 1.0000002}
- name: B-indexFinger02.L
parentName: B-indexFinger01.L
position: {x: 0.00000072554116, y: 0.04675823, z: -0.0000005109258}
rotation: {x: 0.04075494, y: -0.02876944, z: 0.0030826945, w: 0.9987502}
scale: {x: 1.0000001, y: 1.0000002, z: 1.0000002}
- name: B-indexFinger03.L
parentName: B-indexFinger02.L
position: {x: -0.00000009920999, y: 0.034652077, z: 0.00000023013986}
rotation: {x: -0.0062364372, y: -0.004023549, z: 0.010918792, w: 0.99991286}
scale: {x: 0.9999998, y: 1.0000008, z: 0.9999995}
- name: B-middleFinger01.L
parentName: B-hand.L
position: {x: 0.00928522, y: 0.13183793, z: -0.008938214}
rotation: {x: -0.004700207, y: 0.0032570793, z: 0.0018007505, w: 0.99998206}
scale: {x: 1.0000007, y: 0.9999999, z: 1.0000001}
- name: B-middleFinger02.L
parentName: B-middleFinger01.L
position: {x: 0.00000028786184, y: 0.048716314, z: -0.00000017087451}
rotation: {x: 0.039368037, y: -0.045739666, z: -0.0037847473, w: 0.9981702}
scale: {x: 0.99999976, y: 1.000001, z: 1.0000006}
- name: B-middleFinger03.L
parentName: B-middleFinger02.L
position: {x: -0.00000066842983, y: 0.035888, z: 0.00000028642995}
rotation: {x: 0.0049827034, y: 0.021227859, z: 0.0063241003, w: 0.99974227}
scale: {x: 0.9999996, y: 0.99999905, z: 0.99999934}
- name: B-ringFinger01.L
parentName: B-hand.L
position: {x: -0.016021809, y: 0.12835726, z: -0.005707858}
rotation: {x: -0.007116776, y: -0.0017729683, z: 0.036399588, w: 0.99931043}
scale: {x: 1.0000005, y: 1.0000002, z: 1.0000006}
- name: B-ringFinger02.L
parentName: B-ringFinger01.L
position: {x: 0.00000043795694, y: 0.04519233, z: 0.00000021050154}
rotation: {x: 0.037963506, y: 0.0021157071, z: -0.01252746, w: 0.9991984}
scale: {x: 0.9999995, y: 0.99999964, z: 0.9999996}
- name: B-ringFinger03.L
parentName: B-ringFinger02.L
position: {x: 0.00000034561023, y: 0.03469565, z: -0.00000007648653}
rotation: {x: 0.020911071, y: 0.04065225, z: 0.015794758, w: 0.99882966}
scale: {x: 1.0000001, y: 1.0000005, z: 0.9999997}
- name: B-pinky01.L
parentName: B-hand.L
position: {x: -0.041581903, y: 0.119742356, z: -0.0024299957}
rotation: {x: -0.01172906, y: 0.01648238, z: 0.0442254, w: 0.9988167}
scale: {x: 1.0000002, y: 1.0000004, z: 1.0000002}
- name: B-pinky02.L
parentName: B-pinky01.L
position: {x: 0.00000014151807, y: 0.03832722, z: 0.00000047056287}
rotation: {x: 0.039005004, y: -0.011177422, z: -0.009239738, w: 0.99913377}
scale: {x: 1.0000002, y: 0.99999946, z: 1.0000001}
- name: B-pinky03.L
parentName: B-pinky02.L
position: {x: 0.000000233103, y: 0.032200746, z: -0.00000055902217}
rotation: {x: 0.022101717, y: 0.02182328, z: -0.009211465, w: 0.99947506}
scale: {x: 0.9999995, y: 1, z: 0.99999964}
- name: B-thumb01.L
parentName: B-hand.L
position: {x: 0.03980834, y: 0.048495278, z: 0.013051865}
rotation: {x: -0.2247114, y: -0.6304557, z: -0.2982149, w: 0.6805132}
scale: {x: 1.0000005, y: 1, z: 1.0000005}
- name: B-thumb02.L
parentName: B-thumb01.L
position: {x: -0.0000007063521, y: 0.047179468, z: -0.00000013365789}
rotation: {x: 0.038171936, y: -0.013301728, z: 0.008042519, w: 0.9991503}
scale: {x: 1.0000004, y: 1, z: 0.9999994}
- name: B-thumb03.L
parentName: B-thumb02.L
position: {x: 0.0000007190916, y: 0.035208564, z: 0.00000017922088}
rotation: {x: -0.06035389, y: -0.014396597, z: -0.007425322, w: 0.9980456}
scale: {x: 0.9999992, y: 0.99999994, z: 1.0000001}
- name: B-thigh.L
parentName: B-hips
position: {x: -0.096950985, y: -0.05446949, z: 0.0020414153}
rotation: {x: 0.9977441, y: 0.011110197, z: -0.0039620763, w: 0.066088475}
scale: {x: 1.0000002, y: 0.9999997, z: 1.000001}
- name: B-shin.L
parentName: B-thigh.L
position: {x: 0.00000018468991, y: 0.41111633, z: 0.0000005281011}
rotation: {x: 0.067057244, y: -0.00057845906, z: 0.011617889, w: 0.9976813}
scale: {x: 0.9999997, y: 1.0000002, z: 0.99999964}
- name: B-foot.L
parentName: B-shin.L
position: {x: -0.00000017405802, y: 0.3880767, z: -0.00000019306846}
rotation: {x: -0.5354999, y: 0.004330197, z: 0.0016612022, w: 0.84452266}
scale: {x: 1.0000001, y: 0.9999997, z: 0.99999976}
- name: B-toe.L
parentName: B-foot.L
position: {x: -0.00000027025197, y: 0.17254004, z: -0.000000117418054}
rotation: {x: 0.000012936387, y: 0.9622731, z: -0.27208534, w: 0.00017343421}
scale: {x: 1, y: 1.0000018, z: 0.999999}
- name: B-thigh.R
parentName: B-hips
position: {x: 0.096950985, y: -0.05446959, z: 0.0020404202}
rotation: {x: 0.9977441, y: -0.011109428, z: 0.003967029, w: 0.066088304}
scale: {x: 1.0000004, y: 0.99999976, z: 1.000008}
- name: B-shin.R
parentName: B-thigh.R
position: {x: 0.0000005496826, y: 0.41111633, z: -0.00000065481464}
rotation: {x: 0.06705632, y: 0.0005783735, z: -0.011616509, w: 0.99768144}
scale: {x: 0.9999997, y: 1.0000002, z: 1.0000007}
- name: B-foot.R
parentName: B-shin.R
position: {x: -0.00000044263592, y: 0.3880767, z: 0.000000107811644}
rotation: {x: -0.53550065, y: -0.0043338453, z: -0.0016630876, w: 0.84452206}
scale: {x: 1, y: 0.9999993, z: 0.99999994}
- name: B-toe.R
parentName: B-foot.R
position: {x: 0.00000074386196, y: 0.17254034, z: 0.00000017937037}
rotation: {x: -0.000012542016, y: 0.96227294, z: -0.27208585, w: -0.00017487761}
scale: {x: 1, y: 1.0000029, z: 0.999997}
armTwist: 0.5
foreArmTwist: 0.5
upperLegTwist: 0.5
legTwist: 0.5
armStretch: 0.05
legStretch: 0.05
feetSpacing: 0
globalScale: 1
rootMotionBoneName:
hasTranslationDoF: 0
hasExtraRoot: 0
skeletonHasParents: 1
lastHumanDescriptionAvatarSource: {fileID: 9000000, guid: 1841c298173cdad4db8df8602c8f1c8d,
type: 3}
autoGenerateAvatarMappingIfUnspecified: 1
animationType: 3
humanoidOversampling: 1
avatarSetup: 2
addHumanoidExtraRootOnlyWhenUsingAvatar: 1
importBlendShapeDeformPercent: 1
remapMaterialsIfMaterialImportModeIsNone: 0
additionalBone: 0
userData:
assetBundleName:
assetBundleVariant:
AssetOrigin:
serializedVersion: 1
productId: 154271
packageName: Human Basic Motions FREE
packageVersion: 2.4.2
assetPath: Assets/Kevin Iglesias/Human Animations/Animations/Female/Movement/Run/HumanF@Run01_Forward.fbx
uploadId: 908942

View file

@ -1,973 +0,0 @@
fileFormatVersion: 2
guid: cdb2264de10c42b4799822b736b5de9c
ModelImporter:
serializedVersion: 22200
internalIDToNameTable: []
externalObjects: {}
materials:
materialImportMode: 0
materialName: 0
materialSearch: 1
materialLocation: 1
animations:
legacyGenerateAnimations: 4
bakeSimulation: 0
resampleCurves: 1
optimizeGameObjects: 0
removeConstantScaleCurves: 0
motionNodeName:
animationImportErrors:
animationImportWarnings:
animationRetargetingWarnings:
animationDoRetargetingWarnings: 0
importAnimatedCustomProperties: 0
importConstraints: 0
animationCompression: 0
animationRotationError: 0.5
animationPositionError: 0.5
animationScaleError: 0.5
animationWrapMode: 0
extraExposedTransformPaths: []
extraUserProperties: []
clipAnimations:
- serializedVersion: 16
name: HumanF@Run01_ForwardLeft
takeName: Untitled
internalID: 3094330708855449807
firstFrame: 0
lastFrame: 18
wrapMode: 0
orientationOffsetY: 0
level: 0
cycleOffset: 0
loop: 0
hasAdditiveReferencePose: 0
loopTime: 1
loopBlend: 0
loopBlendOrientation: 1
loopBlendPositionY: 1
loopBlendPositionXZ: 1
keepOriginalOrientation: 1
keepOriginalPositionY: 1
keepOriginalPositionXZ: 1
heightFromFeet: 0
mirror: 0
bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
curves: []
events: []
transformMask:
- path:
weight: 1
- path: HumanF_BodyMesh
weight: 0
- path: Rig
weight: 1
- path: Rig/B-root
weight: 1
- path: Rig/B-root/B-hips
weight: 1
- path: Rig/B-root/B-hips/B-spine
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck/B-head
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck/B-head/B-jaw
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-handProp.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L/B-indexFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L/B-indexFinger02.L/B-indexFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L/B-middleFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L/B-middleFinger02.L/B-middleFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L/B-pinky02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L/B-pinky02.L/B-pinky03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L/B-ringFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L/B-ringFinger02.L/B-ringFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L/B-thumb02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L/B-thumb02.L/B-thumb03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-handProp.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R/B-indexFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R/B-indexFinger02.R/B-indexFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R/B-middleFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R/B-middleFinger02.R/B-middleFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R/B-pinky02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R/B-pinky02.R/B-pinky03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R/B-ringFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R/B-ringFinger02.R/B-ringFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R/B-thumb02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R/B-thumb02.R/B-thumb03.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L/B-foot.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L/B-foot.L/B-toe.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R/B-foot.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R/B-foot.R/B-toe.R
weight: 1
- path: Rig/B-root/B-spineProxy
weight: 1
maskType: 1
maskSource: {fileID: 31900000, guid: 89527f5525238ee44b3182458d85143a, type: 2}
additiveReferencePoseFrame: 0
isReadable: 0
meshes:
lODScreenPercentages: []
globalScale: 1
meshCompression: 0
addColliders: 0
useSRGBMaterialColor: 1
sortHierarchyByName: 1
importPhysicalCameras: 1
importVisibility: 1
importBlendShapes: 1
importCameras: 1
importLights: 1
nodeNameCollisionStrategy: 1
fileIdsGeneration: 2
swapUVChannels: 0
generateSecondaryUV: 0
useFileUnits: 1
keepQuads: 0
weldVertices: 1
bakeAxisConversion: 0
preserveHierarchy: 1
skinWeightsMode: 0
maxBonesPerVertex: 4
minBoneWeight: 0.001
optimizeBones: 1
meshOptimizationFlags: -1
indexFormat: 0
secondaryUVAngleDistortion: 8
secondaryUVAreaDistortion: 15.000001
secondaryUVHardAngle: 88
secondaryUVMarginMethod: 1
secondaryUVMinLightmapResolution: 40
secondaryUVMinObjectScale: 1
secondaryUVPackMargin: 4
useFileScale: 1
strictVertexDataChecks: 0
tangentSpace:
normalSmoothAngle: 60
normalImportMode: 0
tangentImportMode: 3
normalCalculationMode: 4
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0
blendShapeNormalImportMode: 1
normalSmoothingSource: 0
referencedClips: []
importAnimation: 1
humanDescription:
serializedVersion: 3
human:
- boneName: B-hips
humanName: Hips
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thigh.L
humanName: LeftUpperLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thigh.R
humanName: RightUpperLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shin.L
humanName: LeftLowerLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shin.R
humanName: RightLowerLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-foot.L
humanName: LeftFoot
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-foot.R
humanName: RightFoot
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-spine
humanName: Spine
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-chest
humanName: Chest
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-neck
humanName: Neck
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-head
humanName: Head
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shoulder.L
humanName: LeftShoulder
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shoulder.R
humanName: RightShoulder
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-upperArm.L
humanName: LeftUpperArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-upperArm.R
humanName: RightUpperArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-forearm.L
humanName: LeftLowerArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-forearm.R
humanName: RightLowerArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-hand.L
humanName: LeftHand
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-hand.R
humanName: RightHand
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-toe.L
humanName: LeftToes
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-toe.R
humanName: RightToes
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-jaw
humanName: Jaw
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb01.L
humanName: Left Thumb Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb02.L
humanName: Left Thumb Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb03.L
humanName: Left Thumb Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger01.L
humanName: Left Index Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger02.L
humanName: Left Index Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger03.L
humanName: Left Index Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger01.L
humanName: Left Middle Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger02.L
humanName: Left Middle Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger03.L
humanName: Left Middle Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger01.L
humanName: Left Ring Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger02.L
humanName: Left Ring Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger03.L
humanName: Left Ring Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky01.L
humanName: Left Little Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky02.L
humanName: Left Little Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky03.L
humanName: Left Little Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb01.R
humanName: Right Thumb Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb02.R
humanName: Right Thumb Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb03.R
humanName: Right Thumb Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger01.R
humanName: Right Index Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger02.R
humanName: Right Index Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger03.R
humanName: Right Index Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger01.R
humanName: Right Middle Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger02.R
humanName: Right Middle Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger03.R
humanName: Right Middle Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger01.R
humanName: Right Ring Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger02.R
humanName: Right Ring Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger03.R
humanName: Right Ring Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky01.R
humanName: Right Little Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky02.R
humanName: Right Little Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky03.R
humanName: Right Little Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
skeleton:
- name: Human_DummyModel_F(Clone)
parentName:
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: HumanF_BodyMesh
parentName: Human_DummyModel_F(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Rig
parentName: Human_DummyModel_F(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: B-root
parentName: Rig
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: B-spineProxy
parentName: B-root
position: {x: -0, y: 1.092844, z: 0.029147}
rotation: {x: -0.012905054, y: 0, z: -0, w: 0.99991673}
scale: {x: 1, y: 1.0000001, z: 1.0000001}
- name: B-hips
parentName: B-root
position: {x: -0, y: 0.967712, z: 0.016772}
rotation: {x: 0.04926631, y: 0, z: -0, w: 0.9987857}
scale: {x: 1, y: 1.0000004, z: 1.0000004}
- name: B-spine
parentName: B-hips
position: {x: -0, y: 0.12574437, z: 0.00000011940791}
rotation: {x: -0.062152267, y: 0, z: -0, w: 0.99806666}
scale: {x: 1, y: 0.99999976, z: 0.99999976}
- name: B-chest
parentName: B-spine
position: {x: -0, y: 0.13376056, z: -0.00000077390683}
rotation: {x: -0.02258696, y: 0, z: -0, w: 0.9997449}
scale: {x: 1, y: 0.9999996, z: 0.9999996}
- name: B-shoulder.R
parentName: B-chest
position: {x: -0, y: 0.19125995, z: -0.005656177}
rotation: {x: -0.5165573, y: -0.44464085, z: -0.47738376, w: 0.554588}
scale: {x: 1.0000008, y: 1.0000006, z: 1.0000002}
- name: B-upperArm.R
parentName: B-shoulder.R
position: {x: -0.00000043065853, y: 0.1619337, z: -0.000000866464}
rotation: {x: 0.03406315, y: 0.7090742, z: -0.08345674, w: 0.69934857}
scale: {x: 0.99999976, y: 1, z: 0.99999946}
- name: B-forearm.R
parentName: B-upperArm.R
position: {x: -0.0000005071642, y: 0.23413825, z: 0.0000019611641}
rotation: {x: 0.0013730773, y: -0.00042225965, z: 0.0032032696, w: 0.99999386}
scale: {x: 1.0000001, y: 0.99999964, z: 0.9999996}
- name: B-hand.R
parentName: B-forearm.R
position: {x: -0.000000328232, y: 0.19596381, z: -0.0000008355853}
rotation: {x: 0.013529134, y: 0.7054088, z: 0.032969795, w: 0.70790416}
scale: {x: 0.9999999, y: 1.0000002, z: 1.0000005}
- name: B-handProp.R
parentName: B-hand.R
position: {x: 0.0029605331, y: 0.10533051, z: 0.022608897}
rotation: {x: -0.67608327, y: 0.73659164, z: -0.013668106, w: -0.012545319}
scale: {x: 0.99999964, y: 1.0000005, z: 0.9999996}
- name: B-indexFinger01.R
parentName: B-hand.R
position: {x: -0.036052607, y: 0.13202412, z: -0.0022375023}
rotation: {x: 0.019054495, y: -0.0149580045, z: 0.031315368, w: 0.999216}
scale: {x: 1.0000002, y: 0.99999964, z: 0.9999993}
- name: B-indexFinger02.R
parentName: B-indexFinger01.R
position: {x: 0.00000021708313, y: 0.046758045, z: -0.0000005285747}
rotation: {x: 0.040758472, y: 0.02876925, z: -0.0030862393, w: 0.99875003}
scale: {x: 1, y: 1.0000004, z: 1.0000002}
- name: B-indexFinger03.R
parentName: B-indexFinger02.R
position: {x: 0.000000038075022, y: 0.034652043, z: 0.00000019983679}
rotation: {x: -0.006236443, y: 0.004024028, z: -0.0109188985, w: 0.99991286}
scale: {x: 0.9999999, y: 0.9999999, z: 0.99999964}
- name: B-middleFinger01.R
parentName: B-hand.R
position: {x: -0.00928522, y: 0.1318378, z: -0.0089382}
rotation: {x: -0.004700204, y: -0.0032572027, z: -0.001801642, w: 0.99998206}
scale: {x: 1.0000006, y: 0.9999997, z: 0.99999917}
- name: B-middleFinger02.R
parentName: B-middleFinger01.R
position: {x: -0.0000003849299, y: 0.048716273, z: -0.0000001691299}
rotation: {x: 0.039366316, y: 0.04573892, z: 0.00377753, w: 0.9981703}
scale: {x: 0.9999997, y: 1.0000004, z: 1}
- name: B-middleFinger03.R
parentName: B-middleFinger02.R
position: {x: -0.00000039262213, y: 0.035888083, z: 0.00000029152696}
rotation: {x: 0.0049846717, y: -0.02122791, z: -0.0063242065, w: 0.99974227}
scale: {x: 0.99999964, y: 0.99999994, z: 1.0000002}
- name: B-ringFinger01.R
parentName: B-hand.R
position: {x: 0.016020812, y: 0.1283572, z: -0.005707851}
rotation: {x: -0.0071167736, y: 0.0017728558, z: -0.036400504, w: 0.9993104}
scale: {x: 1.0000005, y: 0.9999992, z: 0.9999996}
- name: B-ringFinger02.R
parentName: B-ringFinger01.R
position: {x: 0.00000047158898, y: 0.045192316, z: 0.00000021597218}
rotation: {x: 0.037958622, y: -0.0021153935, z: 0.012520862, w: 0.9991986}
scale: {x: 0.99999946, y: 1.0000005, z: 0.9999997}
- name: B-ringFinger03.R
parentName: B-ringFinger02.R
position: {x: -0.0000004720245, y: 0.034694634, z: 0.00000008820079}
rotation: {x: 0.02091165, y: -0.04065229, z: -0.015794862, w: 0.99882966}
scale: {x: 1.0000002, y: 0.99999976, z: 0.9999997}
- name: B-pinky01.R
parentName: B-hand.R
position: {x: 0.041580904, y: 0.119742304, z: -0.0024299922}
rotation: {x: -0.011731888, y: -0.016481936, z: -0.04421447, w: 0.9988172}
scale: {x: 1.0000002, y: 0.9999994, z: 0.99999917}
- name: B-pinky02.R
parentName: B-pinky01.R
position: {x: 0.0000007804244, y: 0.03832724, z: 0.00000044214514}
rotation: {x: 0.039002027, y: 0.011177708, z: 0.009234122, w: 0.99913394}
scale: {x: 1.0000002, y: 1.0000006, z: 1.0000002}
- name: B-pinky03.R
parentName: B-pinky02.R
position: {x: -0.000000269953, y: 0.03220071, z: -0.0000005856981}
rotation: {x: 0.022101695, y: -0.02182341, z: 0.009210792, w: 0.99947506}
scale: {x: 1.0000005, y: 0.99999994, z: 1.0000007}
- name: B-thumb01.R
parentName: B-hand.R
position: {x: -0.039809253, y: 0.048496302, z: 0.0130518135}
rotation: {x: -0.22471787, y: 0.63045275, z: 0.29821387, w: 0.6805144}
scale: {x: 0.99999946, y: 1.0000002, z: 1.0000005}
- name: B-thumb02.R
parentName: B-thumb01.R
position: {x: 0.00000020260806, y: 0.047178134, z: 0.000000160123}
rotation: {x: 0.038173996, y: 0.013301423, z: -0.008042345, w: 0.9991502}
scale: {x: 1.0000007, y: 0.9999997, z: 0.9999999}
- name: B-thumb03.R
parentName: B-thumb02.R
position: {x: -0.00000069069114, y: 0.03520854, z: 0.00000004046409}
rotation: {x: -0.060352694, y: 0.014396386, z: 0.0074255248, w: 0.9980457}
scale: {x: 0.9999995, y: 1.0000004, z: 1}
- name: B-neck
parentName: B-chest
position: {x: -0, y: 0.27081212, z: 0.0000007058524}
rotation: {x: 0.105346866, y: 0, z: -0, w: 0.99443555}
scale: {x: 1, y: 0.9999997, z: 1.0000007}
- name: B-head
parentName: B-neck
position: {x: -0, y: 0.07409704, z: 0.00000025054106}
rotation: {x: -0.069990024, y: 0, z: -0, w: 0.9975477}
scale: {x: 1, y: 1.0000006, z: 0.99999964}
- name: B-jaw
parentName: B-head
position: {x: -0, y: 0, z: 0}
rotation: {x: 0.70698464, y: 0.000007072379, z: -0.00000706994, w: 0.7072289}
scale: {x: 1, y: 1, z: 1}
- name: B-shoulder.L
parentName: B-chest
position: {x: -0, y: 0.19125995, z: -0.005656177}
rotation: {x: -0.5165571, y: 0.44464028, z: 0.47738382, w: 0.5545886}
scale: {x: 0.9999998, y: 0.9999995, z: 1.0000002}
- name: B-upperArm.L
parentName: B-shoulder.L
position: {x: 0.00000040656337, y: 0.16193385, z: -0.0000008664629}
rotation: {x: 0.033948872, y: -0.70908755, z: 0.08334149, w: 0.69935447}
scale: {x: 0.9999998, y: 1.0000002, z: 0.9999999}
- name: B-forearm.L
parentName: B-upperArm.L
position: {x: 0.000000097359035, y: 0.2341381, z: 0.00000030291466}
rotation: {x: 0.0017385628, y: 0.0004205673, z: -0.0032047313, w: 0.99999326}
scale: {x: 0.99999994, y: 1.0000004, z: 1.0000001}
- name: B-hand.L
parentName: B-forearm.L
position: {x: 0.00000052406216, y: 0.1959644, z: -0.0000011816531}
rotation: {x: 0.013386631, y: -0.70541465, z: -0.032826252, w: 0.7079078}
scale: {x: 0.99999994, y: 0.9999992, z: 0.9999996}
- name: B-handProp.L
parentName: B-hand.L
position: {x: -0.0029615294, y: 0.10533054, z: 0.02260892}
rotation: {x: 0.67608327, y: 0.73659164, z: -0.013668119, w: 0.012545332}
scale: {x: 1.0000006, y: 0.99999946, z: 1.0000006}
- name: B-indexFinger01.L
parentName: B-hand.L
position: {x: 0.03605161, y: 0.13202417, z: -0.0022375062}
rotation: {x: 0.019054513, y: 0.014957919, z: -0.03131587, w: 0.99921596}
scale: {x: 1.0000004, y: 0.9999998, z: 1.0000002}
- name: B-indexFinger02.L
parentName: B-indexFinger01.L
position: {x: 0.00000072554116, y: 0.04675823, z: -0.0000005109258}
rotation: {x: 0.04075494, y: -0.02876944, z: 0.0030826945, w: 0.9987502}
scale: {x: 1.0000001, y: 1.0000002, z: 1.0000002}
- name: B-indexFinger03.L
parentName: B-indexFinger02.L
position: {x: -0.00000009920999, y: 0.034652077, z: 0.00000023013986}
rotation: {x: -0.0062364372, y: -0.004023549, z: 0.010918792, w: 0.99991286}
scale: {x: 0.9999998, y: 1.0000008, z: 0.9999995}
- name: B-middleFinger01.L
parentName: B-hand.L
position: {x: 0.00928522, y: 0.13183793, z: -0.008938214}
rotation: {x: -0.004700207, y: 0.0032570793, z: 0.0018007505, w: 0.99998206}
scale: {x: 1.0000007, y: 0.9999999, z: 1.0000001}
- name: B-middleFinger02.L
parentName: B-middleFinger01.L
position: {x: 0.00000028786184, y: 0.048716314, z: -0.00000017087451}
rotation: {x: 0.039368037, y: -0.045739666, z: -0.0037847473, w: 0.9981702}
scale: {x: 0.99999976, y: 1.000001, z: 1.0000006}
- name: B-middleFinger03.L
parentName: B-middleFinger02.L
position: {x: -0.00000066842983, y: 0.035888, z: 0.00000028642995}
rotation: {x: 0.0049827034, y: 0.021227859, z: 0.0063241003, w: 0.99974227}
scale: {x: 0.9999996, y: 0.99999905, z: 0.99999934}
- name: B-ringFinger01.L
parentName: B-hand.L
position: {x: -0.016021809, y: 0.12835726, z: -0.005707858}
rotation: {x: -0.007116776, y: -0.0017729683, z: 0.036399588, w: 0.99931043}
scale: {x: 1.0000005, y: 1.0000002, z: 1.0000006}
- name: B-ringFinger02.L
parentName: B-ringFinger01.L
position: {x: 0.00000043795694, y: 0.04519233, z: 0.00000021050154}
rotation: {x: 0.037963506, y: 0.0021157071, z: -0.01252746, w: 0.9991984}
scale: {x: 0.9999995, y: 0.99999964, z: 0.9999996}
- name: B-ringFinger03.L
parentName: B-ringFinger02.L
position: {x: 0.00000034561023, y: 0.03469565, z: -0.00000007648653}
rotation: {x: 0.020911071, y: 0.04065225, z: 0.015794758, w: 0.99882966}
scale: {x: 1.0000001, y: 1.0000005, z: 0.9999997}
- name: B-pinky01.L
parentName: B-hand.L
position: {x: -0.041581903, y: 0.119742356, z: -0.0024299957}
rotation: {x: -0.01172906, y: 0.01648238, z: 0.0442254, w: 0.9988167}
scale: {x: 1.0000002, y: 1.0000004, z: 1.0000002}
- name: B-pinky02.L
parentName: B-pinky01.L
position: {x: 0.00000014151807, y: 0.03832722, z: 0.00000047056287}
rotation: {x: 0.039005004, y: -0.011177422, z: -0.009239738, w: 0.99913377}
scale: {x: 1.0000002, y: 0.99999946, z: 1.0000001}
- name: B-pinky03.L
parentName: B-pinky02.L
position: {x: 0.000000233103, y: 0.032200746, z: -0.00000055902217}
rotation: {x: 0.022101717, y: 0.02182328, z: -0.009211465, w: 0.99947506}
scale: {x: 0.9999995, y: 1, z: 0.99999964}
- name: B-thumb01.L
parentName: B-hand.L
position: {x: 0.03980834, y: 0.048495278, z: 0.013051865}
rotation: {x: -0.2247114, y: -0.6304557, z: -0.2982149, w: 0.6805132}
scale: {x: 1.0000005, y: 1, z: 1.0000005}
- name: B-thumb02.L
parentName: B-thumb01.L
position: {x: -0.0000007063521, y: 0.047179468, z: -0.00000013365789}
rotation: {x: 0.038171936, y: -0.013301728, z: 0.008042519, w: 0.9991503}
scale: {x: 1.0000004, y: 1, z: 0.9999994}
- name: B-thumb03.L
parentName: B-thumb02.L
position: {x: 0.0000007190916, y: 0.035208564, z: 0.00000017922088}
rotation: {x: -0.06035389, y: -0.014396597, z: -0.007425322, w: 0.9980456}
scale: {x: 0.9999992, y: 0.99999994, z: 1.0000001}
- name: B-thigh.L
parentName: B-hips
position: {x: -0.096950985, y: -0.05446949, z: 0.0020414153}
rotation: {x: 0.9977441, y: 0.011110197, z: -0.0039620763, w: 0.066088475}
scale: {x: 1.0000002, y: 0.9999997, z: 1.000001}
- name: B-shin.L
parentName: B-thigh.L
position: {x: 0.00000018468991, y: 0.41111633, z: 0.0000005281011}
rotation: {x: 0.067057244, y: -0.00057845906, z: 0.011617889, w: 0.9976813}
scale: {x: 0.9999997, y: 1.0000002, z: 0.99999964}
- name: B-foot.L
parentName: B-shin.L
position: {x: -0.00000017405802, y: 0.3880767, z: -0.00000019306846}
rotation: {x: -0.5354999, y: 0.004330197, z: 0.0016612022, w: 0.84452266}
scale: {x: 1.0000001, y: 0.9999997, z: 0.99999976}
- name: B-toe.L
parentName: B-foot.L
position: {x: -0.00000027025197, y: 0.17254004, z: -0.000000117418054}
rotation: {x: 0.000012936387, y: 0.9622731, z: -0.27208534, w: 0.00017343421}
scale: {x: 1, y: 1.0000018, z: 0.999999}
- name: B-thigh.R
parentName: B-hips
position: {x: 0.096950985, y: -0.05446959, z: 0.0020404202}
rotation: {x: 0.9977441, y: -0.011109428, z: 0.003967029, w: 0.066088304}
scale: {x: 1.0000004, y: 0.99999976, z: 1.000008}
- name: B-shin.R
parentName: B-thigh.R
position: {x: 0.0000005496826, y: 0.41111633, z: -0.00000065481464}
rotation: {x: 0.06705632, y: 0.0005783735, z: -0.011616509, w: 0.99768144}
scale: {x: 0.9999997, y: 1.0000002, z: 1.0000007}
- name: B-foot.R
parentName: B-shin.R
position: {x: -0.00000044263592, y: 0.3880767, z: 0.000000107811644}
rotation: {x: -0.53550065, y: -0.0043338453, z: -0.0016630876, w: 0.84452206}
scale: {x: 1, y: 0.9999993, z: 0.99999994}
- name: B-toe.R
parentName: B-foot.R
position: {x: 0.00000074386196, y: 0.17254034, z: 0.00000017937037}
rotation: {x: -0.000012542016, y: 0.96227294, z: -0.27208585, w: -0.00017487761}
scale: {x: 1, y: 1.0000029, z: 0.999997}
armTwist: 0.5
foreArmTwist: 0.5
upperLegTwist: 0.5
legTwist: 0.5
armStretch: 0.05
legStretch: 0.05
feetSpacing: 0
globalScale: 1
rootMotionBoneName:
hasTranslationDoF: 0
hasExtraRoot: 0
skeletonHasParents: 1
lastHumanDescriptionAvatarSource: {fileID: 9000000, guid: 1841c298173cdad4db8df8602c8f1c8d,
type: 3}
autoGenerateAvatarMappingIfUnspecified: 1
animationType: 3
humanoidOversampling: 1
avatarSetup: 2
addHumanoidExtraRootOnlyWhenUsingAvatar: 1
importBlendShapeDeformPercent: 1
remapMaterialsIfMaterialImportModeIsNone: 0
additionalBone: 0
userData:
assetBundleName:
assetBundleVariant:
AssetOrigin:
serializedVersion: 1
productId: 154271
packageName: Human Basic Motions FREE
packageVersion: 2.4.2
assetPath: Assets/Kevin Iglesias/Human Animations/Animations/Female/Movement/Run/HumanF@Run01_ForwardLeft.fbx
uploadId: 908942

View file

@ -1,973 +0,0 @@
fileFormatVersion: 2
guid: 5088dccb2ba6bc8478f1dc0919d3e8cd
ModelImporter:
serializedVersion: 22200
internalIDToNameTable: []
externalObjects: {}
materials:
materialImportMode: 0
materialName: 0
materialSearch: 1
materialLocation: 1
animations:
legacyGenerateAnimations: 4
bakeSimulation: 0
resampleCurves: 1
optimizeGameObjects: 0
removeConstantScaleCurves: 0
motionNodeName:
animationImportErrors:
animationImportWarnings:
animationRetargetingWarnings:
animationDoRetargetingWarnings: 0
importAnimatedCustomProperties: 0
importConstraints: 0
animationCompression: 0
animationRotationError: 0.5
animationPositionError: 0.5
animationScaleError: 0.5
animationWrapMode: 0
extraExposedTransformPaths: []
extraUserProperties: []
clipAnimations:
- serializedVersion: 16
name: HumanF@Run01_ForwardRight
takeName: Untitled
internalID: 3094330708855449807
firstFrame: 0
lastFrame: 18
wrapMode: 0
orientationOffsetY: 0
level: 0
cycleOffset: 0
loop: 0
hasAdditiveReferencePose: 0
loopTime: 1
loopBlend: 0
loopBlendOrientation: 1
loopBlendPositionY: 1
loopBlendPositionXZ: 1
keepOriginalOrientation: 1
keepOriginalPositionY: 1
keepOriginalPositionXZ: 1
heightFromFeet: 0
mirror: 0
bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
curves: []
events: []
transformMask:
- path:
weight: 1
- path: HumanF_BodyMesh
weight: 0
- path: Rig
weight: 1
- path: Rig/B-root
weight: 1
- path: Rig/B-root/B-hips
weight: 1
- path: Rig/B-root/B-hips/B-spine
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck/B-head
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck/B-head/B-jaw
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-handProp.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L/B-indexFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L/B-indexFinger02.L/B-indexFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L/B-middleFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L/B-middleFinger02.L/B-middleFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L/B-pinky02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L/B-pinky02.L/B-pinky03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L/B-ringFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L/B-ringFinger02.L/B-ringFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L/B-thumb02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L/B-thumb02.L/B-thumb03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-handProp.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R/B-indexFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R/B-indexFinger02.R/B-indexFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R/B-middleFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R/B-middleFinger02.R/B-middleFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R/B-pinky02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R/B-pinky02.R/B-pinky03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R/B-ringFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R/B-ringFinger02.R/B-ringFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R/B-thumb02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R/B-thumb02.R/B-thumb03.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L/B-foot.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L/B-foot.L/B-toe.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R/B-foot.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R/B-foot.R/B-toe.R
weight: 1
- path: Rig/B-root/B-spineProxy
weight: 1
maskType: 1
maskSource: {fileID: 31900000, guid: 89527f5525238ee44b3182458d85143a, type: 2}
additiveReferencePoseFrame: 0
isReadable: 0
meshes:
lODScreenPercentages: []
globalScale: 1
meshCompression: 0
addColliders: 0
useSRGBMaterialColor: 1
sortHierarchyByName: 1
importPhysicalCameras: 1
importVisibility: 1
importBlendShapes: 1
importCameras: 1
importLights: 1
nodeNameCollisionStrategy: 1
fileIdsGeneration: 2
swapUVChannels: 0
generateSecondaryUV: 0
useFileUnits: 1
keepQuads: 0
weldVertices: 1
bakeAxisConversion: 0
preserveHierarchy: 1
skinWeightsMode: 0
maxBonesPerVertex: 4
minBoneWeight: 0.001
optimizeBones: 1
meshOptimizationFlags: -1
indexFormat: 0
secondaryUVAngleDistortion: 8
secondaryUVAreaDistortion: 15.000001
secondaryUVHardAngle: 88
secondaryUVMarginMethod: 1
secondaryUVMinLightmapResolution: 40
secondaryUVMinObjectScale: 1
secondaryUVPackMargin: 4
useFileScale: 1
strictVertexDataChecks: 0
tangentSpace:
normalSmoothAngle: 60
normalImportMode: 0
tangentImportMode: 3
normalCalculationMode: 4
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0
blendShapeNormalImportMode: 1
normalSmoothingSource: 0
referencedClips: []
importAnimation: 1
humanDescription:
serializedVersion: 3
human:
- boneName: B-hips
humanName: Hips
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thigh.L
humanName: LeftUpperLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thigh.R
humanName: RightUpperLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shin.L
humanName: LeftLowerLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shin.R
humanName: RightLowerLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-foot.L
humanName: LeftFoot
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-foot.R
humanName: RightFoot
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-spine
humanName: Spine
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-chest
humanName: Chest
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-neck
humanName: Neck
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-head
humanName: Head
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shoulder.L
humanName: LeftShoulder
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shoulder.R
humanName: RightShoulder
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-upperArm.L
humanName: LeftUpperArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-upperArm.R
humanName: RightUpperArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-forearm.L
humanName: LeftLowerArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-forearm.R
humanName: RightLowerArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-hand.L
humanName: LeftHand
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-hand.R
humanName: RightHand
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-toe.L
humanName: LeftToes
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-toe.R
humanName: RightToes
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-jaw
humanName: Jaw
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb01.L
humanName: Left Thumb Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb02.L
humanName: Left Thumb Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb03.L
humanName: Left Thumb Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger01.L
humanName: Left Index Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger02.L
humanName: Left Index Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger03.L
humanName: Left Index Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger01.L
humanName: Left Middle Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger02.L
humanName: Left Middle Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger03.L
humanName: Left Middle Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger01.L
humanName: Left Ring Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger02.L
humanName: Left Ring Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger03.L
humanName: Left Ring Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky01.L
humanName: Left Little Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky02.L
humanName: Left Little Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky03.L
humanName: Left Little Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb01.R
humanName: Right Thumb Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb02.R
humanName: Right Thumb Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb03.R
humanName: Right Thumb Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger01.R
humanName: Right Index Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger02.R
humanName: Right Index Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger03.R
humanName: Right Index Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger01.R
humanName: Right Middle Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger02.R
humanName: Right Middle Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger03.R
humanName: Right Middle Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger01.R
humanName: Right Ring Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger02.R
humanName: Right Ring Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger03.R
humanName: Right Ring Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky01.R
humanName: Right Little Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky02.R
humanName: Right Little Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky03.R
humanName: Right Little Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
skeleton:
- name: Human_DummyModel_F(Clone)
parentName:
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: HumanF_BodyMesh
parentName: Human_DummyModel_F(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Rig
parentName: Human_DummyModel_F(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: B-root
parentName: Rig
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: B-spineProxy
parentName: B-root
position: {x: -0, y: 1.092844, z: 0.029147}
rotation: {x: -0.012905054, y: 0, z: -0, w: 0.99991673}
scale: {x: 1, y: 1.0000001, z: 1.0000001}
- name: B-hips
parentName: B-root
position: {x: -0, y: 0.967712, z: 0.016772}
rotation: {x: 0.04926631, y: 0, z: -0, w: 0.9987857}
scale: {x: 1, y: 1.0000004, z: 1.0000004}
- name: B-spine
parentName: B-hips
position: {x: -0, y: 0.12574437, z: 0.00000011940791}
rotation: {x: -0.062152267, y: 0, z: -0, w: 0.99806666}
scale: {x: 1, y: 0.99999976, z: 0.99999976}
- name: B-chest
parentName: B-spine
position: {x: -0, y: 0.13376056, z: -0.00000077390683}
rotation: {x: -0.02258696, y: 0, z: -0, w: 0.9997449}
scale: {x: 1, y: 0.9999996, z: 0.9999996}
- name: B-shoulder.R
parentName: B-chest
position: {x: -0, y: 0.19125995, z: -0.005656177}
rotation: {x: -0.5165573, y: -0.44464085, z: -0.47738376, w: 0.554588}
scale: {x: 1.0000008, y: 1.0000006, z: 1.0000002}
- name: B-upperArm.R
parentName: B-shoulder.R
position: {x: -0.00000043065853, y: 0.1619337, z: -0.000000866464}
rotation: {x: 0.03406315, y: 0.7090742, z: -0.08345674, w: 0.69934857}
scale: {x: 0.99999976, y: 1, z: 0.99999946}
- name: B-forearm.R
parentName: B-upperArm.R
position: {x: -0.0000005071642, y: 0.23413825, z: 0.0000019611641}
rotation: {x: 0.0013730773, y: -0.00042225965, z: 0.0032032696, w: 0.99999386}
scale: {x: 1.0000001, y: 0.99999964, z: 0.9999996}
- name: B-hand.R
parentName: B-forearm.R
position: {x: -0.000000328232, y: 0.19596381, z: -0.0000008355853}
rotation: {x: 0.013529134, y: 0.7054088, z: 0.032969795, w: 0.70790416}
scale: {x: 0.9999999, y: 1.0000002, z: 1.0000005}
- name: B-handProp.R
parentName: B-hand.R
position: {x: 0.0029605331, y: 0.10533051, z: 0.022608897}
rotation: {x: -0.67608327, y: 0.73659164, z: -0.013668106, w: -0.012545319}
scale: {x: 0.99999964, y: 1.0000005, z: 0.9999996}
- name: B-indexFinger01.R
parentName: B-hand.R
position: {x: -0.036052607, y: 0.13202412, z: -0.0022375023}
rotation: {x: 0.019054495, y: -0.0149580045, z: 0.031315368, w: 0.999216}
scale: {x: 1.0000002, y: 0.99999964, z: 0.9999993}
- name: B-indexFinger02.R
parentName: B-indexFinger01.R
position: {x: 0.00000021708313, y: 0.046758045, z: -0.0000005285747}
rotation: {x: 0.040758472, y: 0.02876925, z: -0.0030862393, w: 0.99875003}
scale: {x: 1, y: 1.0000004, z: 1.0000002}
- name: B-indexFinger03.R
parentName: B-indexFinger02.R
position: {x: 0.000000038075022, y: 0.034652043, z: 0.00000019983679}
rotation: {x: -0.006236443, y: 0.004024028, z: -0.0109188985, w: 0.99991286}
scale: {x: 0.9999999, y: 0.9999999, z: 0.99999964}
- name: B-middleFinger01.R
parentName: B-hand.R
position: {x: -0.00928522, y: 0.1318378, z: -0.0089382}
rotation: {x: -0.004700204, y: -0.0032572027, z: -0.001801642, w: 0.99998206}
scale: {x: 1.0000006, y: 0.9999997, z: 0.99999917}
- name: B-middleFinger02.R
parentName: B-middleFinger01.R
position: {x: -0.0000003849299, y: 0.048716273, z: -0.0000001691299}
rotation: {x: 0.039366316, y: 0.04573892, z: 0.00377753, w: 0.9981703}
scale: {x: 0.9999997, y: 1.0000004, z: 1}
- name: B-middleFinger03.R
parentName: B-middleFinger02.R
position: {x: -0.00000039262213, y: 0.035888083, z: 0.00000029152696}
rotation: {x: 0.0049846717, y: -0.02122791, z: -0.0063242065, w: 0.99974227}
scale: {x: 0.99999964, y: 0.99999994, z: 1.0000002}
- name: B-ringFinger01.R
parentName: B-hand.R
position: {x: 0.016020812, y: 0.1283572, z: -0.005707851}
rotation: {x: -0.0071167736, y: 0.0017728558, z: -0.036400504, w: 0.9993104}
scale: {x: 1.0000005, y: 0.9999992, z: 0.9999996}
- name: B-ringFinger02.R
parentName: B-ringFinger01.R
position: {x: 0.00000047158898, y: 0.045192316, z: 0.00000021597218}
rotation: {x: 0.037958622, y: -0.0021153935, z: 0.012520862, w: 0.9991986}
scale: {x: 0.99999946, y: 1.0000005, z: 0.9999997}
- name: B-ringFinger03.R
parentName: B-ringFinger02.R
position: {x: -0.0000004720245, y: 0.034694634, z: 0.00000008820079}
rotation: {x: 0.02091165, y: -0.04065229, z: -0.015794862, w: 0.99882966}
scale: {x: 1.0000002, y: 0.99999976, z: 0.9999997}
- name: B-pinky01.R
parentName: B-hand.R
position: {x: 0.041580904, y: 0.119742304, z: -0.0024299922}
rotation: {x: -0.011731888, y: -0.016481936, z: -0.04421447, w: 0.9988172}
scale: {x: 1.0000002, y: 0.9999994, z: 0.99999917}
- name: B-pinky02.R
parentName: B-pinky01.R
position: {x: 0.0000007804244, y: 0.03832724, z: 0.00000044214514}
rotation: {x: 0.039002027, y: 0.011177708, z: 0.009234122, w: 0.99913394}
scale: {x: 1.0000002, y: 1.0000006, z: 1.0000002}
- name: B-pinky03.R
parentName: B-pinky02.R
position: {x: -0.000000269953, y: 0.03220071, z: -0.0000005856981}
rotation: {x: 0.022101695, y: -0.02182341, z: 0.009210792, w: 0.99947506}
scale: {x: 1.0000005, y: 0.99999994, z: 1.0000007}
- name: B-thumb01.R
parentName: B-hand.R
position: {x: -0.039809253, y: 0.048496302, z: 0.0130518135}
rotation: {x: -0.22471787, y: 0.63045275, z: 0.29821387, w: 0.6805144}
scale: {x: 0.99999946, y: 1.0000002, z: 1.0000005}
- name: B-thumb02.R
parentName: B-thumb01.R
position: {x: 0.00000020260806, y: 0.047178134, z: 0.000000160123}
rotation: {x: 0.038173996, y: 0.013301423, z: -0.008042345, w: 0.9991502}
scale: {x: 1.0000007, y: 0.9999997, z: 0.9999999}
- name: B-thumb03.R
parentName: B-thumb02.R
position: {x: -0.00000069069114, y: 0.03520854, z: 0.00000004046409}
rotation: {x: -0.060352694, y: 0.014396386, z: 0.0074255248, w: 0.9980457}
scale: {x: 0.9999995, y: 1.0000004, z: 1}
- name: B-neck
parentName: B-chest
position: {x: -0, y: 0.27081212, z: 0.0000007058524}
rotation: {x: 0.105346866, y: 0, z: -0, w: 0.99443555}
scale: {x: 1, y: 0.9999997, z: 1.0000007}
- name: B-head
parentName: B-neck
position: {x: -0, y: 0.07409704, z: 0.00000025054106}
rotation: {x: -0.069990024, y: 0, z: -0, w: 0.9975477}
scale: {x: 1, y: 1.0000006, z: 0.99999964}
- name: B-jaw
parentName: B-head
position: {x: -0, y: 0, z: 0}
rotation: {x: 0.70698464, y: 0.000007072379, z: -0.00000706994, w: 0.7072289}
scale: {x: 1, y: 1, z: 1}
- name: B-shoulder.L
parentName: B-chest
position: {x: -0, y: 0.19125995, z: -0.005656177}
rotation: {x: -0.5165571, y: 0.44464028, z: 0.47738382, w: 0.5545886}
scale: {x: 0.9999998, y: 0.9999995, z: 1.0000002}
- name: B-upperArm.L
parentName: B-shoulder.L
position: {x: 0.00000040656337, y: 0.16193385, z: -0.0000008664629}
rotation: {x: 0.033948872, y: -0.70908755, z: 0.08334149, w: 0.69935447}
scale: {x: 0.9999998, y: 1.0000002, z: 0.9999999}
- name: B-forearm.L
parentName: B-upperArm.L
position: {x: 0.000000097359035, y: 0.2341381, z: 0.00000030291466}
rotation: {x: 0.0017385628, y: 0.0004205673, z: -0.0032047313, w: 0.99999326}
scale: {x: 0.99999994, y: 1.0000004, z: 1.0000001}
- name: B-hand.L
parentName: B-forearm.L
position: {x: 0.00000052406216, y: 0.1959644, z: -0.0000011816531}
rotation: {x: 0.013386631, y: -0.70541465, z: -0.032826252, w: 0.7079078}
scale: {x: 0.99999994, y: 0.9999992, z: 0.9999996}
- name: B-handProp.L
parentName: B-hand.L
position: {x: -0.0029615294, y: 0.10533054, z: 0.02260892}
rotation: {x: 0.67608327, y: 0.73659164, z: -0.013668119, w: 0.012545332}
scale: {x: 1.0000006, y: 0.99999946, z: 1.0000006}
- name: B-indexFinger01.L
parentName: B-hand.L
position: {x: 0.03605161, y: 0.13202417, z: -0.0022375062}
rotation: {x: 0.019054513, y: 0.014957919, z: -0.03131587, w: 0.99921596}
scale: {x: 1.0000004, y: 0.9999998, z: 1.0000002}
- name: B-indexFinger02.L
parentName: B-indexFinger01.L
position: {x: 0.00000072554116, y: 0.04675823, z: -0.0000005109258}
rotation: {x: 0.04075494, y: -0.02876944, z: 0.0030826945, w: 0.9987502}
scale: {x: 1.0000001, y: 1.0000002, z: 1.0000002}
- name: B-indexFinger03.L
parentName: B-indexFinger02.L
position: {x: -0.00000009920999, y: 0.034652077, z: 0.00000023013986}
rotation: {x: -0.0062364372, y: -0.004023549, z: 0.010918792, w: 0.99991286}
scale: {x: 0.9999998, y: 1.0000008, z: 0.9999995}
- name: B-middleFinger01.L
parentName: B-hand.L
position: {x: 0.00928522, y: 0.13183793, z: -0.008938214}
rotation: {x: -0.004700207, y: 0.0032570793, z: 0.0018007505, w: 0.99998206}
scale: {x: 1.0000007, y: 0.9999999, z: 1.0000001}
- name: B-middleFinger02.L
parentName: B-middleFinger01.L
position: {x: 0.00000028786184, y: 0.048716314, z: -0.00000017087451}
rotation: {x: 0.039368037, y: -0.045739666, z: -0.0037847473, w: 0.9981702}
scale: {x: 0.99999976, y: 1.000001, z: 1.0000006}
- name: B-middleFinger03.L
parentName: B-middleFinger02.L
position: {x: -0.00000066842983, y: 0.035888, z: 0.00000028642995}
rotation: {x: 0.0049827034, y: 0.021227859, z: 0.0063241003, w: 0.99974227}
scale: {x: 0.9999996, y: 0.99999905, z: 0.99999934}
- name: B-ringFinger01.L
parentName: B-hand.L
position: {x: -0.016021809, y: 0.12835726, z: -0.005707858}
rotation: {x: -0.007116776, y: -0.0017729683, z: 0.036399588, w: 0.99931043}
scale: {x: 1.0000005, y: 1.0000002, z: 1.0000006}
- name: B-ringFinger02.L
parentName: B-ringFinger01.L
position: {x: 0.00000043795694, y: 0.04519233, z: 0.00000021050154}
rotation: {x: 0.037963506, y: 0.0021157071, z: -0.01252746, w: 0.9991984}
scale: {x: 0.9999995, y: 0.99999964, z: 0.9999996}
- name: B-ringFinger03.L
parentName: B-ringFinger02.L
position: {x: 0.00000034561023, y: 0.03469565, z: -0.00000007648653}
rotation: {x: 0.020911071, y: 0.04065225, z: 0.015794758, w: 0.99882966}
scale: {x: 1.0000001, y: 1.0000005, z: 0.9999997}
- name: B-pinky01.L
parentName: B-hand.L
position: {x: -0.041581903, y: 0.119742356, z: -0.0024299957}
rotation: {x: -0.01172906, y: 0.01648238, z: 0.0442254, w: 0.9988167}
scale: {x: 1.0000002, y: 1.0000004, z: 1.0000002}
- name: B-pinky02.L
parentName: B-pinky01.L
position: {x: 0.00000014151807, y: 0.03832722, z: 0.00000047056287}
rotation: {x: 0.039005004, y: -0.011177422, z: -0.009239738, w: 0.99913377}
scale: {x: 1.0000002, y: 0.99999946, z: 1.0000001}
- name: B-pinky03.L
parentName: B-pinky02.L
position: {x: 0.000000233103, y: 0.032200746, z: -0.00000055902217}
rotation: {x: 0.022101717, y: 0.02182328, z: -0.009211465, w: 0.99947506}
scale: {x: 0.9999995, y: 1, z: 0.99999964}
- name: B-thumb01.L
parentName: B-hand.L
position: {x: 0.03980834, y: 0.048495278, z: 0.013051865}
rotation: {x: -0.2247114, y: -0.6304557, z: -0.2982149, w: 0.6805132}
scale: {x: 1.0000005, y: 1, z: 1.0000005}
- name: B-thumb02.L
parentName: B-thumb01.L
position: {x: -0.0000007063521, y: 0.047179468, z: -0.00000013365789}
rotation: {x: 0.038171936, y: -0.013301728, z: 0.008042519, w: 0.9991503}
scale: {x: 1.0000004, y: 1, z: 0.9999994}
- name: B-thumb03.L
parentName: B-thumb02.L
position: {x: 0.0000007190916, y: 0.035208564, z: 0.00000017922088}
rotation: {x: -0.06035389, y: -0.014396597, z: -0.007425322, w: 0.9980456}
scale: {x: 0.9999992, y: 0.99999994, z: 1.0000001}
- name: B-thigh.L
parentName: B-hips
position: {x: -0.096950985, y: -0.05446949, z: 0.0020414153}
rotation: {x: 0.9977441, y: 0.011110197, z: -0.0039620763, w: 0.066088475}
scale: {x: 1.0000002, y: 0.9999997, z: 1.000001}
- name: B-shin.L
parentName: B-thigh.L
position: {x: 0.00000018468991, y: 0.41111633, z: 0.0000005281011}
rotation: {x: 0.067057244, y: -0.00057845906, z: 0.011617889, w: 0.9976813}
scale: {x: 0.9999997, y: 1.0000002, z: 0.99999964}
- name: B-foot.L
parentName: B-shin.L
position: {x: -0.00000017405802, y: 0.3880767, z: -0.00000019306846}
rotation: {x: -0.5354999, y: 0.004330197, z: 0.0016612022, w: 0.84452266}
scale: {x: 1.0000001, y: 0.9999997, z: 0.99999976}
- name: B-toe.L
parentName: B-foot.L
position: {x: -0.00000027025197, y: 0.17254004, z: -0.000000117418054}
rotation: {x: 0.000012936387, y: 0.9622731, z: -0.27208534, w: 0.00017343421}
scale: {x: 1, y: 1.0000018, z: 0.999999}
- name: B-thigh.R
parentName: B-hips
position: {x: 0.096950985, y: -0.05446959, z: 0.0020404202}
rotation: {x: 0.9977441, y: -0.011109428, z: 0.003967029, w: 0.066088304}
scale: {x: 1.0000004, y: 0.99999976, z: 1.000008}
- name: B-shin.R
parentName: B-thigh.R
position: {x: 0.0000005496826, y: 0.41111633, z: -0.00000065481464}
rotation: {x: 0.06705632, y: 0.0005783735, z: -0.011616509, w: 0.99768144}
scale: {x: 0.9999997, y: 1.0000002, z: 1.0000007}
- name: B-foot.R
parentName: B-shin.R
position: {x: -0.00000044263592, y: 0.3880767, z: 0.000000107811644}
rotation: {x: -0.53550065, y: -0.0043338453, z: -0.0016630876, w: 0.84452206}
scale: {x: 1, y: 0.9999993, z: 0.99999994}
- name: B-toe.R
parentName: B-foot.R
position: {x: 0.00000074386196, y: 0.17254034, z: 0.00000017937037}
rotation: {x: -0.000012542016, y: 0.96227294, z: -0.27208585, w: -0.00017487761}
scale: {x: 1, y: 1.0000029, z: 0.999997}
armTwist: 0.5
foreArmTwist: 0.5
upperLegTwist: 0.5
legTwist: 0.5
armStretch: 0.05
legStretch: 0.05
feetSpacing: 0
globalScale: 1
rootMotionBoneName:
hasTranslationDoF: 0
hasExtraRoot: 0
skeletonHasParents: 1
lastHumanDescriptionAvatarSource: {fileID: 9000000, guid: 1841c298173cdad4db8df8602c8f1c8d,
type: 3}
autoGenerateAvatarMappingIfUnspecified: 1
animationType: 3
humanoidOversampling: 1
avatarSetup: 2
addHumanoidExtraRootOnlyWhenUsingAvatar: 1
importBlendShapeDeformPercent: 1
remapMaterialsIfMaterialImportModeIsNone: 0
additionalBone: 0
userData:
assetBundleName:
assetBundleVariant:
AssetOrigin:
serializedVersion: 1
productId: 154271
packageName: Human Basic Motions FREE
packageVersion: 2.4.2
assetPath: Assets/Kevin Iglesias/Human Animations/Animations/Female/Movement/Run/HumanF@Run01_ForwardRight.fbx
uploadId: 908942

View file

@ -1,973 +0,0 @@
fileFormatVersion: 2
guid: 435a4728904deaf41a2ea8928e6c2c35
ModelImporter:
serializedVersion: 22200
internalIDToNameTable: []
externalObjects: {}
materials:
materialImportMode: 0
materialName: 0
materialSearch: 1
materialLocation: 1
animations:
legacyGenerateAnimations: 4
bakeSimulation: 0
resampleCurves: 1
optimizeGameObjects: 0
removeConstantScaleCurves: 0
motionNodeName:
animationImportErrors:
animationImportWarnings:
animationRetargetingWarnings:
animationDoRetargetingWarnings: 0
importAnimatedCustomProperties: 0
importConstraints: 0
animationCompression: 0
animationRotationError: 0.5
animationPositionError: 0.5
animationScaleError: 0.5
animationWrapMode: 0
extraExposedTransformPaths: []
extraUserProperties: []
clipAnimations:
- serializedVersion: 16
name: HumanF@Run01_Left
takeName: Untitled
internalID: 3094330708855449807
firstFrame: 0
lastFrame: 18
wrapMode: 0
orientationOffsetY: 0
level: 0
cycleOffset: 0
loop: 0
hasAdditiveReferencePose: 0
loopTime: 1
loopBlend: 0
loopBlendOrientation: 1
loopBlendPositionY: 1
loopBlendPositionXZ: 1
keepOriginalOrientation: 1
keepOriginalPositionY: 1
keepOriginalPositionXZ: 1
heightFromFeet: 0
mirror: 0
bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
curves: []
events: []
transformMask:
- path:
weight: 1
- path: HumanF_BodyMesh
weight: 0
- path: Rig
weight: 1
- path: Rig/B-root
weight: 1
- path: Rig/B-root/B-hips
weight: 1
- path: Rig/B-root/B-hips/B-spine
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck/B-head
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck/B-head/B-jaw
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-handProp.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L/B-indexFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L/B-indexFinger02.L/B-indexFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L/B-middleFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L/B-middleFinger02.L/B-middleFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L/B-pinky02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L/B-pinky02.L/B-pinky03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L/B-ringFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L/B-ringFinger02.L/B-ringFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L/B-thumb02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L/B-thumb02.L/B-thumb03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-handProp.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R/B-indexFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R/B-indexFinger02.R/B-indexFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R/B-middleFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R/B-middleFinger02.R/B-middleFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R/B-pinky02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R/B-pinky02.R/B-pinky03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R/B-ringFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R/B-ringFinger02.R/B-ringFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R/B-thumb02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R/B-thumb02.R/B-thumb03.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L/B-foot.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L/B-foot.L/B-toe.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R/B-foot.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R/B-foot.R/B-toe.R
weight: 1
- path: Rig/B-root/B-spineProxy
weight: 1
maskType: 1
maskSource: {fileID: 31900000, guid: 89527f5525238ee44b3182458d85143a, type: 2}
additiveReferencePoseFrame: 0
isReadable: 0
meshes:
lODScreenPercentages: []
globalScale: 1
meshCompression: 0
addColliders: 0
useSRGBMaterialColor: 1
sortHierarchyByName: 1
importPhysicalCameras: 1
importVisibility: 1
importBlendShapes: 1
importCameras: 1
importLights: 1
nodeNameCollisionStrategy: 1
fileIdsGeneration: 2
swapUVChannels: 0
generateSecondaryUV: 0
useFileUnits: 1
keepQuads: 0
weldVertices: 1
bakeAxisConversion: 0
preserveHierarchy: 1
skinWeightsMode: 0
maxBonesPerVertex: 4
minBoneWeight: 0.001
optimizeBones: 1
meshOptimizationFlags: -1
indexFormat: 0
secondaryUVAngleDistortion: 8
secondaryUVAreaDistortion: 15.000001
secondaryUVHardAngle: 88
secondaryUVMarginMethod: 1
secondaryUVMinLightmapResolution: 40
secondaryUVMinObjectScale: 1
secondaryUVPackMargin: 4
useFileScale: 1
strictVertexDataChecks: 0
tangentSpace:
normalSmoothAngle: 60
normalImportMode: 0
tangentImportMode: 3
normalCalculationMode: 4
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0
blendShapeNormalImportMode: 1
normalSmoothingSource: 0
referencedClips: []
importAnimation: 1
humanDescription:
serializedVersion: 3
human:
- boneName: B-hips
humanName: Hips
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thigh.L
humanName: LeftUpperLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thigh.R
humanName: RightUpperLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shin.L
humanName: LeftLowerLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shin.R
humanName: RightLowerLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-foot.L
humanName: LeftFoot
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-foot.R
humanName: RightFoot
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-spine
humanName: Spine
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-chest
humanName: Chest
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-neck
humanName: Neck
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-head
humanName: Head
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shoulder.L
humanName: LeftShoulder
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shoulder.R
humanName: RightShoulder
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-upperArm.L
humanName: LeftUpperArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-upperArm.R
humanName: RightUpperArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-forearm.L
humanName: LeftLowerArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-forearm.R
humanName: RightLowerArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-hand.L
humanName: LeftHand
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-hand.R
humanName: RightHand
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-toe.L
humanName: LeftToes
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-toe.R
humanName: RightToes
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-jaw
humanName: Jaw
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb01.L
humanName: Left Thumb Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb02.L
humanName: Left Thumb Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb03.L
humanName: Left Thumb Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger01.L
humanName: Left Index Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger02.L
humanName: Left Index Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger03.L
humanName: Left Index Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger01.L
humanName: Left Middle Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger02.L
humanName: Left Middle Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger03.L
humanName: Left Middle Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger01.L
humanName: Left Ring Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger02.L
humanName: Left Ring Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger03.L
humanName: Left Ring Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky01.L
humanName: Left Little Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky02.L
humanName: Left Little Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky03.L
humanName: Left Little Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb01.R
humanName: Right Thumb Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb02.R
humanName: Right Thumb Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb03.R
humanName: Right Thumb Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger01.R
humanName: Right Index Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger02.R
humanName: Right Index Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger03.R
humanName: Right Index Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger01.R
humanName: Right Middle Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger02.R
humanName: Right Middle Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger03.R
humanName: Right Middle Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger01.R
humanName: Right Ring Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger02.R
humanName: Right Ring Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger03.R
humanName: Right Ring Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky01.R
humanName: Right Little Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky02.R
humanName: Right Little Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky03.R
humanName: Right Little Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
skeleton:
- name: Human_DummyModel_F(Clone)
parentName:
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: HumanF_BodyMesh
parentName: Human_DummyModel_F(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Rig
parentName: Human_DummyModel_F(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: B-root
parentName: Rig
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: B-spineProxy
parentName: B-root
position: {x: -0, y: 1.092844, z: 0.029147}
rotation: {x: -0.012905054, y: 0, z: -0, w: 0.99991673}
scale: {x: 1, y: 1.0000001, z: 1.0000001}
- name: B-hips
parentName: B-root
position: {x: -0, y: 0.967712, z: 0.016772}
rotation: {x: 0.04926631, y: 0, z: -0, w: 0.9987857}
scale: {x: 1, y: 1.0000004, z: 1.0000004}
- name: B-spine
parentName: B-hips
position: {x: -0, y: 0.12574437, z: 0.00000011940791}
rotation: {x: -0.062152267, y: 0, z: -0, w: 0.99806666}
scale: {x: 1, y: 0.99999976, z: 0.99999976}
- name: B-chest
parentName: B-spine
position: {x: -0, y: 0.13376056, z: -0.00000077390683}
rotation: {x: -0.02258696, y: 0, z: -0, w: 0.9997449}
scale: {x: 1, y: 0.9999996, z: 0.9999996}
- name: B-shoulder.R
parentName: B-chest
position: {x: -0, y: 0.19125995, z: -0.005656177}
rotation: {x: -0.5165573, y: -0.44464085, z: -0.47738376, w: 0.554588}
scale: {x: 1.0000008, y: 1.0000006, z: 1.0000002}
- name: B-upperArm.R
parentName: B-shoulder.R
position: {x: -0.00000043065853, y: 0.1619337, z: -0.000000866464}
rotation: {x: 0.03406315, y: 0.7090742, z: -0.08345674, w: 0.69934857}
scale: {x: 0.99999976, y: 1, z: 0.99999946}
- name: B-forearm.R
parentName: B-upperArm.R
position: {x: -0.0000005071642, y: 0.23413825, z: 0.0000019611641}
rotation: {x: 0.0013730773, y: -0.00042225965, z: 0.0032032696, w: 0.99999386}
scale: {x: 1.0000001, y: 0.99999964, z: 0.9999996}
- name: B-hand.R
parentName: B-forearm.R
position: {x: -0.000000328232, y: 0.19596381, z: -0.0000008355853}
rotation: {x: 0.013529134, y: 0.7054088, z: 0.032969795, w: 0.70790416}
scale: {x: 0.9999999, y: 1.0000002, z: 1.0000005}
- name: B-handProp.R
parentName: B-hand.R
position: {x: 0.0029605331, y: 0.10533051, z: 0.022608897}
rotation: {x: -0.67608327, y: 0.73659164, z: -0.013668106, w: -0.012545319}
scale: {x: 0.99999964, y: 1.0000005, z: 0.9999996}
- name: B-indexFinger01.R
parentName: B-hand.R
position: {x: -0.036052607, y: 0.13202412, z: -0.0022375023}
rotation: {x: 0.019054495, y: -0.0149580045, z: 0.031315368, w: 0.999216}
scale: {x: 1.0000002, y: 0.99999964, z: 0.9999993}
- name: B-indexFinger02.R
parentName: B-indexFinger01.R
position: {x: 0.00000021708313, y: 0.046758045, z: -0.0000005285747}
rotation: {x: 0.040758472, y: 0.02876925, z: -0.0030862393, w: 0.99875003}
scale: {x: 1, y: 1.0000004, z: 1.0000002}
- name: B-indexFinger03.R
parentName: B-indexFinger02.R
position: {x: 0.000000038075022, y: 0.034652043, z: 0.00000019983679}
rotation: {x: -0.006236443, y: 0.004024028, z: -0.0109188985, w: 0.99991286}
scale: {x: 0.9999999, y: 0.9999999, z: 0.99999964}
- name: B-middleFinger01.R
parentName: B-hand.R
position: {x: -0.00928522, y: 0.1318378, z: -0.0089382}
rotation: {x: -0.004700204, y: -0.0032572027, z: -0.001801642, w: 0.99998206}
scale: {x: 1.0000006, y: 0.9999997, z: 0.99999917}
- name: B-middleFinger02.R
parentName: B-middleFinger01.R
position: {x: -0.0000003849299, y: 0.048716273, z: -0.0000001691299}
rotation: {x: 0.039366316, y: 0.04573892, z: 0.00377753, w: 0.9981703}
scale: {x: 0.9999997, y: 1.0000004, z: 1}
- name: B-middleFinger03.R
parentName: B-middleFinger02.R
position: {x: -0.00000039262213, y: 0.035888083, z: 0.00000029152696}
rotation: {x: 0.0049846717, y: -0.02122791, z: -0.0063242065, w: 0.99974227}
scale: {x: 0.99999964, y: 0.99999994, z: 1.0000002}
- name: B-ringFinger01.R
parentName: B-hand.R
position: {x: 0.016020812, y: 0.1283572, z: -0.005707851}
rotation: {x: -0.0071167736, y: 0.0017728558, z: -0.036400504, w: 0.9993104}
scale: {x: 1.0000005, y: 0.9999992, z: 0.9999996}
- name: B-ringFinger02.R
parentName: B-ringFinger01.R
position: {x: 0.00000047158898, y: 0.045192316, z: 0.00000021597218}
rotation: {x: 0.037958622, y: -0.0021153935, z: 0.012520862, w: 0.9991986}
scale: {x: 0.99999946, y: 1.0000005, z: 0.9999997}
- name: B-ringFinger03.R
parentName: B-ringFinger02.R
position: {x: -0.0000004720245, y: 0.034694634, z: 0.00000008820079}
rotation: {x: 0.02091165, y: -0.04065229, z: -0.015794862, w: 0.99882966}
scale: {x: 1.0000002, y: 0.99999976, z: 0.9999997}
- name: B-pinky01.R
parentName: B-hand.R
position: {x: 0.041580904, y: 0.119742304, z: -0.0024299922}
rotation: {x: -0.011731888, y: -0.016481936, z: -0.04421447, w: 0.9988172}
scale: {x: 1.0000002, y: 0.9999994, z: 0.99999917}
- name: B-pinky02.R
parentName: B-pinky01.R
position: {x: 0.0000007804244, y: 0.03832724, z: 0.00000044214514}
rotation: {x: 0.039002027, y: 0.011177708, z: 0.009234122, w: 0.99913394}
scale: {x: 1.0000002, y: 1.0000006, z: 1.0000002}
- name: B-pinky03.R
parentName: B-pinky02.R
position: {x: -0.000000269953, y: 0.03220071, z: -0.0000005856981}
rotation: {x: 0.022101695, y: -0.02182341, z: 0.009210792, w: 0.99947506}
scale: {x: 1.0000005, y: 0.99999994, z: 1.0000007}
- name: B-thumb01.R
parentName: B-hand.R
position: {x: -0.039809253, y: 0.048496302, z: 0.0130518135}
rotation: {x: -0.22471787, y: 0.63045275, z: 0.29821387, w: 0.6805144}
scale: {x: 0.99999946, y: 1.0000002, z: 1.0000005}
- name: B-thumb02.R
parentName: B-thumb01.R
position: {x: 0.00000020260806, y: 0.047178134, z: 0.000000160123}
rotation: {x: 0.038173996, y: 0.013301423, z: -0.008042345, w: 0.9991502}
scale: {x: 1.0000007, y: 0.9999997, z: 0.9999999}
- name: B-thumb03.R
parentName: B-thumb02.R
position: {x: -0.00000069069114, y: 0.03520854, z: 0.00000004046409}
rotation: {x: -0.060352694, y: 0.014396386, z: 0.0074255248, w: 0.9980457}
scale: {x: 0.9999995, y: 1.0000004, z: 1}
- name: B-neck
parentName: B-chest
position: {x: -0, y: 0.27081212, z: 0.0000007058524}
rotation: {x: 0.105346866, y: 0, z: -0, w: 0.99443555}
scale: {x: 1, y: 0.9999997, z: 1.0000007}
- name: B-head
parentName: B-neck
position: {x: -0, y: 0.07409704, z: 0.00000025054106}
rotation: {x: -0.069990024, y: 0, z: -0, w: 0.9975477}
scale: {x: 1, y: 1.0000006, z: 0.99999964}
- name: B-jaw
parentName: B-head
position: {x: -0, y: 0, z: 0}
rotation: {x: 0.70698464, y: 0.000007072379, z: -0.00000706994, w: 0.7072289}
scale: {x: 1, y: 1, z: 1}
- name: B-shoulder.L
parentName: B-chest
position: {x: -0, y: 0.19125995, z: -0.005656177}
rotation: {x: -0.5165571, y: 0.44464028, z: 0.47738382, w: 0.5545886}
scale: {x: 0.9999998, y: 0.9999995, z: 1.0000002}
- name: B-upperArm.L
parentName: B-shoulder.L
position: {x: 0.00000040656337, y: 0.16193385, z: -0.0000008664629}
rotation: {x: 0.033948872, y: -0.70908755, z: 0.08334149, w: 0.69935447}
scale: {x: 0.9999998, y: 1.0000002, z: 0.9999999}
- name: B-forearm.L
parentName: B-upperArm.L
position: {x: 0.000000097359035, y: 0.2341381, z: 0.00000030291466}
rotation: {x: 0.0017385628, y: 0.0004205673, z: -0.0032047313, w: 0.99999326}
scale: {x: 0.99999994, y: 1.0000004, z: 1.0000001}
- name: B-hand.L
parentName: B-forearm.L
position: {x: 0.00000052406216, y: 0.1959644, z: -0.0000011816531}
rotation: {x: 0.013386631, y: -0.70541465, z: -0.032826252, w: 0.7079078}
scale: {x: 0.99999994, y: 0.9999992, z: 0.9999996}
- name: B-handProp.L
parentName: B-hand.L
position: {x: -0.0029615294, y: 0.10533054, z: 0.02260892}
rotation: {x: 0.67608327, y: 0.73659164, z: -0.013668119, w: 0.012545332}
scale: {x: 1.0000006, y: 0.99999946, z: 1.0000006}
- name: B-indexFinger01.L
parentName: B-hand.L
position: {x: 0.03605161, y: 0.13202417, z: -0.0022375062}
rotation: {x: 0.019054513, y: 0.014957919, z: -0.03131587, w: 0.99921596}
scale: {x: 1.0000004, y: 0.9999998, z: 1.0000002}
- name: B-indexFinger02.L
parentName: B-indexFinger01.L
position: {x: 0.00000072554116, y: 0.04675823, z: -0.0000005109258}
rotation: {x: 0.04075494, y: -0.02876944, z: 0.0030826945, w: 0.9987502}
scale: {x: 1.0000001, y: 1.0000002, z: 1.0000002}
- name: B-indexFinger03.L
parentName: B-indexFinger02.L
position: {x: -0.00000009920999, y: 0.034652077, z: 0.00000023013986}
rotation: {x: -0.0062364372, y: -0.004023549, z: 0.010918792, w: 0.99991286}
scale: {x: 0.9999998, y: 1.0000008, z: 0.9999995}
- name: B-middleFinger01.L
parentName: B-hand.L
position: {x: 0.00928522, y: 0.13183793, z: -0.008938214}
rotation: {x: -0.004700207, y: 0.0032570793, z: 0.0018007505, w: 0.99998206}
scale: {x: 1.0000007, y: 0.9999999, z: 1.0000001}
- name: B-middleFinger02.L
parentName: B-middleFinger01.L
position: {x: 0.00000028786184, y: 0.048716314, z: -0.00000017087451}
rotation: {x: 0.039368037, y: -0.045739666, z: -0.0037847473, w: 0.9981702}
scale: {x: 0.99999976, y: 1.000001, z: 1.0000006}
- name: B-middleFinger03.L
parentName: B-middleFinger02.L
position: {x: -0.00000066842983, y: 0.035888, z: 0.00000028642995}
rotation: {x: 0.0049827034, y: 0.021227859, z: 0.0063241003, w: 0.99974227}
scale: {x: 0.9999996, y: 0.99999905, z: 0.99999934}
- name: B-ringFinger01.L
parentName: B-hand.L
position: {x: -0.016021809, y: 0.12835726, z: -0.005707858}
rotation: {x: -0.007116776, y: -0.0017729683, z: 0.036399588, w: 0.99931043}
scale: {x: 1.0000005, y: 1.0000002, z: 1.0000006}
- name: B-ringFinger02.L
parentName: B-ringFinger01.L
position: {x: 0.00000043795694, y: 0.04519233, z: 0.00000021050154}
rotation: {x: 0.037963506, y: 0.0021157071, z: -0.01252746, w: 0.9991984}
scale: {x: 0.9999995, y: 0.99999964, z: 0.9999996}
- name: B-ringFinger03.L
parentName: B-ringFinger02.L
position: {x: 0.00000034561023, y: 0.03469565, z: -0.00000007648653}
rotation: {x: 0.020911071, y: 0.04065225, z: 0.015794758, w: 0.99882966}
scale: {x: 1.0000001, y: 1.0000005, z: 0.9999997}
- name: B-pinky01.L
parentName: B-hand.L
position: {x: -0.041581903, y: 0.119742356, z: -0.0024299957}
rotation: {x: -0.01172906, y: 0.01648238, z: 0.0442254, w: 0.9988167}
scale: {x: 1.0000002, y: 1.0000004, z: 1.0000002}
- name: B-pinky02.L
parentName: B-pinky01.L
position: {x: 0.00000014151807, y: 0.03832722, z: 0.00000047056287}
rotation: {x: 0.039005004, y: -0.011177422, z: -0.009239738, w: 0.99913377}
scale: {x: 1.0000002, y: 0.99999946, z: 1.0000001}
- name: B-pinky03.L
parentName: B-pinky02.L
position: {x: 0.000000233103, y: 0.032200746, z: -0.00000055902217}
rotation: {x: 0.022101717, y: 0.02182328, z: -0.009211465, w: 0.99947506}
scale: {x: 0.9999995, y: 1, z: 0.99999964}
- name: B-thumb01.L
parentName: B-hand.L
position: {x: 0.03980834, y: 0.048495278, z: 0.013051865}
rotation: {x: -0.2247114, y: -0.6304557, z: -0.2982149, w: 0.6805132}
scale: {x: 1.0000005, y: 1, z: 1.0000005}
- name: B-thumb02.L
parentName: B-thumb01.L
position: {x: -0.0000007063521, y: 0.047179468, z: -0.00000013365789}
rotation: {x: 0.038171936, y: -0.013301728, z: 0.008042519, w: 0.9991503}
scale: {x: 1.0000004, y: 1, z: 0.9999994}
- name: B-thumb03.L
parentName: B-thumb02.L
position: {x: 0.0000007190916, y: 0.035208564, z: 0.00000017922088}
rotation: {x: -0.06035389, y: -0.014396597, z: -0.007425322, w: 0.9980456}
scale: {x: 0.9999992, y: 0.99999994, z: 1.0000001}
- name: B-thigh.L
parentName: B-hips
position: {x: -0.096950985, y: -0.05446949, z: 0.0020414153}
rotation: {x: 0.9977441, y: 0.011110197, z: -0.0039620763, w: 0.066088475}
scale: {x: 1.0000002, y: 0.9999997, z: 1.000001}
- name: B-shin.L
parentName: B-thigh.L
position: {x: 0.00000018468991, y: 0.41111633, z: 0.0000005281011}
rotation: {x: 0.067057244, y: -0.00057845906, z: 0.011617889, w: 0.9976813}
scale: {x: 0.9999997, y: 1.0000002, z: 0.99999964}
- name: B-foot.L
parentName: B-shin.L
position: {x: -0.00000017405802, y: 0.3880767, z: -0.00000019306846}
rotation: {x: -0.5354999, y: 0.004330197, z: 0.0016612022, w: 0.84452266}
scale: {x: 1.0000001, y: 0.9999997, z: 0.99999976}
- name: B-toe.L
parentName: B-foot.L
position: {x: -0.00000027025197, y: 0.17254004, z: -0.000000117418054}
rotation: {x: 0.000012936387, y: 0.9622731, z: -0.27208534, w: 0.00017343421}
scale: {x: 1, y: 1.0000018, z: 0.999999}
- name: B-thigh.R
parentName: B-hips
position: {x: 0.096950985, y: -0.05446959, z: 0.0020404202}
rotation: {x: 0.9977441, y: -0.011109428, z: 0.003967029, w: 0.066088304}
scale: {x: 1.0000004, y: 0.99999976, z: 1.000008}
- name: B-shin.R
parentName: B-thigh.R
position: {x: 0.0000005496826, y: 0.41111633, z: -0.00000065481464}
rotation: {x: 0.06705632, y: 0.0005783735, z: -0.011616509, w: 0.99768144}
scale: {x: 0.9999997, y: 1.0000002, z: 1.0000007}
- name: B-foot.R
parentName: B-shin.R
position: {x: -0.00000044263592, y: 0.3880767, z: 0.000000107811644}
rotation: {x: -0.53550065, y: -0.0043338453, z: -0.0016630876, w: 0.84452206}
scale: {x: 1, y: 0.9999993, z: 0.99999994}
- name: B-toe.R
parentName: B-foot.R
position: {x: 0.00000074386196, y: 0.17254034, z: 0.00000017937037}
rotation: {x: -0.000012542016, y: 0.96227294, z: -0.27208585, w: -0.00017487761}
scale: {x: 1, y: 1.0000029, z: 0.999997}
armTwist: 0.5
foreArmTwist: 0.5
upperLegTwist: 0.5
legTwist: 0.5
armStretch: 0.05
legStretch: 0.05
feetSpacing: 0
globalScale: 1
rootMotionBoneName:
hasTranslationDoF: 0
hasExtraRoot: 0
skeletonHasParents: 1
lastHumanDescriptionAvatarSource: {fileID: 9000000, guid: 1841c298173cdad4db8df8602c8f1c8d,
type: 3}
autoGenerateAvatarMappingIfUnspecified: 1
animationType: 3
humanoidOversampling: 1
avatarSetup: 2
addHumanoidExtraRootOnlyWhenUsingAvatar: 1
importBlendShapeDeformPercent: 1
remapMaterialsIfMaterialImportModeIsNone: 0
additionalBone: 0
userData:
assetBundleName:
assetBundleVariant:
AssetOrigin:
serializedVersion: 1
productId: 154271
packageName: Human Basic Motions FREE
packageVersion: 2.4.2
assetPath: Assets/Kevin Iglesias/Human Animations/Animations/Female/Movement/Run/HumanF@Run01_Left.fbx
uploadId: 908942

View file

@ -1,973 +0,0 @@
fileFormatVersion: 2
guid: e4554e344c29aeb4087271d927e625f2
ModelImporter:
serializedVersion: 22200
internalIDToNameTable: []
externalObjects: {}
materials:
materialImportMode: 0
materialName: 0
materialSearch: 1
materialLocation: 1
animations:
legacyGenerateAnimations: 4
bakeSimulation: 0
resampleCurves: 1
optimizeGameObjects: 0
removeConstantScaleCurves: 0
motionNodeName:
animationImportErrors:
animationImportWarnings:
animationRetargetingWarnings:
animationDoRetargetingWarnings: 0
importAnimatedCustomProperties: 0
importConstraints: 0
animationCompression: 0
animationRotationError: 0.5
animationPositionError: 0.5
animationScaleError: 0.5
animationWrapMode: 0
extraExposedTransformPaths: []
extraUserProperties: []
clipAnimations:
- serializedVersion: 16
name: HumanF@Run01_Right
takeName: Untitled
internalID: 3094330708855449807
firstFrame: 0
lastFrame: 18
wrapMode: 0
orientationOffsetY: 0
level: 0
cycleOffset: 0
loop: 0
hasAdditiveReferencePose: 0
loopTime: 1
loopBlend: 0
loopBlendOrientation: 1
loopBlendPositionY: 1
loopBlendPositionXZ: 1
keepOriginalOrientation: 1
keepOriginalPositionY: 1
keepOriginalPositionXZ: 1
heightFromFeet: 0
mirror: 0
bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
curves: []
events: []
transformMask:
- path:
weight: 1
- path: HumanF_BodyMesh
weight: 0
- path: Rig
weight: 1
- path: Rig/B-root
weight: 1
- path: Rig/B-root/B-hips
weight: 1
- path: Rig/B-root/B-hips/B-spine
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck/B-head
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck/B-head/B-jaw
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-handProp.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L/B-indexFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L/B-indexFinger02.L/B-indexFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L/B-middleFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L/B-middleFinger02.L/B-middleFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L/B-pinky02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L/B-pinky02.L/B-pinky03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L/B-ringFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L/B-ringFinger02.L/B-ringFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L/B-thumb02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L/B-thumb02.L/B-thumb03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-handProp.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R/B-indexFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R/B-indexFinger02.R/B-indexFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R/B-middleFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R/B-middleFinger02.R/B-middleFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R/B-pinky02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R/B-pinky02.R/B-pinky03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R/B-ringFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R/B-ringFinger02.R/B-ringFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R/B-thumb02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R/B-thumb02.R/B-thumb03.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L/B-foot.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L/B-foot.L/B-toe.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R/B-foot.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R/B-foot.R/B-toe.R
weight: 1
- path: Rig/B-root/B-spineProxy
weight: 1
maskType: 1
maskSource: {fileID: 31900000, guid: 89527f5525238ee44b3182458d85143a, type: 2}
additiveReferencePoseFrame: 0
isReadable: 0
meshes:
lODScreenPercentages: []
globalScale: 1
meshCompression: 0
addColliders: 0
useSRGBMaterialColor: 1
sortHierarchyByName: 1
importPhysicalCameras: 1
importVisibility: 1
importBlendShapes: 1
importCameras: 1
importLights: 1
nodeNameCollisionStrategy: 1
fileIdsGeneration: 2
swapUVChannels: 0
generateSecondaryUV: 0
useFileUnits: 1
keepQuads: 0
weldVertices: 1
bakeAxisConversion: 0
preserveHierarchy: 1
skinWeightsMode: 0
maxBonesPerVertex: 4
minBoneWeight: 0.001
optimizeBones: 1
meshOptimizationFlags: -1
indexFormat: 0
secondaryUVAngleDistortion: 8
secondaryUVAreaDistortion: 15.000001
secondaryUVHardAngle: 88
secondaryUVMarginMethod: 1
secondaryUVMinLightmapResolution: 40
secondaryUVMinObjectScale: 1
secondaryUVPackMargin: 4
useFileScale: 1
strictVertexDataChecks: 0
tangentSpace:
normalSmoothAngle: 60
normalImportMode: 0
tangentImportMode: 3
normalCalculationMode: 4
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0
blendShapeNormalImportMode: 1
normalSmoothingSource: 0
referencedClips: []
importAnimation: 1
humanDescription:
serializedVersion: 3
human:
- boneName: B-hips
humanName: Hips
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thigh.L
humanName: LeftUpperLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thigh.R
humanName: RightUpperLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shin.L
humanName: LeftLowerLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shin.R
humanName: RightLowerLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-foot.L
humanName: LeftFoot
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-foot.R
humanName: RightFoot
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-spine
humanName: Spine
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-chest
humanName: Chest
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-neck
humanName: Neck
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-head
humanName: Head
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shoulder.L
humanName: LeftShoulder
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shoulder.R
humanName: RightShoulder
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-upperArm.L
humanName: LeftUpperArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-upperArm.R
humanName: RightUpperArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-forearm.L
humanName: LeftLowerArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-forearm.R
humanName: RightLowerArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-hand.L
humanName: LeftHand
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-hand.R
humanName: RightHand
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-toe.L
humanName: LeftToes
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-toe.R
humanName: RightToes
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-jaw
humanName: Jaw
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb01.L
humanName: Left Thumb Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb02.L
humanName: Left Thumb Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb03.L
humanName: Left Thumb Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger01.L
humanName: Left Index Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger02.L
humanName: Left Index Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger03.L
humanName: Left Index Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger01.L
humanName: Left Middle Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger02.L
humanName: Left Middle Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger03.L
humanName: Left Middle Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger01.L
humanName: Left Ring Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger02.L
humanName: Left Ring Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger03.L
humanName: Left Ring Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky01.L
humanName: Left Little Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky02.L
humanName: Left Little Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky03.L
humanName: Left Little Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb01.R
humanName: Right Thumb Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb02.R
humanName: Right Thumb Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb03.R
humanName: Right Thumb Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger01.R
humanName: Right Index Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger02.R
humanName: Right Index Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger03.R
humanName: Right Index Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger01.R
humanName: Right Middle Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger02.R
humanName: Right Middle Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger03.R
humanName: Right Middle Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger01.R
humanName: Right Ring Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger02.R
humanName: Right Ring Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger03.R
humanName: Right Ring Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky01.R
humanName: Right Little Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky02.R
humanName: Right Little Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky03.R
humanName: Right Little Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
skeleton:
- name: Human_DummyModel_F(Clone)
parentName:
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: HumanF_BodyMesh
parentName: Human_DummyModel_F(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Rig
parentName: Human_DummyModel_F(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: B-root
parentName: Rig
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: B-spineProxy
parentName: B-root
position: {x: -0, y: 1.092844, z: 0.029147}
rotation: {x: -0.012905054, y: 0, z: -0, w: 0.99991673}
scale: {x: 1, y: 1.0000001, z: 1.0000001}
- name: B-hips
parentName: B-root
position: {x: -0, y: 0.967712, z: 0.016772}
rotation: {x: 0.04926631, y: 0, z: -0, w: 0.9987857}
scale: {x: 1, y: 1.0000004, z: 1.0000004}
- name: B-spine
parentName: B-hips
position: {x: -0, y: 0.12574437, z: 0.00000011940791}
rotation: {x: -0.062152267, y: 0, z: -0, w: 0.99806666}
scale: {x: 1, y: 0.99999976, z: 0.99999976}
- name: B-chest
parentName: B-spine
position: {x: -0, y: 0.13376056, z: -0.00000077390683}
rotation: {x: -0.02258696, y: 0, z: -0, w: 0.9997449}
scale: {x: 1, y: 0.9999996, z: 0.9999996}
- name: B-shoulder.R
parentName: B-chest
position: {x: -0, y: 0.19125995, z: -0.005656177}
rotation: {x: -0.5165573, y: -0.44464085, z: -0.47738376, w: 0.554588}
scale: {x: 1.0000008, y: 1.0000006, z: 1.0000002}
- name: B-upperArm.R
parentName: B-shoulder.R
position: {x: -0.00000043065853, y: 0.1619337, z: -0.000000866464}
rotation: {x: 0.03406315, y: 0.7090742, z: -0.08345674, w: 0.69934857}
scale: {x: 0.99999976, y: 1, z: 0.99999946}
- name: B-forearm.R
parentName: B-upperArm.R
position: {x: -0.0000005071642, y: 0.23413825, z: 0.0000019611641}
rotation: {x: 0.0013730773, y: -0.00042225965, z: 0.0032032696, w: 0.99999386}
scale: {x: 1.0000001, y: 0.99999964, z: 0.9999996}
- name: B-hand.R
parentName: B-forearm.R
position: {x: -0.000000328232, y: 0.19596381, z: -0.0000008355853}
rotation: {x: 0.013529134, y: 0.7054088, z: 0.032969795, w: 0.70790416}
scale: {x: 0.9999999, y: 1.0000002, z: 1.0000005}
- name: B-handProp.R
parentName: B-hand.R
position: {x: 0.0029605331, y: 0.10533051, z: 0.022608897}
rotation: {x: -0.67608327, y: 0.73659164, z: -0.013668106, w: -0.012545319}
scale: {x: 0.99999964, y: 1.0000005, z: 0.9999996}
- name: B-indexFinger01.R
parentName: B-hand.R
position: {x: -0.036052607, y: 0.13202412, z: -0.0022375023}
rotation: {x: 0.019054495, y: -0.0149580045, z: 0.031315368, w: 0.999216}
scale: {x: 1.0000002, y: 0.99999964, z: 0.9999993}
- name: B-indexFinger02.R
parentName: B-indexFinger01.R
position: {x: 0.00000021708313, y: 0.046758045, z: -0.0000005285747}
rotation: {x: 0.040758472, y: 0.02876925, z: -0.0030862393, w: 0.99875003}
scale: {x: 1, y: 1.0000004, z: 1.0000002}
- name: B-indexFinger03.R
parentName: B-indexFinger02.R
position: {x: 0.000000038075022, y: 0.034652043, z: 0.00000019983679}
rotation: {x: -0.006236443, y: 0.004024028, z: -0.0109188985, w: 0.99991286}
scale: {x: 0.9999999, y: 0.9999999, z: 0.99999964}
- name: B-middleFinger01.R
parentName: B-hand.R
position: {x: -0.00928522, y: 0.1318378, z: -0.0089382}
rotation: {x: -0.004700204, y: -0.0032572027, z: -0.001801642, w: 0.99998206}
scale: {x: 1.0000006, y: 0.9999997, z: 0.99999917}
- name: B-middleFinger02.R
parentName: B-middleFinger01.R
position: {x: -0.0000003849299, y: 0.048716273, z: -0.0000001691299}
rotation: {x: 0.039366316, y: 0.04573892, z: 0.00377753, w: 0.9981703}
scale: {x: 0.9999997, y: 1.0000004, z: 1}
- name: B-middleFinger03.R
parentName: B-middleFinger02.R
position: {x: -0.00000039262213, y: 0.035888083, z: 0.00000029152696}
rotation: {x: 0.0049846717, y: -0.02122791, z: -0.0063242065, w: 0.99974227}
scale: {x: 0.99999964, y: 0.99999994, z: 1.0000002}
- name: B-ringFinger01.R
parentName: B-hand.R
position: {x: 0.016020812, y: 0.1283572, z: -0.005707851}
rotation: {x: -0.0071167736, y: 0.0017728558, z: -0.036400504, w: 0.9993104}
scale: {x: 1.0000005, y: 0.9999992, z: 0.9999996}
- name: B-ringFinger02.R
parentName: B-ringFinger01.R
position: {x: 0.00000047158898, y: 0.045192316, z: 0.00000021597218}
rotation: {x: 0.037958622, y: -0.0021153935, z: 0.012520862, w: 0.9991986}
scale: {x: 0.99999946, y: 1.0000005, z: 0.9999997}
- name: B-ringFinger03.R
parentName: B-ringFinger02.R
position: {x: -0.0000004720245, y: 0.034694634, z: 0.00000008820079}
rotation: {x: 0.02091165, y: -0.04065229, z: -0.015794862, w: 0.99882966}
scale: {x: 1.0000002, y: 0.99999976, z: 0.9999997}
- name: B-pinky01.R
parentName: B-hand.R
position: {x: 0.041580904, y: 0.119742304, z: -0.0024299922}
rotation: {x: -0.011731888, y: -0.016481936, z: -0.04421447, w: 0.9988172}
scale: {x: 1.0000002, y: 0.9999994, z: 0.99999917}
- name: B-pinky02.R
parentName: B-pinky01.R
position: {x: 0.0000007804244, y: 0.03832724, z: 0.00000044214514}
rotation: {x: 0.039002027, y: 0.011177708, z: 0.009234122, w: 0.99913394}
scale: {x: 1.0000002, y: 1.0000006, z: 1.0000002}
- name: B-pinky03.R
parentName: B-pinky02.R
position: {x: -0.000000269953, y: 0.03220071, z: -0.0000005856981}
rotation: {x: 0.022101695, y: -0.02182341, z: 0.009210792, w: 0.99947506}
scale: {x: 1.0000005, y: 0.99999994, z: 1.0000007}
- name: B-thumb01.R
parentName: B-hand.R
position: {x: -0.039809253, y: 0.048496302, z: 0.0130518135}
rotation: {x: -0.22471787, y: 0.63045275, z: 0.29821387, w: 0.6805144}
scale: {x: 0.99999946, y: 1.0000002, z: 1.0000005}
- name: B-thumb02.R
parentName: B-thumb01.R
position: {x: 0.00000020260806, y: 0.047178134, z: 0.000000160123}
rotation: {x: 0.038173996, y: 0.013301423, z: -0.008042345, w: 0.9991502}
scale: {x: 1.0000007, y: 0.9999997, z: 0.9999999}
- name: B-thumb03.R
parentName: B-thumb02.R
position: {x: -0.00000069069114, y: 0.03520854, z: 0.00000004046409}
rotation: {x: -0.060352694, y: 0.014396386, z: 0.0074255248, w: 0.9980457}
scale: {x: 0.9999995, y: 1.0000004, z: 1}
- name: B-neck
parentName: B-chest
position: {x: -0, y: 0.27081212, z: 0.0000007058524}
rotation: {x: 0.105346866, y: 0, z: -0, w: 0.99443555}
scale: {x: 1, y: 0.9999997, z: 1.0000007}
- name: B-head
parentName: B-neck
position: {x: -0, y: 0.07409704, z: 0.00000025054106}
rotation: {x: -0.069990024, y: 0, z: -0, w: 0.9975477}
scale: {x: 1, y: 1.0000006, z: 0.99999964}
- name: B-jaw
parentName: B-head
position: {x: -0, y: 0, z: 0}
rotation: {x: 0.70698464, y: 0.000007072379, z: -0.00000706994, w: 0.7072289}
scale: {x: 1, y: 1, z: 1}
- name: B-shoulder.L
parentName: B-chest
position: {x: -0, y: 0.19125995, z: -0.005656177}
rotation: {x: -0.5165571, y: 0.44464028, z: 0.47738382, w: 0.5545886}
scale: {x: 0.9999998, y: 0.9999995, z: 1.0000002}
- name: B-upperArm.L
parentName: B-shoulder.L
position: {x: 0.00000040656337, y: 0.16193385, z: -0.0000008664629}
rotation: {x: 0.033948872, y: -0.70908755, z: 0.08334149, w: 0.69935447}
scale: {x: 0.9999998, y: 1.0000002, z: 0.9999999}
- name: B-forearm.L
parentName: B-upperArm.L
position: {x: 0.000000097359035, y: 0.2341381, z: 0.00000030291466}
rotation: {x: 0.0017385628, y: 0.0004205673, z: -0.0032047313, w: 0.99999326}
scale: {x: 0.99999994, y: 1.0000004, z: 1.0000001}
- name: B-hand.L
parentName: B-forearm.L
position: {x: 0.00000052406216, y: 0.1959644, z: -0.0000011816531}
rotation: {x: 0.013386631, y: -0.70541465, z: -0.032826252, w: 0.7079078}
scale: {x: 0.99999994, y: 0.9999992, z: 0.9999996}
- name: B-handProp.L
parentName: B-hand.L
position: {x: -0.0029615294, y: 0.10533054, z: 0.02260892}
rotation: {x: 0.67608327, y: 0.73659164, z: -0.013668119, w: 0.012545332}
scale: {x: 1.0000006, y: 0.99999946, z: 1.0000006}
- name: B-indexFinger01.L
parentName: B-hand.L
position: {x: 0.03605161, y: 0.13202417, z: -0.0022375062}
rotation: {x: 0.019054513, y: 0.014957919, z: -0.03131587, w: 0.99921596}
scale: {x: 1.0000004, y: 0.9999998, z: 1.0000002}
- name: B-indexFinger02.L
parentName: B-indexFinger01.L
position: {x: 0.00000072554116, y: 0.04675823, z: -0.0000005109258}
rotation: {x: 0.04075494, y: -0.02876944, z: 0.0030826945, w: 0.9987502}
scale: {x: 1.0000001, y: 1.0000002, z: 1.0000002}
- name: B-indexFinger03.L
parentName: B-indexFinger02.L
position: {x: -0.00000009920999, y: 0.034652077, z: 0.00000023013986}
rotation: {x: -0.0062364372, y: -0.004023549, z: 0.010918792, w: 0.99991286}
scale: {x: 0.9999998, y: 1.0000008, z: 0.9999995}
- name: B-middleFinger01.L
parentName: B-hand.L
position: {x: 0.00928522, y: 0.13183793, z: -0.008938214}
rotation: {x: -0.004700207, y: 0.0032570793, z: 0.0018007505, w: 0.99998206}
scale: {x: 1.0000007, y: 0.9999999, z: 1.0000001}
- name: B-middleFinger02.L
parentName: B-middleFinger01.L
position: {x: 0.00000028786184, y: 0.048716314, z: -0.00000017087451}
rotation: {x: 0.039368037, y: -0.045739666, z: -0.0037847473, w: 0.9981702}
scale: {x: 0.99999976, y: 1.000001, z: 1.0000006}
- name: B-middleFinger03.L
parentName: B-middleFinger02.L
position: {x: -0.00000066842983, y: 0.035888, z: 0.00000028642995}
rotation: {x: 0.0049827034, y: 0.021227859, z: 0.0063241003, w: 0.99974227}
scale: {x: 0.9999996, y: 0.99999905, z: 0.99999934}
- name: B-ringFinger01.L
parentName: B-hand.L
position: {x: -0.016021809, y: 0.12835726, z: -0.005707858}
rotation: {x: -0.007116776, y: -0.0017729683, z: 0.036399588, w: 0.99931043}
scale: {x: 1.0000005, y: 1.0000002, z: 1.0000006}
- name: B-ringFinger02.L
parentName: B-ringFinger01.L
position: {x: 0.00000043795694, y: 0.04519233, z: 0.00000021050154}
rotation: {x: 0.037963506, y: 0.0021157071, z: -0.01252746, w: 0.9991984}
scale: {x: 0.9999995, y: 0.99999964, z: 0.9999996}
- name: B-ringFinger03.L
parentName: B-ringFinger02.L
position: {x: 0.00000034561023, y: 0.03469565, z: -0.00000007648653}
rotation: {x: 0.020911071, y: 0.04065225, z: 0.015794758, w: 0.99882966}
scale: {x: 1.0000001, y: 1.0000005, z: 0.9999997}
- name: B-pinky01.L
parentName: B-hand.L
position: {x: -0.041581903, y: 0.119742356, z: -0.0024299957}
rotation: {x: -0.01172906, y: 0.01648238, z: 0.0442254, w: 0.9988167}
scale: {x: 1.0000002, y: 1.0000004, z: 1.0000002}
- name: B-pinky02.L
parentName: B-pinky01.L
position: {x: 0.00000014151807, y: 0.03832722, z: 0.00000047056287}
rotation: {x: 0.039005004, y: -0.011177422, z: -0.009239738, w: 0.99913377}
scale: {x: 1.0000002, y: 0.99999946, z: 1.0000001}
- name: B-pinky03.L
parentName: B-pinky02.L
position: {x: 0.000000233103, y: 0.032200746, z: -0.00000055902217}
rotation: {x: 0.022101717, y: 0.02182328, z: -0.009211465, w: 0.99947506}
scale: {x: 0.9999995, y: 1, z: 0.99999964}
- name: B-thumb01.L
parentName: B-hand.L
position: {x: 0.03980834, y: 0.048495278, z: 0.013051865}
rotation: {x: -0.2247114, y: -0.6304557, z: -0.2982149, w: 0.6805132}
scale: {x: 1.0000005, y: 1, z: 1.0000005}
- name: B-thumb02.L
parentName: B-thumb01.L
position: {x: -0.0000007063521, y: 0.047179468, z: -0.00000013365789}
rotation: {x: 0.038171936, y: -0.013301728, z: 0.008042519, w: 0.9991503}
scale: {x: 1.0000004, y: 1, z: 0.9999994}
- name: B-thumb03.L
parentName: B-thumb02.L
position: {x: 0.0000007190916, y: 0.035208564, z: 0.00000017922088}
rotation: {x: -0.06035389, y: -0.014396597, z: -0.007425322, w: 0.9980456}
scale: {x: 0.9999992, y: 0.99999994, z: 1.0000001}
- name: B-thigh.L
parentName: B-hips
position: {x: -0.096950985, y: -0.05446949, z: 0.0020414153}
rotation: {x: 0.9977441, y: 0.011110197, z: -0.0039620763, w: 0.066088475}
scale: {x: 1.0000002, y: 0.9999997, z: 1.000001}
- name: B-shin.L
parentName: B-thigh.L
position: {x: 0.00000018468991, y: 0.41111633, z: 0.0000005281011}
rotation: {x: 0.067057244, y: -0.00057845906, z: 0.011617889, w: 0.9976813}
scale: {x: 0.9999997, y: 1.0000002, z: 0.99999964}
- name: B-foot.L
parentName: B-shin.L
position: {x: -0.00000017405802, y: 0.3880767, z: -0.00000019306846}
rotation: {x: -0.5354999, y: 0.004330197, z: 0.0016612022, w: 0.84452266}
scale: {x: 1.0000001, y: 0.9999997, z: 0.99999976}
- name: B-toe.L
parentName: B-foot.L
position: {x: -0.00000027025197, y: 0.17254004, z: -0.000000117418054}
rotation: {x: 0.000012936387, y: 0.9622731, z: -0.27208534, w: 0.00017343421}
scale: {x: 1, y: 1.0000018, z: 0.999999}
- name: B-thigh.R
parentName: B-hips
position: {x: 0.096950985, y: -0.05446959, z: 0.0020404202}
rotation: {x: 0.9977441, y: -0.011109428, z: 0.003967029, w: 0.066088304}
scale: {x: 1.0000004, y: 0.99999976, z: 1.000008}
- name: B-shin.R
parentName: B-thigh.R
position: {x: 0.0000005496826, y: 0.41111633, z: -0.00000065481464}
rotation: {x: 0.06705632, y: 0.0005783735, z: -0.011616509, w: 0.99768144}
scale: {x: 0.9999997, y: 1.0000002, z: 1.0000007}
- name: B-foot.R
parentName: B-shin.R
position: {x: -0.00000044263592, y: 0.3880767, z: 0.000000107811644}
rotation: {x: -0.53550065, y: -0.0043338453, z: -0.0016630876, w: 0.84452206}
scale: {x: 1, y: 0.9999993, z: 0.99999994}
- name: B-toe.R
parentName: B-foot.R
position: {x: 0.00000074386196, y: 0.17254034, z: 0.00000017937037}
rotation: {x: -0.000012542016, y: 0.96227294, z: -0.27208585, w: -0.00017487761}
scale: {x: 1, y: 1.0000029, z: 0.999997}
armTwist: 0.5
foreArmTwist: 0.5
upperLegTwist: 0.5
legTwist: 0.5
armStretch: 0.05
legStretch: 0.05
feetSpacing: 0
globalScale: 1
rootMotionBoneName:
hasTranslationDoF: 0
hasExtraRoot: 0
skeletonHasParents: 1
lastHumanDescriptionAvatarSource: {fileID: 9000000, guid: 1841c298173cdad4db8df8602c8f1c8d,
type: 3}
autoGenerateAvatarMappingIfUnspecified: 1
animationType: 3
humanoidOversampling: 1
avatarSetup: 2
addHumanoidExtraRootOnlyWhenUsingAvatar: 1
importBlendShapeDeformPercent: 1
remapMaterialsIfMaterialImportModeIsNone: 0
additionalBone: 0
userData:
assetBundleName:
assetBundleVariant:
AssetOrigin:
serializedVersion: 1
productId: 154271
packageName: Human Basic Motions FREE
packageVersion: 2.4.2
assetPath: Assets/Kevin Iglesias/Human Animations/Animations/Female/Movement/Run/HumanF@Run01_Right.fbx
uploadId: 908942

View file

@ -1,8 +0,0 @@
fileFormatVersion: 2
guid: b30791e7b86b5fd459b5a1e7524a51ca
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View file

@ -1,974 +0,0 @@
fileFormatVersion: 2
guid: 78375be644e8f3a45bdc574dcc4fdb45
ModelImporter:
serializedVersion: 22200
internalIDToNameTable: []
externalObjects: {}
materials:
materialImportMode: 0
materialName: 0
materialSearch: 1
materialLocation: 1
animations:
legacyGenerateAnimations: 4
bakeSimulation: 0
resampleCurves: 1
optimizeGameObjects: 0
removeConstantScaleCurves: 0
motionNodeName: Rig/B-root
animationImportErrors:
animationImportWarnings:
animationRetargetingWarnings:
animationDoRetargetingWarnings: 0
importAnimatedCustomProperties: 0
importConstraints: 0
animationCompression: 0
animationRotationError: 0.5
animationPositionError: 0.5
animationScaleError: 0.5
animationWrapMode: 0
extraExposedTransformPaths: []
extraUserProperties: []
clipAnimations:
- serializedVersion: 16
name: 'HumanF@Run01_Backward [RM]'
takeName: Untitled
internalID: 3094330708855449807
firstFrame: 0
lastFrame: 18
wrapMode: 0
orientationOffsetY: 0
level: 0
cycleOffset: 0
loop: 0
hasAdditiveReferencePose: 0
loopTime: 1
loopBlend: 0
loopBlendOrientation: 1
loopBlendPositionY: 1
loopBlendPositionXZ: 0
keepOriginalOrientation: 1
keepOriginalPositionY: 1
keepOriginalPositionXZ: 1
heightFromFeet: 0
mirror: 0
bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
curves: []
events: []
transformMask:
- path:
weight: 1
- path: HumanF_BodyMesh
weight: 0
- path: Rig
weight: 1
- path: Rig/B-root
weight: 1
- path: Rig/B-root/B-hips
weight: 1
- path: Rig/B-root/B-hips/B-spine
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck/B-head
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck/B-head/B-jaw
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-handProp.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L/B-indexFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L/B-indexFinger02.L/B-indexFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L/B-middleFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L/B-middleFinger02.L/B-middleFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L/B-pinky02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L/B-pinky02.L/B-pinky03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L/B-ringFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L/B-ringFinger02.L/B-ringFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L/B-thumb02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L/B-thumb02.L/B-thumb03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-handProp.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R/B-indexFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R/B-indexFinger02.R/B-indexFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R/B-middleFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R/B-middleFinger02.R/B-middleFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R/B-pinky02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R/B-pinky02.R/B-pinky03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R/B-ringFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R/B-ringFinger02.R/B-ringFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R/B-thumb02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R/B-thumb02.R/B-thumb03.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L/B-foot.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L/B-foot.L/B-toe.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R/B-foot.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R/B-foot.R/B-toe.R
weight: 1
- path: Rig/B-root/B-spineProxy
weight: 1
maskType: 1
maskSource: {fileID: 31900000, guid: 89527f5525238ee44b3182458d85143a, type: 2}
additiveReferencePoseFrame: 0
isReadable: 0
meshes:
lODScreenPercentages: []
globalScale: 1
meshCompression: 0
addColliders: 0
useSRGBMaterialColor: 1
sortHierarchyByName: 1
importPhysicalCameras: 1
importVisibility: 1
importBlendShapes: 1
importCameras: 1
importLights: 1
nodeNameCollisionStrategy: 1
fileIdsGeneration: 2
swapUVChannels: 0
generateSecondaryUV: 0
useFileUnits: 1
keepQuads: 0
weldVertices: 1
bakeAxisConversion: 0
preserveHierarchy: 1
skinWeightsMode: 0
maxBonesPerVertex: 4
minBoneWeight: 0.001
optimizeBones: 1
meshOptimizationFlags: -1
indexFormat: 0
secondaryUVAngleDistortion: 8
secondaryUVAreaDistortion: 15.000001
secondaryUVHardAngle: 88
secondaryUVMarginMethod: 1
secondaryUVMinLightmapResolution: 40
secondaryUVMinObjectScale: 1
secondaryUVPackMargin: 4
useFileScale: 1
strictVertexDataChecks: 0
tangentSpace:
normalSmoothAngle: 60
normalImportMode: 0
tangentImportMode: 3
normalCalculationMode: 4
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0
blendShapeNormalImportMode: 1
normalSmoothingSource: 0
referencedClips: []
importAnimation: 1
humanDescription:
serializedVersion: 3
human:
- boneName: B-hips
humanName: Hips
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thigh.L
humanName: LeftUpperLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thigh.R
humanName: RightUpperLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shin.L
humanName: LeftLowerLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shin.R
humanName: RightLowerLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-foot.L
humanName: LeftFoot
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-foot.R
humanName: RightFoot
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-spine
humanName: Spine
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-chest
humanName: Chest
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-neck
humanName: Neck
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-head
humanName: Head
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shoulder.L
humanName: LeftShoulder
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shoulder.R
humanName: RightShoulder
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-upperArm.L
humanName: LeftUpperArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-upperArm.R
humanName: RightUpperArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-forearm.L
humanName: LeftLowerArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-forearm.R
humanName: RightLowerArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-hand.L
humanName: LeftHand
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-hand.R
humanName: RightHand
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-toe.L
humanName: LeftToes
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-toe.R
humanName: RightToes
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-jaw
humanName: Jaw
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb01.L
humanName: Left Thumb Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb02.L
humanName: Left Thumb Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb03.L
humanName: Left Thumb Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger01.L
humanName: Left Index Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger02.L
humanName: Left Index Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger03.L
humanName: Left Index Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger01.L
humanName: Left Middle Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger02.L
humanName: Left Middle Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger03.L
humanName: Left Middle Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger01.L
humanName: Left Ring Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger02.L
humanName: Left Ring Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger03.L
humanName: Left Ring Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky01.L
humanName: Left Little Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky02.L
humanName: Left Little Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky03.L
humanName: Left Little Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb01.R
humanName: Right Thumb Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb02.R
humanName: Right Thumb Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb03.R
humanName: Right Thumb Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger01.R
humanName: Right Index Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger02.R
humanName: Right Index Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger03.R
humanName: Right Index Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger01.R
humanName: Right Middle Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger02.R
humanName: Right Middle Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger03.R
humanName: Right Middle Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger01.R
humanName: Right Ring Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger02.R
humanName: Right Ring Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger03.R
humanName: Right Ring Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky01.R
humanName: Right Little Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky02.R
humanName: Right Little Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky03.R
humanName: Right Little Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
skeleton:
- name: Human_DummyModel_F(Clone)
parentName:
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: HumanF_BodyMesh
parentName: Human_DummyModel_F(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Rig
parentName: Human_DummyModel_F(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: B-root
parentName: Rig
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: B-spineProxy
parentName: B-root
position: {x: -0, y: 1.092844, z: 0.029147}
rotation: {x: -0.012905054, y: 0, z: -0, w: 0.99991673}
scale: {x: 1, y: 1.0000001, z: 1.0000001}
- name: B-hips
parentName: B-root
position: {x: -0, y: 0.967712, z: 0.016772}
rotation: {x: 0.04926631, y: 0, z: -0, w: 0.9987857}
scale: {x: 1, y: 1.0000004, z: 1.0000004}
- name: B-spine
parentName: B-hips
position: {x: -0, y: 0.12574437, z: 0.00000011940791}
rotation: {x: -0.062152267, y: 0, z: -0, w: 0.99806666}
scale: {x: 1, y: 0.99999976, z: 0.99999976}
- name: B-chest
parentName: B-spine
position: {x: -0, y: 0.13376056, z: -0.00000077390683}
rotation: {x: -0.02258696, y: 0, z: -0, w: 0.9997449}
scale: {x: 1, y: 0.9999996, z: 0.9999996}
- name: B-shoulder.R
parentName: B-chest
position: {x: -0, y: 0.19125995, z: -0.005656177}
rotation: {x: -0.5165573, y: -0.44464085, z: -0.47738376, w: 0.554588}
scale: {x: 1.0000008, y: 1.0000006, z: 1.0000002}
- name: B-upperArm.R
parentName: B-shoulder.R
position: {x: -0.00000043065853, y: 0.1619337, z: -0.000000866464}
rotation: {x: 0.03406315, y: 0.7090742, z: -0.08345674, w: 0.69934857}
scale: {x: 0.99999976, y: 1, z: 0.99999946}
- name: B-forearm.R
parentName: B-upperArm.R
position: {x: -0.0000005071642, y: 0.23413825, z: 0.0000019611641}
rotation: {x: 0.0013730773, y: -0.00042225965, z: 0.0032032696, w: 0.99999386}
scale: {x: 1.0000001, y: 0.99999964, z: 0.9999996}
- name: B-hand.R
parentName: B-forearm.R
position: {x: -0.000000328232, y: 0.19596381, z: -0.0000008355853}
rotation: {x: 0.013529134, y: 0.7054088, z: 0.032969795, w: 0.70790416}
scale: {x: 0.9999999, y: 1.0000002, z: 1.0000005}
- name: B-handProp.R
parentName: B-hand.R
position: {x: 0.0029605331, y: 0.10533051, z: 0.022608897}
rotation: {x: -0.67608327, y: 0.73659164, z: -0.013668106, w: -0.012545319}
scale: {x: 0.99999964, y: 1.0000005, z: 0.9999996}
- name: B-indexFinger01.R
parentName: B-hand.R
position: {x: -0.036052607, y: 0.13202412, z: -0.0022375023}
rotation: {x: 0.019054495, y: -0.0149580045, z: 0.031315368, w: 0.999216}
scale: {x: 1.0000002, y: 0.99999964, z: 0.9999993}
- name: B-indexFinger02.R
parentName: B-indexFinger01.R
position: {x: 0.00000021708313, y: 0.046758045, z: -0.0000005285747}
rotation: {x: 0.040758472, y: 0.02876925, z: -0.0030862393, w: 0.99875003}
scale: {x: 1, y: 1.0000004, z: 1.0000002}
- name: B-indexFinger03.R
parentName: B-indexFinger02.R
position: {x: 0.000000038075022, y: 0.034652043, z: 0.00000019983679}
rotation: {x: -0.006236443, y: 0.004024028, z: -0.0109188985, w: 0.99991286}
scale: {x: 0.9999999, y: 0.9999999, z: 0.99999964}
- name: B-middleFinger01.R
parentName: B-hand.R
position: {x: -0.00928522, y: 0.1318378, z: -0.0089382}
rotation: {x: -0.004700204, y: -0.0032572027, z: -0.001801642, w: 0.99998206}
scale: {x: 1.0000006, y: 0.9999997, z: 0.99999917}
- name: B-middleFinger02.R
parentName: B-middleFinger01.R
position: {x: -0.0000003849299, y: 0.048716273, z: -0.0000001691299}
rotation: {x: 0.039366316, y: 0.04573892, z: 0.00377753, w: 0.9981703}
scale: {x: 0.9999997, y: 1.0000004, z: 1}
- name: B-middleFinger03.R
parentName: B-middleFinger02.R
position: {x: -0.00000039262213, y: 0.035888083, z: 0.00000029152696}
rotation: {x: 0.0049846717, y: -0.02122791, z: -0.0063242065, w: 0.99974227}
scale: {x: 0.99999964, y: 0.99999994, z: 1.0000002}
- name: B-ringFinger01.R
parentName: B-hand.R
position: {x: 0.016020812, y: 0.1283572, z: -0.005707851}
rotation: {x: -0.0071167736, y: 0.0017728558, z: -0.036400504, w: 0.9993104}
scale: {x: 1.0000005, y: 0.9999992, z: 0.9999996}
- name: B-ringFinger02.R
parentName: B-ringFinger01.R
position: {x: 0.00000047158898, y: 0.045192316, z: 0.00000021597218}
rotation: {x: 0.037958622, y: -0.0021153935, z: 0.012520862, w: 0.9991986}
scale: {x: 0.99999946, y: 1.0000005, z: 0.9999997}
- name: B-ringFinger03.R
parentName: B-ringFinger02.R
position: {x: -0.0000004720245, y: 0.034694634, z: 0.00000008820079}
rotation: {x: 0.02091165, y: -0.04065229, z: -0.015794862, w: 0.99882966}
scale: {x: 1.0000002, y: 0.99999976, z: 0.9999997}
- name: B-pinky01.R
parentName: B-hand.R
position: {x: 0.041580904, y: 0.119742304, z: -0.0024299922}
rotation: {x: -0.011731888, y: -0.016481936, z: -0.04421447, w: 0.9988172}
scale: {x: 1.0000002, y: 0.9999994, z: 0.99999917}
- name: B-pinky02.R
parentName: B-pinky01.R
position: {x: 0.0000007804244, y: 0.03832724, z: 0.00000044214514}
rotation: {x: 0.039002027, y: 0.011177708, z: 0.009234122, w: 0.99913394}
scale: {x: 1.0000002, y: 1.0000006, z: 1.0000002}
- name: B-pinky03.R
parentName: B-pinky02.R
position: {x: -0.000000269953, y: 0.03220071, z: -0.0000005856981}
rotation: {x: 0.022101695, y: -0.02182341, z: 0.009210792, w: 0.99947506}
scale: {x: 1.0000005, y: 0.99999994, z: 1.0000007}
- name: B-thumb01.R
parentName: B-hand.R
position: {x: -0.039809253, y: 0.048496302, z: 0.0130518135}
rotation: {x: -0.22471787, y: 0.63045275, z: 0.29821387, w: 0.6805144}
scale: {x: 0.99999946, y: 1.0000002, z: 1.0000005}
- name: B-thumb02.R
parentName: B-thumb01.R
position: {x: 0.00000020260806, y: 0.047178134, z: 0.000000160123}
rotation: {x: 0.038173996, y: 0.013301423, z: -0.008042345, w: 0.9991502}
scale: {x: 1.0000007, y: 0.9999997, z: 0.9999999}
- name: B-thumb03.R
parentName: B-thumb02.R
position: {x: -0.00000069069114, y: 0.03520854, z: 0.00000004046409}
rotation: {x: -0.060352694, y: 0.014396386, z: 0.0074255248, w: 0.9980457}
scale: {x: 0.9999995, y: 1.0000004, z: 1}
- name: B-neck
parentName: B-chest
position: {x: -0, y: 0.27081212, z: 0.0000007058524}
rotation: {x: 0.105346866, y: 0, z: -0, w: 0.99443555}
scale: {x: 1, y: 0.9999997, z: 1.0000007}
- name: B-head
parentName: B-neck
position: {x: -0, y: 0.07409704, z: 0.00000025054106}
rotation: {x: -0.069990024, y: 0, z: -0, w: 0.9975477}
scale: {x: 1, y: 1.0000006, z: 0.99999964}
- name: B-jaw
parentName: B-head
position: {x: -0, y: 0, z: 0}
rotation: {x: 0.70698464, y: 0.000007072379, z: -0.00000706994, w: 0.7072289}
scale: {x: 1, y: 1, z: 1}
- name: B-shoulder.L
parentName: B-chest
position: {x: -0, y: 0.19125995, z: -0.005656177}
rotation: {x: -0.5165571, y: 0.44464028, z: 0.47738382, w: 0.5545886}
scale: {x: 0.9999998, y: 0.9999995, z: 1.0000002}
- name: B-upperArm.L
parentName: B-shoulder.L
position: {x: 0.00000040656337, y: 0.16193385, z: -0.0000008664629}
rotation: {x: 0.033948872, y: -0.70908755, z: 0.08334149, w: 0.69935447}
scale: {x: 0.9999998, y: 1.0000002, z: 0.9999999}
- name: B-forearm.L
parentName: B-upperArm.L
position: {x: 0.000000097359035, y: 0.2341381, z: 0.00000030291466}
rotation: {x: 0.0017385628, y: 0.0004205673, z: -0.0032047313, w: 0.99999326}
scale: {x: 0.99999994, y: 1.0000004, z: 1.0000001}
- name: B-hand.L
parentName: B-forearm.L
position: {x: 0.00000052406216, y: 0.1959644, z: -0.0000011816531}
rotation: {x: 0.013386631, y: -0.70541465, z: -0.032826252, w: 0.7079078}
scale: {x: 0.99999994, y: 0.9999992, z: 0.9999996}
- name: B-handProp.L
parentName: B-hand.L
position: {x: -0.0029615294, y: 0.10533054, z: 0.02260892}
rotation: {x: 0.67608327, y: 0.73659164, z: -0.013668119, w: 0.012545332}
scale: {x: 1.0000006, y: 0.99999946, z: 1.0000006}
- name: B-indexFinger01.L
parentName: B-hand.L
position: {x: 0.03605161, y: 0.13202417, z: -0.0022375062}
rotation: {x: 0.019054513, y: 0.014957919, z: -0.03131587, w: 0.99921596}
scale: {x: 1.0000004, y: 0.9999998, z: 1.0000002}
- name: B-indexFinger02.L
parentName: B-indexFinger01.L
position: {x: 0.00000072554116, y: 0.04675823, z: -0.0000005109258}
rotation: {x: 0.04075494, y: -0.02876944, z: 0.0030826945, w: 0.9987502}
scale: {x: 1.0000001, y: 1.0000002, z: 1.0000002}
- name: B-indexFinger03.L
parentName: B-indexFinger02.L
position: {x: -0.00000009920999, y: 0.034652077, z: 0.00000023013986}
rotation: {x: -0.0062364372, y: -0.004023549, z: 0.010918792, w: 0.99991286}
scale: {x: 0.9999998, y: 1.0000008, z: 0.9999995}
- name: B-middleFinger01.L
parentName: B-hand.L
position: {x: 0.00928522, y: 0.13183793, z: -0.008938214}
rotation: {x: -0.004700207, y: 0.0032570793, z: 0.0018007505, w: 0.99998206}
scale: {x: 1.0000007, y: 0.9999999, z: 1.0000001}
- name: B-middleFinger02.L
parentName: B-middleFinger01.L
position: {x: 0.00000028786184, y: 0.048716314, z: -0.00000017087451}
rotation: {x: 0.039368037, y: -0.045739666, z: -0.0037847473, w: 0.9981702}
scale: {x: 0.99999976, y: 1.000001, z: 1.0000006}
- name: B-middleFinger03.L
parentName: B-middleFinger02.L
position: {x: -0.00000066842983, y: 0.035888, z: 0.00000028642995}
rotation: {x: 0.0049827034, y: 0.021227859, z: 0.0063241003, w: 0.99974227}
scale: {x: 0.9999996, y: 0.99999905, z: 0.99999934}
- name: B-ringFinger01.L
parentName: B-hand.L
position: {x: -0.016021809, y: 0.12835726, z: -0.005707858}
rotation: {x: -0.007116776, y: -0.0017729683, z: 0.036399588, w: 0.99931043}
scale: {x: 1.0000005, y: 1.0000002, z: 1.0000006}
- name: B-ringFinger02.L
parentName: B-ringFinger01.L
position: {x: 0.00000043795694, y: 0.04519233, z: 0.00000021050154}
rotation: {x: 0.037963506, y: 0.0021157071, z: -0.01252746, w: 0.9991984}
scale: {x: 0.9999995, y: 0.99999964, z: 0.9999996}
- name: B-ringFinger03.L
parentName: B-ringFinger02.L
position: {x: 0.00000034561023, y: 0.03469565, z: -0.00000007648653}
rotation: {x: 0.020911071, y: 0.04065225, z: 0.015794758, w: 0.99882966}
scale: {x: 1.0000001, y: 1.0000005, z: 0.9999997}
- name: B-pinky01.L
parentName: B-hand.L
position: {x: -0.041581903, y: 0.119742356, z: -0.0024299957}
rotation: {x: -0.01172906, y: 0.01648238, z: 0.0442254, w: 0.9988167}
scale: {x: 1.0000002, y: 1.0000004, z: 1.0000002}
- name: B-pinky02.L
parentName: B-pinky01.L
position: {x: 0.00000014151807, y: 0.03832722, z: 0.00000047056287}
rotation: {x: 0.039005004, y: -0.011177422, z: -0.009239738, w: 0.99913377}
scale: {x: 1.0000002, y: 0.99999946, z: 1.0000001}
- name: B-pinky03.L
parentName: B-pinky02.L
position: {x: 0.000000233103, y: 0.032200746, z: -0.00000055902217}
rotation: {x: 0.022101717, y: 0.02182328, z: -0.009211465, w: 0.99947506}
scale: {x: 0.9999995, y: 1, z: 0.99999964}
- name: B-thumb01.L
parentName: B-hand.L
position: {x: 0.03980834, y: 0.048495278, z: 0.013051865}
rotation: {x: -0.2247114, y: -0.6304557, z: -0.2982149, w: 0.6805132}
scale: {x: 1.0000005, y: 1, z: 1.0000005}
- name: B-thumb02.L
parentName: B-thumb01.L
position: {x: -0.0000007063521, y: 0.047179468, z: -0.00000013365789}
rotation: {x: 0.038171936, y: -0.013301728, z: 0.008042519, w: 0.9991503}
scale: {x: 1.0000004, y: 1, z: 0.9999994}
- name: B-thumb03.L
parentName: B-thumb02.L
position: {x: 0.0000007190916, y: 0.035208564, z: 0.00000017922088}
rotation: {x: -0.06035389, y: -0.014396597, z: -0.007425322, w: 0.9980456}
scale: {x: 0.9999992, y: 0.99999994, z: 1.0000001}
- name: B-thigh.L
parentName: B-hips
position: {x: -0.096950985, y: -0.05446949, z: 0.0020414153}
rotation: {x: 0.9977441, y: 0.011110197, z: -0.0039620763, w: 0.066088475}
scale: {x: 1.0000002, y: 0.9999997, z: 1.000001}
- name: B-shin.L
parentName: B-thigh.L
position: {x: 0.00000018468991, y: 0.41111633, z: 0.0000005281011}
rotation: {x: 0.067057244, y: -0.00057845906, z: 0.011617889, w: 0.9976813}
scale: {x: 0.9999997, y: 1.0000002, z: 0.99999964}
- name: B-foot.L
parentName: B-shin.L
position: {x: -0.00000017405802, y: 0.3880767, z: -0.00000019306846}
rotation: {x: -0.5354999, y: 0.004330197, z: 0.0016612022, w: 0.84452266}
scale: {x: 1.0000001, y: 0.9999997, z: 0.99999976}
- name: B-toe.L
parentName: B-foot.L
position: {x: -0.00000027025197, y: 0.17254004, z: -0.000000117418054}
rotation: {x: 0.000012936387, y: 0.9622731, z: -0.27208534, w: 0.00017343421}
scale: {x: 1, y: 1.0000018, z: 0.999999}
- name: B-thigh.R
parentName: B-hips
position: {x: 0.096950985, y: -0.05446959, z: 0.0020404202}
rotation: {x: 0.9977441, y: -0.011109428, z: 0.003967029, w: 0.066088304}
scale: {x: 1.0000004, y: 0.99999976, z: 1.000008}
- name: B-shin.R
parentName: B-thigh.R
position: {x: 0.0000005496826, y: 0.41111633, z: -0.00000065481464}
rotation: {x: 0.06705632, y: 0.0005783735, z: -0.011616509, w: 0.99768144}
scale: {x: 0.9999997, y: 1.0000002, z: 1.0000007}
- name: B-foot.R
parentName: B-shin.R
position: {x: -0.00000044263592, y: 0.3880767, z: 0.000000107811644}
rotation: {x: -0.53550065, y: -0.0043338453, z: -0.0016630876, w: 0.84452206}
scale: {x: 1, y: 0.9999993, z: 0.99999994}
- name: B-toe.R
parentName: B-foot.R
position: {x: 0.00000074386196, y: 0.17254034, z: 0.00000017937037}
rotation: {x: -0.000012542016, y: 0.96227294, z: -0.27208585, w: -0.00017487761}
scale: {x: 1, y: 1.0000029, z: 0.999997}
armTwist: 0.5
foreArmTwist: 0.5
upperLegTwist: 0.5
legTwist: 0.5
armStretch: 0.05
legStretch: 0.05
feetSpacing: 0
globalScale: 1
rootMotionBoneName:
hasTranslationDoF: 0
hasExtraRoot: 0
skeletonHasParents: 1
lastHumanDescriptionAvatarSource: {fileID: 9000000, guid: 1841c298173cdad4db8df8602c8f1c8d,
type: 3}
autoGenerateAvatarMappingIfUnspecified: 1
animationType: 3
humanoidOversampling: 1
avatarSetup: 2
addHumanoidExtraRootOnlyWhenUsingAvatar: 1
importBlendShapeDeformPercent: 1
remapMaterialsIfMaterialImportModeIsNone: 0
additionalBone: 0
userData:
assetBundleName:
assetBundleVariant:
AssetOrigin:
serializedVersion: 1
productId: 154271
packageName: Human Basic Motions FREE
packageVersion: 2.4.2
assetPath: Assets/Kevin Iglesias/Human Animations/Animations/Female/Movement/Run/RootMotion/HumanF@Run01_Backward
[RM].fbx
uploadId: 908942

View file

@ -1,974 +0,0 @@
fileFormatVersion: 2
guid: 06db7ead6cfa3054aaa7cf24fa1d249b
ModelImporter:
serializedVersion: 22200
internalIDToNameTable: []
externalObjects: {}
materials:
materialImportMode: 0
materialName: 0
materialSearch: 1
materialLocation: 1
animations:
legacyGenerateAnimations: 4
bakeSimulation: 0
resampleCurves: 1
optimizeGameObjects: 0
removeConstantScaleCurves: 0
motionNodeName: Rig/B-root
animationImportErrors:
animationImportWarnings:
animationRetargetingWarnings:
animationDoRetargetingWarnings: 0
importAnimatedCustomProperties: 0
importConstraints: 0
animationCompression: 0
animationRotationError: 0.5
animationPositionError: 0.5
animationScaleError: 0.5
animationWrapMode: 0
extraExposedTransformPaths: []
extraUserProperties: []
clipAnimations:
- serializedVersion: 16
name: 'HumanF@Run01_BackwardLeft [RM]'
takeName: Untitled
internalID: 3094330708855449807
firstFrame: 0
lastFrame: 18
wrapMode: 0
orientationOffsetY: 0
level: 0
cycleOffset: 0
loop: 0
hasAdditiveReferencePose: 0
loopTime: 1
loopBlend: 0
loopBlendOrientation: 1
loopBlendPositionY: 1
loopBlendPositionXZ: 0
keepOriginalOrientation: 1
keepOriginalPositionY: 1
keepOriginalPositionXZ: 1
heightFromFeet: 0
mirror: 0
bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
curves: []
events: []
transformMask:
- path:
weight: 1
- path: HumanF_BodyMesh
weight: 0
- path: Rig
weight: 1
- path: Rig/B-root
weight: 1
- path: Rig/B-root/B-hips
weight: 1
- path: Rig/B-root/B-hips/B-spine
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck/B-head
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck/B-head/B-jaw
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-handProp.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L/B-indexFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L/B-indexFinger02.L/B-indexFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L/B-middleFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L/B-middleFinger02.L/B-middleFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L/B-pinky02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L/B-pinky02.L/B-pinky03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L/B-ringFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L/B-ringFinger02.L/B-ringFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L/B-thumb02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L/B-thumb02.L/B-thumb03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-handProp.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R/B-indexFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R/B-indexFinger02.R/B-indexFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R/B-middleFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R/B-middleFinger02.R/B-middleFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R/B-pinky02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R/B-pinky02.R/B-pinky03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R/B-ringFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R/B-ringFinger02.R/B-ringFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R/B-thumb02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R/B-thumb02.R/B-thumb03.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L/B-foot.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L/B-foot.L/B-toe.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R/B-foot.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R/B-foot.R/B-toe.R
weight: 1
- path: Rig/B-root/B-spineProxy
weight: 1
maskType: 1
maskSource: {fileID: 31900000, guid: 89527f5525238ee44b3182458d85143a, type: 2}
additiveReferencePoseFrame: 0
isReadable: 0
meshes:
lODScreenPercentages: []
globalScale: 1
meshCompression: 0
addColliders: 0
useSRGBMaterialColor: 1
sortHierarchyByName: 1
importPhysicalCameras: 1
importVisibility: 1
importBlendShapes: 1
importCameras: 1
importLights: 1
nodeNameCollisionStrategy: 1
fileIdsGeneration: 2
swapUVChannels: 0
generateSecondaryUV: 0
useFileUnits: 1
keepQuads: 0
weldVertices: 1
bakeAxisConversion: 0
preserveHierarchy: 1
skinWeightsMode: 0
maxBonesPerVertex: 4
minBoneWeight: 0.001
optimizeBones: 1
meshOptimizationFlags: -1
indexFormat: 0
secondaryUVAngleDistortion: 8
secondaryUVAreaDistortion: 15.000001
secondaryUVHardAngle: 88
secondaryUVMarginMethod: 1
secondaryUVMinLightmapResolution: 40
secondaryUVMinObjectScale: 1
secondaryUVPackMargin: 4
useFileScale: 1
strictVertexDataChecks: 0
tangentSpace:
normalSmoothAngle: 60
normalImportMode: 0
tangentImportMode: 3
normalCalculationMode: 4
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0
blendShapeNormalImportMode: 1
normalSmoothingSource: 0
referencedClips: []
importAnimation: 1
humanDescription:
serializedVersion: 3
human:
- boneName: B-hips
humanName: Hips
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thigh.L
humanName: LeftUpperLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thigh.R
humanName: RightUpperLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shin.L
humanName: LeftLowerLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shin.R
humanName: RightLowerLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-foot.L
humanName: LeftFoot
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-foot.R
humanName: RightFoot
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-spine
humanName: Spine
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-chest
humanName: Chest
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-neck
humanName: Neck
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-head
humanName: Head
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shoulder.L
humanName: LeftShoulder
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shoulder.R
humanName: RightShoulder
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-upperArm.L
humanName: LeftUpperArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-upperArm.R
humanName: RightUpperArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-forearm.L
humanName: LeftLowerArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-forearm.R
humanName: RightLowerArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-hand.L
humanName: LeftHand
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-hand.R
humanName: RightHand
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-toe.L
humanName: LeftToes
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-toe.R
humanName: RightToes
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-jaw
humanName: Jaw
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb01.L
humanName: Left Thumb Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb02.L
humanName: Left Thumb Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb03.L
humanName: Left Thumb Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger01.L
humanName: Left Index Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger02.L
humanName: Left Index Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger03.L
humanName: Left Index Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger01.L
humanName: Left Middle Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger02.L
humanName: Left Middle Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger03.L
humanName: Left Middle Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger01.L
humanName: Left Ring Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger02.L
humanName: Left Ring Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger03.L
humanName: Left Ring Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky01.L
humanName: Left Little Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky02.L
humanName: Left Little Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky03.L
humanName: Left Little Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb01.R
humanName: Right Thumb Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb02.R
humanName: Right Thumb Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb03.R
humanName: Right Thumb Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger01.R
humanName: Right Index Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger02.R
humanName: Right Index Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger03.R
humanName: Right Index Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger01.R
humanName: Right Middle Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger02.R
humanName: Right Middle Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger03.R
humanName: Right Middle Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger01.R
humanName: Right Ring Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger02.R
humanName: Right Ring Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger03.R
humanName: Right Ring Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky01.R
humanName: Right Little Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky02.R
humanName: Right Little Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky03.R
humanName: Right Little Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
skeleton:
- name: Human_DummyModel_F(Clone)
parentName:
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: HumanF_BodyMesh
parentName: Human_DummyModel_F(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Rig
parentName: Human_DummyModel_F(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: B-root
parentName: Rig
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: B-spineProxy
parentName: B-root
position: {x: -0, y: 1.092844, z: 0.029147}
rotation: {x: -0.012905054, y: 0, z: -0, w: 0.99991673}
scale: {x: 1, y: 1.0000001, z: 1.0000001}
- name: B-hips
parentName: B-root
position: {x: -0, y: 0.967712, z: 0.016772}
rotation: {x: 0.04926631, y: 0, z: -0, w: 0.9987857}
scale: {x: 1, y: 1.0000004, z: 1.0000004}
- name: B-spine
parentName: B-hips
position: {x: -0, y: 0.12574437, z: 0.00000011940791}
rotation: {x: -0.062152267, y: 0, z: -0, w: 0.99806666}
scale: {x: 1, y: 0.99999976, z: 0.99999976}
- name: B-chest
parentName: B-spine
position: {x: -0, y: 0.13376056, z: -0.00000077390683}
rotation: {x: -0.02258696, y: 0, z: -0, w: 0.9997449}
scale: {x: 1, y: 0.9999996, z: 0.9999996}
- name: B-shoulder.R
parentName: B-chest
position: {x: -0, y: 0.19125995, z: -0.005656177}
rotation: {x: -0.5165573, y: -0.44464085, z: -0.47738376, w: 0.554588}
scale: {x: 1.0000008, y: 1.0000006, z: 1.0000002}
- name: B-upperArm.R
parentName: B-shoulder.R
position: {x: -0.00000043065853, y: 0.1619337, z: -0.000000866464}
rotation: {x: 0.03406315, y: 0.7090742, z: -0.08345674, w: 0.69934857}
scale: {x: 0.99999976, y: 1, z: 0.99999946}
- name: B-forearm.R
parentName: B-upperArm.R
position: {x: -0.0000005071642, y: 0.23413825, z: 0.0000019611641}
rotation: {x: 0.0013730773, y: -0.00042225965, z: 0.0032032696, w: 0.99999386}
scale: {x: 1.0000001, y: 0.99999964, z: 0.9999996}
- name: B-hand.R
parentName: B-forearm.R
position: {x: -0.000000328232, y: 0.19596381, z: -0.0000008355853}
rotation: {x: 0.013529134, y: 0.7054088, z: 0.032969795, w: 0.70790416}
scale: {x: 0.9999999, y: 1.0000002, z: 1.0000005}
- name: B-handProp.R
parentName: B-hand.R
position: {x: 0.0029605331, y: 0.10533051, z: 0.022608897}
rotation: {x: -0.67608327, y: 0.73659164, z: -0.013668106, w: -0.012545319}
scale: {x: 0.99999964, y: 1.0000005, z: 0.9999996}
- name: B-indexFinger01.R
parentName: B-hand.R
position: {x: -0.036052607, y: 0.13202412, z: -0.0022375023}
rotation: {x: 0.019054495, y: -0.0149580045, z: 0.031315368, w: 0.999216}
scale: {x: 1.0000002, y: 0.99999964, z: 0.9999993}
- name: B-indexFinger02.R
parentName: B-indexFinger01.R
position: {x: 0.00000021708313, y: 0.046758045, z: -0.0000005285747}
rotation: {x: 0.040758472, y: 0.02876925, z: -0.0030862393, w: 0.99875003}
scale: {x: 1, y: 1.0000004, z: 1.0000002}
- name: B-indexFinger03.R
parentName: B-indexFinger02.R
position: {x: 0.000000038075022, y: 0.034652043, z: 0.00000019983679}
rotation: {x: -0.006236443, y: 0.004024028, z: -0.0109188985, w: 0.99991286}
scale: {x: 0.9999999, y: 0.9999999, z: 0.99999964}
- name: B-middleFinger01.R
parentName: B-hand.R
position: {x: -0.00928522, y: 0.1318378, z: -0.0089382}
rotation: {x: -0.004700204, y: -0.0032572027, z: -0.001801642, w: 0.99998206}
scale: {x: 1.0000006, y: 0.9999997, z: 0.99999917}
- name: B-middleFinger02.R
parentName: B-middleFinger01.R
position: {x: -0.0000003849299, y: 0.048716273, z: -0.0000001691299}
rotation: {x: 0.039366316, y: 0.04573892, z: 0.00377753, w: 0.9981703}
scale: {x: 0.9999997, y: 1.0000004, z: 1}
- name: B-middleFinger03.R
parentName: B-middleFinger02.R
position: {x: -0.00000039262213, y: 0.035888083, z: 0.00000029152696}
rotation: {x: 0.0049846717, y: -0.02122791, z: -0.0063242065, w: 0.99974227}
scale: {x: 0.99999964, y: 0.99999994, z: 1.0000002}
- name: B-ringFinger01.R
parentName: B-hand.R
position: {x: 0.016020812, y: 0.1283572, z: -0.005707851}
rotation: {x: -0.0071167736, y: 0.0017728558, z: -0.036400504, w: 0.9993104}
scale: {x: 1.0000005, y: 0.9999992, z: 0.9999996}
- name: B-ringFinger02.R
parentName: B-ringFinger01.R
position: {x: 0.00000047158898, y: 0.045192316, z: 0.00000021597218}
rotation: {x: 0.037958622, y: -0.0021153935, z: 0.012520862, w: 0.9991986}
scale: {x: 0.99999946, y: 1.0000005, z: 0.9999997}
- name: B-ringFinger03.R
parentName: B-ringFinger02.R
position: {x: -0.0000004720245, y: 0.034694634, z: 0.00000008820079}
rotation: {x: 0.02091165, y: -0.04065229, z: -0.015794862, w: 0.99882966}
scale: {x: 1.0000002, y: 0.99999976, z: 0.9999997}
- name: B-pinky01.R
parentName: B-hand.R
position: {x: 0.041580904, y: 0.119742304, z: -0.0024299922}
rotation: {x: -0.011731888, y: -0.016481936, z: -0.04421447, w: 0.9988172}
scale: {x: 1.0000002, y: 0.9999994, z: 0.99999917}
- name: B-pinky02.R
parentName: B-pinky01.R
position: {x: 0.0000007804244, y: 0.03832724, z: 0.00000044214514}
rotation: {x: 0.039002027, y: 0.011177708, z: 0.009234122, w: 0.99913394}
scale: {x: 1.0000002, y: 1.0000006, z: 1.0000002}
- name: B-pinky03.R
parentName: B-pinky02.R
position: {x: -0.000000269953, y: 0.03220071, z: -0.0000005856981}
rotation: {x: 0.022101695, y: -0.02182341, z: 0.009210792, w: 0.99947506}
scale: {x: 1.0000005, y: 0.99999994, z: 1.0000007}
- name: B-thumb01.R
parentName: B-hand.R
position: {x: -0.039809253, y: 0.048496302, z: 0.0130518135}
rotation: {x: -0.22471787, y: 0.63045275, z: 0.29821387, w: 0.6805144}
scale: {x: 0.99999946, y: 1.0000002, z: 1.0000005}
- name: B-thumb02.R
parentName: B-thumb01.R
position: {x: 0.00000020260806, y: 0.047178134, z: 0.000000160123}
rotation: {x: 0.038173996, y: 0.013301423, z: -0.008042345, w: 0.9991502}
scale: {x: 1.0000007, y: 0.9999997, z: 0.9999999}
- name: B-thumb03.R
parentName: B-thumb02.R
position: {x: -0.00000069069114, y: 0.03520854, z: 0.00000004046409}
rotation: {x: -0.060352694, y: 0.014396386, z: 0.0074255248, w: 0.9980457}
scale: {x: 0.9999995, y: 1.0000004, z: 1}
- name: B-neck
parentName: B-chest
position: {x: -0, y: 0.27081212, z: 0.0000007058524}
rotation: {x: 0.105346866, y: 0, z: -0, w: 0.99443555}
scale: {x: 1, y: 0.9999997, z: 1.0000007}
- name: B-head
parentName: B-neck
position: {x: -0, y: 0.07409704, z: 0.00000025054106}
rotation: {x: -0.069990024, y: 0, z: -0, w: 0.9975477}
scale: {x: 1, y: 1.0000006, z: 0.99999964}
- name: B-jaw
parentName: B-head
position: {x: -0, y: 0, z: 0}
rotation: {x: 0.70698464, y: 0.000007072379, z: -0.00000706994, w: 0.7072289}
scale: {x: 1, y: 1, z: 1}
- name: B-shoulder.L
parentName: B-chest
position: {x: -0, y: 0.19125995, z: -0.005656177}
rotation: {x: -0.5165571, y: 0.44464028, z: 0.47738382, w: 0.5545886}
scale: {x: 0.9999998, y: 0.9999995, z: 1.0000002}
- name: B-upperArm.L
parentName: B-shoulder.L
position: {x: 0.00000040656337, y: 0.16193385, z: -0.0000008664629}
rotation: {x: 0.033948872, y: -0.70908755, z: 0.08334149, w: 0.69935447}
scale: {x: 0.9999998, y: 1.0000002, z: 0.9999999}
- name: B-forearm.L
parentName: B-upperArm.L
position: {x: 0.000000097359035, y: 0.2341381, z: 0.00000030291466}
rotation: {x: 0.0017385628, y: 0.0004205673, z: -0.0032047313, w: 0.99999326}
scale: {x: 0.99999994, y: 1.0000004, z: 1.0000001}
- name: B-hand.L
parentName: B-forearm.L
position: {x: 0.00000052406216, y: 0.1959644, z: -0.0000011816531}
rotation: {x: 0.013386631, y: -0.70541465, z: -0.032826252, w: 0.7079078}
scale: {x: 0.99999994, y: 0.9999992, z: 0.9999996}
- name: B-handProp.L
parentName: B-hand.L
position: {x: -0.0029615294, y: 0.10533054, z: 0.02260892}
rotation: {x: 0.67608327, y: 0.73659164, z: -0.013668119, w: 0.012545332}
scale: {x: 1.0000006, y: 0.99999946, z: 1.0000006}
- name: B-indexFinger01.L
parentName: B-hand.L
position: {x: 0.03605161, y: 0.13202417, z: -0.0022375062}
rotation: {x: 0.019054513, y: 0.014957919, z: -0.03131587, w: 0.99921596}
scale: {x: 1.0000004, y: 0.9999998, z: 1.0000002}
- name: B-indexFinger02.L
parentName: B-indexFinger01.L
position: {x: 0.00000072554116, y: 0.04675823, z: -0.0000005109258}
rotation: {x: 0.04075494, y: -0.02876944, z: 0.0030826945, w: 0.9987502}
scale: {x: 1.0000001, y: 1.0000002, z: 1.0000002}
- name: B-indexFinger03.L
parentName: B-indexFinger02.L
position: {x: -0.00000009920999, y: 0.034652077, z: 0.00000023013986}
rotation: {x: -0.0062364372, y: -0.004023549, z: 0.010918792, w: 0.99991286}
scale: {x: 0.9999998, y: 1.0000008, z: 0.9999995}
- name: B-middleFinger01.L
parentName: B-hand.L
position: {x: 0.00928522, y: 0.13183793, z: -0.008938214}
rotation: {x: -0.004700207, y: 0.0032570793, z: 0.0018007505, w: 0.99998206}
scale: {x: 1.0000007, y: 0.9999999, z: 1.0000001}
- name: B-middleFinger02.L
parentName: B-middleFinger01.L
position: {x: 0.00000028786184, y: 0.048716314, z: -0.00000017087451}
rotation: {x: 0.039368037, y: -0.045739666, z: -0.0037847473, w: 0.9981702}
scale: {x: 0.99999976, y: 1.000001, z: 1.0000006}
- name: B-middleFinger03.L
parentName: B-middleFinger02.L
position: {x: -0.00000066842983, y: 0.035888, z: 0.00000028642995}
rotation: {x: 0.0049827034, y: 0.021227859, z: 0.0063241003, w: 0.99974227}
scale: {x: 0.9999996, y: 0.99999905, z: 0.99999934}
- name: B-ringFinger01.L
parentName: B-hand.L
position: {x: -0.016021809, y: 0.12835726, z: -0.005707858}
rotation: {x: -0.007116776, y: -0.0017729683, z: 0.036399588, w: 0.99931043}
scale: {x: 1.0000005, y: 1.0000002, z: 1.0000006}
- name: B-ringFinger02.L
parentName: B-ringFinger01.L
position: {x: 0.00000043795694, y: 0.04519233, z: 0.00000021050154}
rotation: {x: 0.037963506, y: 0.0021157071, z: -0.01252746, w: 0.9991984}
scale: {x: 0.9999995, y: 0.99999964, z: 0.9999996}
- name: B-ringFinger03.L
parentName: B-ringFinger02.L
position: {x: 0.00000034561023, y: 0.03469565, z: -0.00000007648653}
rotation: {x: 0.020911071, y: 0.04065225, z: 0.015794758, w: 0.99882966}
scale: {x: 1.0000001, y: 1.0000005, z: 0.9999997}
- name: B-pinky01.L
parentName: B-hand.L
position: {x: -0.041581903, y: 0.119742356, z: -0.0024299957}
rotation: {x: -0.01172906, y: 0.01648238, z: 0.0442254, w: 0.9988167}
scale: {x: 1.0000002, y: 1.0000004, z: 1.0000002}
- name: B-pinky02.L
parentName: B-pinky01.L
position: {x: 0.00000014151807, y: 0.03832722, z: 0.00000047056287}
rotation: {x: 0.039005004, y: -0.011177422, z: -0.009239738, w: 0.99913377}
scale: {x: 1.0000002, y: 0.99999946, z: 1.0000001}
- name: B-pinky03.L
parentName: B-pinky02.L
position: {x: 0.000000233103, y: 0.032200746, z: -0.00000055902217}
rotation: {x: 0.022101717, y: 0.02182328, z: -0.009211465, w: 0.99947506}
scale: {x: 0.9999995, y: 1, z: 0.99999964}
- name: B-thumb01.L
parentName: B-hand.L
position: {x: 0.03980834, y: 0.048495278, z: 0.013051865}
rotation: {x: -0.2247114, y: -0.6304557, z: -0.2982149, w: 0.6805132}
scale: {x: 1.0000005, y: 1, z: 1.0000005}
- name: B-thumb02.L
parentName: B-thumb01.L
position: {x: -0.0000007063521, y: 0.047179468, z: -0.00000013365789}
rotation: {x: 0.038171936, y: -0.013301728, z: 0.008042519, w: 0.9991503}
scale: {x: 1.0000004, y: 1, z: 0.9999994}
- name: B-thumb03.L
parentName: B-thumb02.L
position: {x: 0.0000007190916, y: 0.035208564, z: 0.00000017922088}
rotation: {x: -0.06035389, y: -0.014396597, z: -0.007425322, w: 0.9980456}
scale: {x: 0.9999992, y: 0.99999994, z: 1.0000001}
- name: B-thigh.L
parentName: B-hips
position: {x: -0.096950985, y: -0.05446949, z: 0.0020414153}
rotation: {x: 0.9977441, y: 0.011110197, z: -0.0039620763, w: 0.066088475}
scale: {x: 1.0000002, y: 0.9999997, z: 1.000001}
- name: B-shin.L
parentName: B-thigh.L
position: {x: 0.00000018468991, y: 0.41111633, z: 0.0000005281011}
rotation: {x: 0.067057244, y: -0.00057845906, z: 0.011617889, w: 0.9976813}
scale: {x: 0.9999997, y: 1.0000002, z: 0.99999964}
- name: B-foot.L
parentName: B-shin.L
position: {x: -0.00000017405802, y: 0.3880767, z: -0.00000019306846}
rotation: {x: -0.5354999, y: 0.004330197, z: 0.0016612022, w: 0.84452266}
scale: {x: 1.0000001, y: 0.9999997, z: 0.99999976}
- name: B-toe.L
parentName: B-foot.L
position: {x: -0.00000027025197, y: 0.17254004, z: -0.000000117418054}
rotation: {x: 0.000012936387, y: 0.9622731, z: -0.27208534, w: 0.00017343421}
scale: {x: 1, y: 1.0000018, z: 0.999999}
- name: B-thigh.R
parentName: B-hips
position: {x: 0.096950985, y: -0.05446959, z: 0.0020404202}
rotation: {x: 0.9977441, y: -0.011109428, z: 0.003967029, w: 0.066088304}
scale: {x: 1.0000004, y: 0.99999976, z: 1.000008}
- name: B-shin.R
parentName: B-thigh.R
position: {x: 0.0000005496826, y: 0.41111633, z: -0.00000065481464}
rotation: {x: 0.06705632, y: 0.0005783735, z: -0.011616509, w: 0.99768144}
scale: {x: 0.9999997, y: 1.0000002, z: 1.0000007}
- name: B-foot.R
parentName: B-shin.R
position: {x: -0.00000044263592, y: 0.3880767, z: 0.000000107811644}
rotation: {x: -0.53550065, y: -0.0043338453, z: -0.0016630876, w: 0.84452206}
scale: {x: 1, y: 0.9999993, z: 0.99999994}
- name: B-toe.R
parentName: B-foot.R
position: {x: 0.00000074386196, y: 0.17254034, z: 0.00000017937037}
rotation: {x: -0.000012542016, y: 0.96227294, z: -0.27208585, w: -0.00017487761}
scale: {x: 1, y: 1.0000029, z: 0.999997}
armTwist: 0.5
foreArmTwist: 0.5
upperLegTwist: 0.5
legTwist: 0.5
armStretch: 0.05
legStretch: 0.05
feetSpacing: 0
globalScale: 1
rootMotionBoneName:
hasTranslationDoF: 0
hasExtraRoot: 0
skeletonHasParents: 1
lastHumanDescriptionAvatarSource: {fileID: 9000000, guid: 1841c298173cdad4db8df8602c8f1c8d,
type: 3}
autoGenerateAvatarMappingIfUnspecified: 1
animationType: 3
humanoidOversampling: 1
avatarSetup: 2
addHumanoidExtraRootOnlyWhenUsingAvatar: 1
importBlendShapeDeformPercent: 1
remapMaterialsIfMaterialImportModeIsNone: 0
additionalBone: 0
userData:
assetBundleName:
assetBundleVariant:
AssetOrigin:
serializedVersion: 1
productId: 154271
packageName: Human Basic Motions FREE
packageVersion: 2.4.2
assetPath: Assets/Kevin Iglesias/Human Animations/Animations/Female/Movement/Run/RootMotion/HumanF@Run01_BackwardLeft
[RM].fbx
uploadId: 908942

View file

@ -1,974 +0,0 @@
fileFormatVersion: 2
guid: 55f7d9665d0be68498e73fb21fcf3267
ModelImporter:
serializedVersion: 22200
internalIDToNameTable: []
externalObjects: {}
materials:
materialImportMode: 0
materialName: 0
materialSearch: 1
materialLocation: 1
animations:
legacyGenerateAnimations: 4
bakeSimulation: 0
resampleCurves: 1
optimizeGameObjects: 0
removeConstantScaleCurves: 0
motionNodeName: Rig/B-root
animationImportErrors:
animationImportWarnings:
animationRetargetingWarnings:
animationDoRetargetingWarnings: 0
importAnimatedCustomProperties: 0
importConstraints: 0
animationCompression: 0
animationRotationError: 0.5
animationPositionError: 0.5
animationScaleError: 0.5
animationWrapMode: 0
extraExposedTransformPaths: []
extraUserProperties: []
clipAnimations:
- serializedVersion: 16
name: 'HumanF@Run01_BackwardRight [RM]'
takeName: Untitled
internalID: 3094330708855449807
firstFrame: 0
lastFrame: 18
wrapMode: 0
orientationOffsetY: 0
level: 0
cycleOffset: 0
loop: 0
hasAdditiveReferencePose: 0
loopTime: 1
loopBlend: 0
loopBlendOrientation: 1
loopBlendPositionY: 1
loopBlendPositionXZ: 0
keepOriginalOrientation: 1
keepOriginalPositionY: 1
keepOriginalPositionXZ: 1
heightFromFeet: 0
mirror: 0
bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
curves: []
events: []
transformMask:
- path:
weight: 1
- path: HumanF_BodyMesh
weight: 0
- path: Rig
weight: 1
- path: Rig/B-root
weight: 1
- path: Rig/B-root/B-hips
weight: 1
- path: Rig/B-root/B-hips/B-spine
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck/B-head
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck/B-head/B-jaw
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-handProp.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L/B-indexFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L/B-indexFinger02.L/B-indexFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L/B-middleFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L/B-middleFinger02.L/B-middleFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L/B-pinky02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L/B-pinky02.L/B-pinky03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L/B-ringFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L/B-ringFinger02.L/B-ringFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L/B-thumb02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L/B-thumb02.L/B-thumb03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-handProp.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R/B-indexFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R/B-indexFinger02.R/B-indexFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R/B-middleFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R/B-middleFinger02.R/B-middleFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R/B-pinky02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R/B-pinky02.R/B-pinky03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R/B-ringFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R/B-ringFinger02.R/B-ringFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R/B-thumb02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R/B-thumb02.R/B-thumb03.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L/B-foot.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L/B-foot.L/B-toe.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R/B-foot.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R/B-foot.R/B-toe.R
weight: 1
- path: Rig/B-root/B-spineProxy
weight: 1
maskType: 1
maskSource: {fileID: 31900000, guid: 89527f5525238ee44b3182458d85143a, type: 2}
additiveReferencePoseFrame: 0
isReadable: 0
meshes:
lODScreenPercentages: []
globalScale: 1
meshCompression: 0
addColliders: 0
useSRGBMaterialColor: 1
sortHierarchyByName: 1
importPhysicalCameras: 1
importVisibility: 1
importBlendShapes: 1
importCameras: 1
importLights: 1
nodeNameCollisionStrategy: 1
fileIdsGeneration: 2
swapUVChannels: 0
generateSecondaryUV: 0
useFileUnits: 1
keepQuads: 0
weldVertices: 1
bakeAxisConversion: 0
preserveHierarchy: 1
skinWeightsMode: 0
maxBonesPerVertex: 4
minBoneWeight: 0.001
optimizeBones: 1
meshOptimizationFlags: -1
indexFormat: 0
secondaryUVAngleDistortion: 8
secondaryUVAreaDistortion: 15.000001
secondaryUVHardAngle: 88
secondaryUVMarginMethod: 1
secondaryUVMinLightmapResolution: 40
secondaryUVMinObjectScale: 1
secondaryUVPackMargin: 4
useFileScale: 1
strictVertexDataChecks: 0
tangentSpace:
normalSmoothAngle: 60
normalImportMode: 0
tangentImportMode: 3
normalCalculationMode: 4
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0
blendShapeNormalImportMode: 1
normalSmoothingSource: 0
referencedClips: []
importAnimation: 1
humanDescription:
serializedVersion: 3
human:
- boneName: B-hips
humanName: Hips
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thigh.L
humanName: LeftUpperLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thigh.R
humanName: RightUpperLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shin.L
humanName: LeftLowerLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shin.R
humanName: RightLowerLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-foot.L
humanName: LeftFoot
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-foot.R
humanName: RightFoot
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-spine
humanName: Spine
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-chest
humanName: Chest
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-neck
humanName: Neck
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-head
humanName: Head
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shoulder.L
humanName: LeftShoulder
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shoulder.R
humanName: RightShoulder
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-upperArm.L
humanName: LeftUpperArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-upperArm.R
humanName: RightUpperArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-forearm.L
humanName: LeftLowerArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-forearm.R
humanName: RightLowerArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-hand.L
humanName: LeftHand
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-hand.R
humanName: RightHand
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-toe.L
humanName: LeftToes
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-toe.R
humanName: RightToes
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-jaw
humanName: Jaw
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb01.L
humanName: Left Thumb Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb02.L
humanName: Left Thumb Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb03.L
humanName: Left Thumb Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger01.L
humanName: Left Index Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger02.L
humanName: Left Index Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger03.L
humanName: Left Index Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger01.L
humanName: Left Middle Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger02.L
humanName: Left Middle Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger03.L
humanName: Left Middle Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger01.L
humanName: Left Ring Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger02.L
humanName: Left Ring Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger03.L
humanName: Left Ring Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky01.L
humanName: Left Little Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky02.L
humanName: Left Little Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky03.L
humanName: Left Little Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb01.R
humanName: Right Thumb Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb02.R
humanName: Right Thumb Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb03.R
humanName: Right Thumb Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger01.R
humanName: Right Index Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger02.R
humanName: Right Index Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger03.R
humanName: Right Index Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger01.R
humanName: Right Middle Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger02.R
humanName: Right Middle Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger03.R
humanName: Right Middle Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger01.R
humanName: Right Ring Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger02.R
humanName: Right Ring Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger03.R
humanName: Right Ring Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky01.R
humanName: Right Little Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky02.R
humanName: Right Little Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky03.R
humanName: Right Little Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
skeleton:
- name: Human_DummyModel_F(Clone)
parentName:
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: HumanF_BodyMesh
parentName: Human_DummyModel_F(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Rig
parentName: Human_DummyModel_F(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: B-root
parentName: Rig
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: B-spineProxy
parentName: B-root
position: {x: -0, y: 1.092844, z: 0.029147}
rotation: {x: -0.012905054, y: 0, z: -0, w: 0.99991673}
scale: {x: 1, y: 1.0000001, z: 1.0000001}
- name: B-hips
parentName: B-root
position: {x: -0, y: 0.967712, z: 0.016772}
rotation: {x: 0.04926631, y: 0, z: -0, w: 0.9987857}
scale: {x: 1, y: 1.0000004, z: 1.0000004}
- name: B-spine
parentName: B-hips
position: {x: -0, y: 0.12574437, z: 0.00000011940791}
rotation: {x: -0.062152267, y: 0, z: -0, w: 0.99806666}
scale: {x: 1, y: 0.99999976, z: 0.99999976}
- name: B-chest
parentName: B-spine
position: {x: -0, y: 0.13376056, z: -0.00000077390683}
rotation: {x: -0.02258696, y: 0, z: -0, w: 0.9997449}
scale: {x: 1, y: 0.9999996, z: 0.9999996}
- name: B-shoulder.R
parentName: B-chest
position: {x: -0, y: 0.19125995, z: -0.005656177}
rotation: {x: -0.5165573, y: -0.44464085, z: -0.47738376, w: 0.554588}
scale: {x: 1.0000008, y: 1.0000006, z: 1.0000002}
- name: B-upperArm.R
parentName: B-shoulder.R
position: {x: -0.00000043065853, y: 0.1619337, z: -0.000000866464}
rotation: {x: 0.03406315, y: 0.7090742, z: -0.08345674, w: 0.69934857}
scale: {x: 0.99999976, y: 1, z: 0.99999946}
- name: B-forearm.R
parentName: B-upperArm.R
position: {x: -0.0000005071642, y: 0.23413825, z: 0.0000019611641}
rotation: {x: 0.0013730773, y: -0.00042225965, z: 0.0032032696, w: 0.99999386}
scale: {x: 1.0000001, y: 0.99999964, z: 0.9999996}
- name: B-hand.R
parentName: B-forearm.R
position: {x: -0.000000328232, y: 0.19596381, z: -0.0000008355853}
rotation: {x: 0.013529134, y: 0.7054088, z: 0.032969795, w: 0.70790416}
scale: {x: 0.9999999, y: 1.0000002, z: 1.0000005}
- name: B-handProp.R
parentName: B-hand.R
position: {x: 0.0029605331, y: 0.10533051, z: 0.022608897}
rotation: {x: -0.67608327, y: 0.73659164, z: -0.013668106, w: -0.012545319}
scale: {x: 0.99999964, y: 1.0000005, z: 0.9999996}
- name: B-indexFinger01.R
parentName: B-hand.R
position: {x: -0.036052607, y: 0.13202412, z: -0.0022375023}
rotation: {x: 0.019054495, y: -0.0149580045, z: 0.031315368, w: 0.999216}
scale: {x: 1.0000002, y: 0.99999964, z: 0.9999993}
- name: B-indexFinger02.R
parentName: B-indexFinger01.R
position: {x: 0.00000021708313, y: 0.046758045, z: -0.0000005285747}
rotation: {x: 0.040758472, y: 0.02876925, z: -0.0030862393, w: 0.99875003}
scale: {x: 1, y: 1.0000004, z: 1.0000002}
- name: B-indexFinger03.R
parentName: B-indexFinger02.R
position: {x: 0.000000038075022, y: 0.034652043, z: 0.00000019983679}
rotation: {x: -0.006236443, y: 0.004024028, z: -0.0109188985, w: 0.99991286}
scale: {x: 0.9999999, y: 0.9999999, z: 0.99999964}
- name: B-middleFinger01.R
parentName: B-hand.R
position: {x: -0.00928522, y: 0.1318378, z: -0.0089382}
rotation: {x: -0.004700204, y: -0.0032572027, z: -0.001801642, w: 0.99998206}
scale: {x: 1.0000006, y: 0.9999997, z: 0.99999917}
- name: B-middleFinger02.R
parentName: B-middleFinger01.R
position: {x: -0.0000003849299, y: 0.048716273, z: -0.0000001691299}
rotation: {x: 0.039366316, y: 0.04573892, z: 0.00377753, w: 0.9981703}
scale: {x: 0.9999997, y: 1.0000004, z: 1}
- name: B-middleFinger03.R
parentName: B-middleFinger02.R
position: {x: -0.00000039262213, y: 0.035888083, z: 0.00000029152696}
rotation: {x: 0.0049846717, y: -0.02122791, z: -0.0063242065, w: 0.99974227}
scale: {x: 0.99999964, y: 0.99999994, z: 1.0000002}
- name: B-ringFinger01.R
parentName: B-hand.R
position: {x: 0.016020812, y: 0.1283572, z: -0.005707851}
rotation: {x: -0.0071167736, y: 0.0017728558, z: -0.036400504, w: 0.9993104}
scale: {x: 1.0000005, y: 0.9999992, z: 0.9999996}
- name: B-ringFinger02.R
parentName: B-ringFinger01.R
position: {x: 0.00000047158898, y: 0.045192316, z: 0.00000021597218}
rotation: {x: 0.037958622, y: -0.0021153935, z: 0.012520862, w: 0.9991986}
scale: {x: 0.99999946, y: 1.0000005, z: 0.9999997}
- name: B-ringFinger03.R
parentName: B-ringFinger02.R
position: {x: -0.0000004720245, y: 0.034694634, z: 0.00000008820079}
rotation: {x: 0.02091165, y: -0.04065229, z: -0.015794862, w: 0.99882966}
scale: {x: 1.0000002, y: 0.99999976, z: 0.9999997}
- name: B-pinky01.R
parentName: B-hand.R
position: {x: 0.041580904, y: 0.119742304, z: -0.0024299922}
rotation: {x: -0.011731888, y: -0.016481936, z: -0.04421447, w: 0.9988172}
scale: {x: 1.0000002, y: 0.9999994, z: 0.99999917}
- name: B-pinky02.R
parentName: B-pinky01.R
position: {x: 0.0000007804244, y: 0.03832724, z: 0.00000044214514}
rotation: {x: 0.039002027, y: 0.011177708, z: 0.009234122, w: 0.99913394}
scale: {x: 1.0000002, y: 1.0000006, z: 1.0000002}
- name: B-pinky03.R
parentName: B-pinky02.R
position: {x: -0.000000269953, y: 0.03220071, z: -0.0000005856981}
rotation: {x: 0.022101695, y: -0.02182341, z: 0.009210792, w: 0.99947506}
scale: {x: 1.0000005, y: 0.99999994, z: 1.0000007}
- name: B-thumb01.R
parentName: B-hand.R
position: {x: -0.039809253, y: 0.048496302, z: 0.0130518135}
rotation: {x: -0.22471787, y: 0.63045275, z: 0.29821387, w: 0.6805144}
scale: {x: 0.99999946, y: 1.0000002, z: 1.0000005}
- name: B-thumb02.R
parentName: B-thumb01.R
position: {x: 0.00000020260806, y: 0.047178134, z: 0.000000160123}
rotation: {x: 0.038173996, y: 0.013301423, z: -0.008042345, w: 0.9991502}
scale: {x: 1.0000007, y: 0.9999997, z: 0.9999999}
- name: B-thumb03.R
parentName: B-thumb02.R
position: {x: -0.00000069069114, y: 0.03520854, z: 0.00000004046409}
rotation: {x: -0.060352694, y: 0.014396386, z: 0.0074255248, w: 0.9980457}
scale: {x: 0.9999995, y: 1.0000004, z: 1}
- name: B-neck
parentName: B-chest
position: {x: -0, y: 0.27081212, z: 0.0000007058524}
rotation: {x: 0.105346866, y: 0, z: -0, w: 0.99443555}
scale: {x: 1, y: 0.9999997, z: 1.0000007}
- name: B-head
parentName: B-neck
position: {x: -0, y: 0.07409704, z: 0.00000025054106}
rotation: {x: -0.069990024, y: 0, z: -0, w: 0.9975477}
scale: {x: 1, y: 1.0000006, z: 0.99999964}
- name: B-jaw
parentName: B-head
position: {x: -0, y: 0, z: 0}
rotation: {x: 0.70698464, y: 0.000007072379, z: -0.00000706994, w: 0.7072289}
scale: {x: 1, y: 1, z: 1}
- name: B-shoulder.L
parentName: B-chest
position: {x: -0, y: 0.19125995, z: -0.005656177}
rotation: {x: -0.5165571, y: 0.44464028, z: 0.47738382, w: 0.5545886}
scale: {x: 0.9999998, y: 0.9999995, z: 1.0000002}
- name: B-upperArm.L
parentName: B-shoulder.L
position: {x: 0.00000040656337, y: 0.16193385, z: -0.0000008664629}
rotation: {x: 0.033948872, y: -0.70908755, z: 0.08334149, w: 0.69935447}
scale: {x: 0.9999998, y: 1.0000002, z: 0.9999999}
- name: B-forearm.L
parentName: B-upperArm.L
position: {x: 0.000000097359035, y: 0.2341381, z: 0.00000030291466}
rotation: {x: 0.0017385628, y: 0.0004205673, z: -0.0032047313, w: 0.99999326}
scale: {x: 0.99999994, y: 1.0000004, z: 1.0000001}
- name: B-hand.L
parentName: B-forearm.L
position: {x: 0.00000052406216, y: 0.1959644, z: -0.0000011816531}
rotation: {x: 0.013386631, y: -0.70541465, z: -0.032826252, w: 0.7079078}
scale: {x: 0.99999994, y: 0.9999992, z: 0.9999996}
- name: B-handProp.L
parentName: B-hand.L
position: {x: -0.0029615294, y: 0.10533054, z: 0.02260892}
rotation: {x: 0.67608327, y: 0.73659164, z: -0.013668119, w: 0.012545332}
scale: {x: 1.0000006, y: 0.99999946, z: 1.0000006}
- name: B-indexFinger01.L
parentName: B-hand.L
position: {x: 0.03605161, y: 0.13202417, z: -0.0022375062}
rotation: {x: 0.019054513, y: 0.014957919, z: -0.03131587, w: 0.99921596}
scale: {x: 1.0000004, y: 0.9999998, z: 1.0000002}
- name: B-indexFinger02.L
parentName: B-indexFinger01.L
position: {x: 0.00000072554116, y: 0.04675823, z: -0.0000005109258}
rotation: {x: 0.04075494, y: -0.02876944, z: 0.0030826945, w: 0.9987502}
scale: {x: 1.0000001, y: 1.0000002, z: 1.0000002}
- name: B-indexFinger03.L
parentName: B-indexFinger02.L
position: {x: -0.00000009920999, y: 0.034652077, z: 0.00000023013986}
rotation: {x: -0.0062364372, y: -0.004023549, z: 0.010918792, w: 0.99991286}
scale: {x: 0.9999998, y: 1.0000008, z: 0.9999995}
- name: B-middleFinger01.L
parentName: B-hand.L
position: {x: 0.00928522, y: 0.13183793, z: -0.008938214}
rotation: {x: -0.004700207, y: 0.0032570793, z: 0.0018007505, w: 0.99998206}
scale: {x: 1.0000007, y: 0.9999999, z: 1.0000001}
- name: B-middleFinger02.L
parentName: B-middleFinger01.L
position: {x: 0.00000028786184, y: 0.048716314, z: -0.00000017087451}
rotation: {x: 0.039368037, y: -0.045739666, z: -0.0037847473, w: 0.9981702}
scale: {x: 0.99999976, y: 1.000001, z: 1.0000006}
- name: B-middleFinger03.L
parentName: B-middleFinger02.L
position: {x: -0.00000066842983, y: 0.035888, z: 0.00000028642995}
rotation: {x: 0.0049827034, y: 0.021227859, z: 0.0063241003, w: 0.99974227}
scale: {x: 0.9999996, y: 0.99999905, z: 0.99999934}
- name: B-ringFinger01.L
parentName: B-hand.L
position: {x: -0.016021809, y: 0.12835726, z: -0.005707858}
rotation: {x: -0.007116776, y: -0.0017729683, z: 0.036399588, w: 0.99931043}
scale: {x: 1.0000005, y: 1.0000002, z: 1.0000006}
- name: B-ringFinger02.L
parentName: B-ringFinger01.L
position: {x: 0.00000043795694, y: 0.04519233, z: 0.00000021050154}
rotation: {x: 0.037963506, y: 0.0021157071, z: -0.01252746, w: 0.9991984}
scale: {x: 0.9999995, y: 0.99999964, z: 0.9999996}
- name: B-ringFinger03.L
parentName: B-ringFinger02.L
position: {x: 0.00000034561023, y: 0.03469565, z: -0.00000007648653}
rotation: {x: 0.020911071, y: 0.04065225, z: 0.015794758, w: 0.99882966}
scale: {x: 1.0000001, y: 1.0000005, z: 0.9999997}
- name: B-pinky01.L
parentName: B-hand.L
position: {x: -0.041581903, y: 0.119742356, z: -0.0024299957}
rotation: {x: -0.01172906, y: 0.01648238, z: 0.0442254, w: 0.9988167}
scale: {x: 1.0000002, y: 1.0000004, z: 1.0000002}
- name: B-pinky02.L
parentName: B-pinky01.L
position: {x: 0.00000014151807, y: 0.03832722, z: 0.00000047056287}
rotation: {x: 0.039005004, y: -0.011177422, z: -0.009239738, w: 0.99913377}
scale: {x: 1.0000002, y: 0.99999946, z: 1.0000001}
- name: B-pinky03.L
parentName: B-pinky02.L
position: {x: 0.000000233103, y: 0.032200746, z: -0.00000055902217}
rotation: {x: 0.022101717, y: 0.02182328, z: -0.009211465, w: 0.99947506}
scale: {x: 0.9999995, y: 1, z: 0.99999964}
- name: B-thumb01.L
parentName: B-hand.L
position: {x: 0.03980834, y: 0.048495278, z: 0.013051865}
rotation: {x: -0.2247114, y: -0.6304557, z: -0.2982149, w: 0.6805132}
scale: {x: 1.0000005, y: 1, z: 1.0000005}
- name: B-thumb02.L
parentName: B-thumb01.L
position: {x: -0.0000007063521, y: 0.047179468, z: -0.00000013365789}
rotation: {x: 0.038171936, y: -0.013301728, z: 0.008042519, w: 0.9991503}
scale: {x: 1.0000004, y: 1, z: 0.9999994}
- name: B-thumb03.L
parentName: B-thumb02.L
position: {x: 0.0000007190916, y: 0.035208564, z: 0.00000017922088}
rotation: {x: -0.06035389, y: -0.014396597, z: -0.007425322, w: 0.9980456}
scale: {x: 0.9999992, y: 0.99999994, z: 1.0000001}
- name: B-thigh.L
parentName: B-hips
position: {x: -0.096950985, y: -0.05446949, z: 0.0020414153}
rotation: {x: 0.9977441, y: 0.011110197, z: -0.0039620763, w: 0.066088475}
scale: {x: 1.0000002, y: 0.9999997, z: 1.000001}
- name: B-shin.L
parentName: B-thigh.L
position: {x: 0.00000018468991, y: 0.41111633, z: 0.0000005281011}
rotation: {x: 0.067057244, y: -0.00057845906, z: 0.011617889, w: 0.9976813}
scale: {x: 0.9999997, y: 1.0000002, z: 0.99999964}
- name: B-foot.L
parentName: B-shin.L
position: {x: -0.00000017405802, y: 0.3880767, z: -0.00000019306846}
rotation: {x: -0.5354999, y: 0.004330197, z: 0.0016612022, w: 0.84452266}
scale: {x: 1.0000001, y: 0.9999997, z: 0.99999976}
- name: B-toe.L
parentName: B-foot.L
position: {x: -0.00000027025197, y: 0.17254004, z: -0.000000117418054}
rotation: {x: 0.000012936387, y: 0.9622731, z: -0.27208534, w: 0.00017343421}
scale: {x: 1, y: 1.0000018, z: 0.999999}
- name: B-thigh.R
parentName: B-hips
position: {x: 0.096950985, y: -0.05446959, z: 0.0020404202}
rotation: {x: 0.9977441, y: -0.011109428, z: 0.003967029, w: 0.066088304}
scale: {x: 1.0000004, y: 0.99999976, z: 1.000008}
- name: B-shin.R
parentName: B-thigh.R
position: {x: 0.0000005496826, y: 0.41111633, z: -0.00000065481464}
rotation: {x: 0.06705632, y: 0.0005783735, z: -0.011616509, w: 0.99768144}
scale: {x: 0.9999997, y: 1.0000002, z: 1.0000007}
- name: B-foot.R
parentName: B-shin.R
position: {x: -0.00000044263592, y: 0.3880767, z: 0.000000107811644}
rotation: {x: -0.53550065, y: -0.0043338453, z: -0.0016630876, w: 0.84452206}
scale: {x: 1, y: 0.9999993, z: 0.99999994}
- name: B-toe.R
parentName: B-foot.R
position: {x: 0.00000074386196, y: 0.17254034, z: 0.00000017937037}
rotation: {x: -0.000012542016, y: 0.96227294, z: -0.27208585, w: -0.00017487761}
scale: {x: 1, y: 1.0000029, z: 0.999997}
armTwist: 0.5
foreArmTwist: 0.5
upperLegTwist: 0.5
legTwist: 0.5
armStretch: 0.05
legStretch: 0.05
feetSpacing: 0
globalScale: 1
rootMotionBoneName:
hasTranslationDoF: 0
hasExtraRoot: 0
skeletonHasParents: 1
lastHumanDescriptionAvatarSource: {fileID: 9000000, guid: 1841c298173cdad4db8df8602c8f1c8d,
type: 3}
autoGenerateAvatarMappingIfUnspecified: 1
animationType: 3
humanoidOversampling: 1
avatarSetup: 2
addHumanoidExtraRootOnlyWhenUsingAvatar: 1
importBlendShapeDeformPercent: 1
remapMaterialsIfMaterialImportModeIsNone: 0
additionalBone: 0
userData:
assetBundleName:
assetBundleVariant:
AssetOrigin:
serializedVersion: 1
productId: 154271
packageName: Human Basic Motions FREE
packageVersion: 2.4.2
assetPath: Assets/Kevin Iglesias/Human Animations/Animations/Female/Movement/Run/RootMotion/HumanF@Run01_BackwardRight
[RM].fbx
uploadId: 908942

View file

@ -1,974 +0,0 @@
fileFormatVersion: 2
guid: b5aa46a35563ed44bb6dc4be5dabd918
ModelImporter:
serializedVersion: 22200
internalIDToNameTable: []
externalObjects: {}
materials:
materialImportMode: 0
materialName: 0
materialSearch: 1
materialLocation: 1
animations:
legacyGenerateAnimations: 4
bakeSimulation: 0
resampleCurves: 1
optimizeGameObjects: 0
removeConstantScaleCurves: 0
motionNodeName: Rig/B-root
animationImportErrors:
animationImportWarnings:
animationRetargetingWarnings:
animationDoRetargetingWarnings: 0
importAnimatedCustomProperties: 0
importConstraints: 0
animationCompression: 0
animationRotationError: 0.5
animationPositionError: 0.5
animationScaleError: 0.5
animationWrapMode: 0
extraExposedTransformPaths: []
extraUserProperties: []
clipAnimations:
- serializedVersion: 16
name: 'HumanF@Run01_Forward [RM]'
takeName: Untitled
internalID: 3094330708855449807
firstFrame: 0
lastFrame: 18
wrapMode: 0
orientationOffsetY: 0
level: 0
cycleOffset: 0
loop: 0
hasAdditiveReferencePose: 0
loopTime: 1
loopBlend: 0
loopBlendOrientation: 1
loopBlendPositionY: 1
loopBlendPositionXZ: 0
keepOriginalOrientation: 1
keepOriginalPositionY: 1
keepOriginalPositionXZ: 1
heightFromFeet: 0
mirror: 0
bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
curves: []
events: []
transformMask:
- path:
weight: 1
- path: HumanF_BodyMesh
weight: 0
- path: Rig
weight: 1
- path: Rig/B-root
weight: 1
- path: Rig/B-root/B-hips
weight: 1
- path: Rig/B-root/B-hips/B-spine
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck/B-head
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck/B-head/B-jaw
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-handProp.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L/B-indexFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L/B-indexFinger02.L/B-indexFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L/B-middleFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L/B-middleFinger02.L/B-middleFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L/B-pinky02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L/B-pinky02.L/B-pinky03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L/B-ringFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L/B-ringFinger02.L/B-ringFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L/B-thumb02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L/B-thumb02.L/B-thumb03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-handProp.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R/B-indexFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R/B-indexFinger02.R/B-indexFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R/B-middleFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R/B-middleFinger02.R/B-middleFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R/B-pinky02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R/B-pinky02.R/B-pinky03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R/B-ringFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R/B-ringFinger02.R/B-ringFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R/B-thumb02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R/B-thumb02.R/B-thumb03.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L/B-foot.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L/B-foot.L/B-toe.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R/B-foot.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R/B-foot.R/B-toe.R
weight: 1
- path: Rig/B-root/B-spineProxy
weight: 1
maskType: 1
maskSource: {fileID: 31900000, guid: 89527f5525238ee44b3182458d85143a, type: 2}
additiveReferencePoseFrame: 0
isReadable: 0
meshes:
lODScreenPercentages: []
globalScale: 1
meshCompression: 0
addColliders: 0
useSRGBMaterialColor: 1
sortHierarchyByName: 1
importPhysicalCameras: 1
importVisibility: 1
importBlendShapes: 1
importCameras: 1
importLights: 1
nodeNameCollisionStrategy: 1
fileIdsGeneration: 2
swapUVChannels: 0
generateSecondaryUV: 0
useFileUnits: 1
keepQuads: 0
weldVertices: 1
bakeAxisConversion: 0
preserveHierarchy: 1
skinWeightsMode: 0
maxBonesPerVertex: 4
minBoneWeight: 0.001
optimizeBones: 1
meshOptimizationFlags: -1
indexFormat: 0
secondaryUVAngleDistortion: 8
secondaryUVAreaDistortion: 15.000001
secondaryUVHardAngle: 88
secondaryUVMarginMethod: 1
secondaryUVMinLightmapResolution: 40
secondaryUVMinObjectScale: 1
secondaryUVPackMargin: 4
useFileScale: 1
strictVertexDataChecks: 0
tangentSpace:
normalSmoothAngle: 60
normalImportMode: 0
tangentImportMode: 3
normalCalculationMode: 4
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0
blendShapeNormalImportMode: 1
normalSmoothingSource: 0
referencedClips: []
importAnimation: 1
humanDescription:
serializedVersion: 3
human:
- boneName: B-hips
humanName: Hips
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thigh.L
humanName: LeftUpperLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thigh.R
humanName: RightUpperLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shin.L
humanName: LeftLowerLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shin.R
humanName: RightLowerLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-foot.L
humanName: LeftFoot
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-foot.R
humanName: RightFoot
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-spine
humanName: Spine
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-chest
humanName: Chest
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-neck
humanName: Neck
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-head
humanName: Head
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shoulder.L
humanName: LeftShoulder
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shoulder.R
humanName: RightShoulder
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-upperArm.L
humanName: LeftUpperArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-upperArm.R
humanName: RightUpperArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-forearm.L
humanName: LeftLowerArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-forearm.R
humanName: RightLowerArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-hand.L
humanName: LeftHand
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-hand.R
humanName: RightHand
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-toe.L
humanName: LeftToes
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-toe.R
humanName: RightToes
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-jaw
humanName: Jaw
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb01.L
humanName: Left Thumb Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb02.L
humanName: Left Thumb Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb03.L
humanName: Left Thumb Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger01.L
humanName: Left Index Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger02.L
humanName: Left Index Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger03.L
humanName: Left Index Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger01.L
humanName: Left Middle Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger02.L
humanName: Left Middle Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger03.L
humanName: Left Middle Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger01.L
humanName: Left Ring Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger02.L
humanName: Left Ring Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger03.L
humanName: Left Ring Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky01.L
humanName: Left Little Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky02.L
humanName: Left Little Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky03.L
humanName: Left Little Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb01.R
humanName: Right Thumb Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb02.R
humanName: Right Thumb Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb03.R
humanName: Right Thumb Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger01.R
humanName: Right Index Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger02.R
humanName: Right Index Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger03.R
humanName: Right Index Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger01.R
humanName: Right Middle Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger02.R
humanName: Right Middle Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger03.R
humanName: Right Middle Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger01.R
humanName: Right Ring Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger02.R
humanName: Right Ring Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger03.R
humanName: Right Ring Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky01.R
humanName: Right Little Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky02.R
humanName: Right Little Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky03.R
humanName: Right Little Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
skeleton:
- name: Human_DummyModel_F(Clone)
parentName:
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: HumanF_BodyMesh
parentName: Human_DummyModel_F(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Rig
parentName: Human_DummyModel_F(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: B-root
parentName: Rig
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: B-spineProxy
parentName: B-root
position: {x: -0, y: 1.092844, z: 0.029147}
rotation: {x: -0.012905054, y: 0, z: -0, w: 0.99991673}
scale: {x: 1, y: 1.0000001, z: 1.0000001}
- name: B-hips
parentName: B-root
position: {x: -0, y: 0.967712, z: 0.016772}
rotation: {x: 0.04926631, y: 0, z: -0, w: 0.9987857}
scale: {x: 1, y: 1.0000004, z: 1.0000004}
- name: B-spine
parentName: B-hips
position: {x: -0, y: 0.12574437, z: 0.00000011940791}
rotation: {x: -0.062152267, y: 0, z: -0, w: 0.99806666}
scale: {x: 1, y: 0.99999976, z: 0.99999976}
- name: B-chest
parentName: B-spine
position: {x: -0, y: 0.13376056, z: -0.00000077390683}
rotation: {x: -0.02258696, y: 0, z: -0, w: 0.9997449}
scale: {x: 1, y: 0.9999996, z: 0.9999996}
- name: B-shoulder.R
parentName: B-chest
position: {x: -0, y: 0.19125995, z: -0.005656177}
rotation: {x: -0.5165573, y: -0.44464085, z: -0.47738376, w: 0.554588}
scale: {x: 1.0000008, y: 1.0000006, z: 1.0000002}
- name: B-upperArm.R
parentName: B-shoulder.R
position: {x: -0.00000043065853, y: 0.1619337, z: -0.000000866464}
rotation: {x: 0.03406315, y: 0.7090742, z: -0.08345674, w: 0.69934857}
scale: {x: 0.99999976, y: 1, z: 0.99999946}
- name: B-forearm.R
parentName: B-upperArm.R
position: {x: -0.0000005071642, y: 0.23413825, z: 0.0000019611641}
rotation: {x: 0.0013730773, y: -0.00042225965, z: 0.0032032696, w: 0.99999386}
scale: {x: 1.0000001, y: 0.99999964, z: 0.9999996}
- name: B-hand.R
parentName: B-forearm.R
position: {x: -0.000000328232, y: 0.19596381, z: -0.0000008355853}
rotation: {x: 0.013529134, y: 0.7054088, z: 0.032969795, w: 0.70790416}
scale: {x: 0.9999999, y: 1.0000002, z: 1.0000005}
- name: B-handProp.R
parentName: B-hand.R
position: {x: 0.0029605331, y: 0.10533051, z: 0.022608897}
rotation: {x: -0.67608327, y: 0.73659164, z: -0.013668106, w: -0.012545319}
scale: {x: 0.99999964, y: 1.0000005, z: 0.9999996}
- name: B-indexFinger01.R
parentName: B-hand.R
position: {x: -0.036052607, y: 0.13202412, z: -0.0022375023}
rotation: {x: 0.019054495, y: -0.0149580045, z: 0.031315368, w: 0.999216}
scale: {x: 1.0000002, y: 0.99999964, z: 0.9999993}
- name: B-indexFinger02.R
parentName: B-indexFinger01.R
position: {x: 0.00000021708313, y: 0.046758045, z: -0.0000005285747}
rotation: {x: 0.040758472, y: 0.02876925, z: -0.0030862393, w: 0.99875003}
scale: {x: 1, y: 1.0000004, z: 1.0000002}
- name: B-indexFinger03.R
parentName: B-indexFinger02.R
position: {x: 0.000000038075022, y: 0.034652043, z: 0.00000019983679}
rotation: {x: -0.006236443, y: 0.004024028, z: -0.0109188985, w: 0.99991286}
scale: {x: 0.9999999, y: 0.9999999, z: 0.99999964}
- name: B-middleFinger01.R
parentName: B-hand.R
position: {x: -0.00928522, y: 0.1318378, z: -0.0089382}
rotation: {x: -0.004700204, y: -0.0032572027, z: -0.001801642, w: 0.99998206}
scale: {x: 1.0000006, y: 0.9999997, z: 0.99999917}
- name: B-middleFinger02.R
parentName: B-middleFinger01.R
position: {x: -0.0000003849299, y: 0.048716273, z: -0.0000001691299}
rotation: {x: 0.039366316, y: 0.04573892, z: 0.00377753, w: 0.9981703}
scale: {x: 0.9999997, y: 1.0000004, z: 1}
- name: B-middleFinger03.R
parentName: B-middleFinger02.R
position: {x: -0.00000039262213, y: 0.035888083, z: 0.00000029152696}
rotation: {x: 0.0049846717, y: -0.02122791, z: -0.0063242065, w: 0.99974227}
scale: {x: 0.99999964, y: 0.99999994, z: 1.0000002}
- name: B-ringFinger01.R
parentName: B-hand.R
position: {x: 0.016020812, y: 0.1283572, z: -0.005707851}
rotation: {x: -0.0071167736, y: 0.0017728558, z: -0.036400504, w: 0.9993104}
scale: {x: 1.0000005, y: 0.9999992, z: 0.9999996}
- name: B-ringFinger02.R
parentName: B-ringFinger01.R
position: {x: 0.00000047158898, y: 0.045192316, z: 0.00000021597218}
rotation: {x: 0.037958622, y: -0.0021153935, z: 0.012520862, w: 0.9991986}
scale: {x: 0.99999946, y: 1.0000005, z: 0.9999997}
- name: B-ringFinger03.R
parentName: B-ringFinger02.R
position: {x: -0.0000004720245, y: 0.034694634, z: 0.00000008820079}
rotation: {x: 0.02091165, y: -0.04065229, z: -0.015794862, w: 0.99882966}
scale: {x: 1.0000002, y: 0.99999976, z: 0.9999997}
- name: B-pinky01.R
parentName: B-hand.R
position: {x: 0.041580904, y: 0.119742304, z: -0.0024299922}
rotation: {x: -0.011731888, y: -0.016481936, z: -0.04421447, w: 0.9988172}
scale: {x: 1.0000002, y: 0.9999994, z: 0.99999917}
- name: B-pinky02.R
parentName: B-pinky01.R
position: {x: 0.0000007804244, y: 0.03832724, z: 0.00000044214514}
rotation: {x: 0.039002027, y: 0.011177708, z: 0.009234122, w: 0.99913394}
scale: {x: 1.0000002, y: 1.0000006, z: 1.0000002}
- name: B-pinky03.R
parentName: B-pinky02.R
position: {x: -0.000000269953, y: 0.03220071, z: -0.0000005856981}
rotation: {x: 0.022101695, y: -0.02182341, z: 0.009210792, w: 0.99947506}
scale: {x: 1.0000005, y: 0.99999994, z: 1.0000007}
- name: B-thumb01.R
parentName: B-hand.R
position: {x: -0.039809253, y: 0.048496302, z: 0.0130518135}
rotation: {x: -0.22471787, y: 0.63045275, z: 0.29821387, w: 0.6805144}
scale: {x: 0.99999946, y: 1.0000002, z: 1.0000005}
- name: B-thumb02.R
parentName: B-thumb01.R
position: {x: 0.00000020260806, y: 0.047178134, z: 0.000000160123}
rotation: {x: 0.038173996, y: 0.013301423, z: -0.008042345, w: 0.9991502}
scale: {x: 1.0000007, y: 0.9999997, z: 0.9999999}
- name: B-thumb03.R
parentName: B-thumb02.R
position: {x: -0.00000069069114, y: 0.03520854, z: 0.00000004046409}
rotation: {x: -0.060352694, y: 0.014396386, z: 0.0074255248, w: 0.9980457}
scale: {x: 0.9999995, y: 1.0000004, z: 1}
- name: B-neck
parentName: B-chest
position: {x: -0, y: 0.27081212, z: 0.0000007058524}
rotation: {x: 0.105346866, y: 0, z: -0, w: 0.99443555}
scale: {x: 1, y: 0.9999997, z: 1.0000007}
- name: B-head
parentName: B-neck
position: {x: -0, y: 0.07409704, z: 0.00000025054106}
rotation: {x: -0.069990024, y: 0, z: -0, w: 0.9975477}
scale: {x: 1, y: 1.0000006, z: 0.99999964}
- name: B-jaw
parentName: B-head
position: {x: -0, y: 0, z: 0}
rotation: {x: 0.70698464, y: 0.000007072379, z: -0.00000706994, w: 0.7072289}
scale: {x: 1, y: 1, z: 1}
- name: B-shoulder.L
parentName: B-chest
position: {x: -0, y: 0.19125995, z: -0.005656177}
rotation: {x: -0.5165571, y: 0.44464028, z: 0.47738382, w: 0.5545886}
scale: {x: 0.9999998, y: 0.9999995, z: 1.0000002}
- name: B-upperArm.L
parentName: B-shoulder.L
position: {x: 0.00000040656337, y: 0.16193385, z: -0.0000008664629}
rotation: {x: 0.033948872, y: -0.70908755, z: 0.08334149, w: 0.69935447}
scale: {x: 0.9999998, y: 1.0000002, z: 0.9999999}
- name: B-forearm.L
parentName: B-upperArm.L
position: {x: 0.000000097359035, y: 0.2341381, z: 0.00000030291466}
rotation: {x: 0.0017385628, y: 0.0004205673, z: -0.0032047313, w: 0.99999326}
scale: {x: 0.99999994, y: 1.0000004, z: 1.0000001}
- name: B-hand.L
parentName: B-forearm.L
position: {x: 0.00000052406216, y: 0.1959644, z: -0.0000011816531}
rotation: {x: 0.013386631, y: -0.70541465, z: -0.032826252, w: 0.7079078}
scale: {x: 0.99999994, y: 0.9999992, z: 0.9999996}
- name: B-handProp.L
parentName: B-hand.L
position: {x: -0.0029615294, y: 0.10533054, z: 0.02260892}
rotation: {x: 0.67608327, y: 0.73659164, z: -0.013668119, w: 0.012545332}
scale: {x: 1.0000006, y: 0.99999946, z: 1.0000006}
- name: B-indexFinger01.L
parentName: B-hand.L
position: {x: 0.03605161, y: 0.13202417, z: -0.0022375062}
rotation: {x: 0.019054513, y: 0.014957919, z: -0.03131587, w: 0.99921596}
scale: {x: 1.0000004, y: 0.9999998, z: 1.0000002}
- name: B-indexFinger02.L
parentName: B-indexFinger01.L
position: {x: 0.00000072554116, y: 0.04675823, z: -0.0000005109258}
rotation: {x: 0.04075494, y: -0.02876944, z: 0.0030826945, w: 0.9987502}
scale: {x: 1.0000001, y: 1.0000002, z: 1.0000002}
- name: B-indexFinger03.L
parentName: B-indexFinger02.L
position: {x: -0.00000009920999, y: 0.034652077, z: 0.00000023013986}
rotation: {x: -0.0062364372, y: -0.004023549, z: 0.010918792, w: 0.99991286}
scale: {x: 0.9999998, y: 1.0000008, z: 0.9999995}
- name: B-middleFinger01.L
parentName: B-hand.L
position: {x: 0.00928522, y: 0.13183793, z: -0.008938214}
rotation: {x: -0.004700207, y: 0.0032570793, z: 0.0018007505, w: 0.99998206}
scale: {x: 1.0000007, y: 0.9999999, z: 1.0000001}
- name: B-middleFinger02.L
parentName: B-middleFinger01.L
position: {x: 0.00000028786184, y: 0.048716314, z: -0.00000017087451}
rotation: {x: 0.039368037, y: -0.045739666, z: -0.0037847473, w: 0.9981702}
scale: {x: 0.99999976, y: 1.000001, z: 1.0000006}
- name: B-middleFinger03.L
parentName: B-middleFinger02.L
position: {x: -0.00000066842983, y: 0.035888, z: 0.00000028642995}
rotation: {x: 0.0049827034, y: 0.021227859, z: 0.0063241003, w: 0.99974227}
scale: {x: 0.9999996, y: 0.99999905, z: 0.99999934}
- name: B-ringFinger01.L
parentName: B-hand.L
position: {x: -0.016021809, y: 0.12835726, z: -0.005707858}
rotation: {x: -0.007116776, y: -0.0017729683, z: 0.036399588, w: 0.99931043}
scale: {x: 1.0000005, y: 1.0000002, z: 1.0000006}
- name: B-ringFinger02.L
parentName: B-ringFinger01.L
position: {x: 0.00000043795694, y: 0.04519233, z: 0.00000021050154}
rotation: {x: 0.037963506, y: 0.0021157071, z: -0.01252746, w: 0.9991984}
scale: {x: 0.9999995, y: 0.99999964, z: 0.9999996}
- name: B-ringFinger03.L
parentName: B-ringFinger02.L
position: {x: 0.00000034561023, y: 0.03469565, z: -0.00000007648653}
rotation: {x: 0.020911071, y: 0.04065225, z: 0.015794758, w: 0.99882966}
scale: {x: 1.0000001, y: 1.0000005, z: 0.9999997}
- name: B-pinky01.L
parentName: B-hand.L
position: {x: -0.041581903, y: 0.119742356, z: -0.0024299957}
rotation: {x: -0.01172906, y: 0.01648238, z: 0.0442254, w: 0.9988167}
scale: {x: 1.0000002, y: 1.0000004, z: 1.0000002}
- name: B-pinky02.L
parentName: B-pinky01.L
position: {x: 0.00000014151807, y: 0.03832722, z: 0.00000047056287}
rotation: {x: 0.039005004, y: -0.011177422, z: -0.009239738, w: 0.99913377}
scale: {x: 1.0000002, y: 0.99999946, z: 1.0000001}
- name: B-pinky03.L
parentName: B-pinky02.L
position: {x: 0.000000233103, y: 0.032200746, z: -0.00000055902217}
rotation: {x: 0.022101717, y: 0.02182328, z: -0.009211465, w: 0.99947506}
scale: {x: 0.9999995, y: 1, z: 0.99999964}
- name: B-thumb01.L
parentName: B-hand.L
position: {x: 0.03980834, y: 0.048495278, z: 0.013051865}
rotation: {x: -0.2247114, y: -0.6304557, z: -0.2982149, w: 0.6805132}
scale: {x: 1.0000005, y: 1, z: 1.0000005}
- name: B-thumb02.L
parentName: B-thumb01.L
position: {x: -0.0000007063521, y: 0.047179468, z: -0.00000013365789}
rotation: {x: 0.038171936, y: -0.013301728, z: 0.008042519, w: 0.9991503}
scale: {x: 1.0000004, y: 1, z: 0.9999994}
- name: B-thumb03.L
parentName: B-thumb02.L
position: {x: 0.0000007190916, y: 0.035208564, z: 0.00000017922088}
rotation: {x: -0.06035389, y: -0.014396597, z: -0.007425322, w: 0.9980456}
scale: {x: 0.9999992, y: 0.99999994, z: 1.0000001}
- name: B-thigh.L
parentName: B-hips
position: {x: -0.096950985, y: -0.05446949, z: 0.0020414153}
rotation: {x: 0.9977441, y: 0.011110197, z: -0.0039620763, w: 0.066088475}
scale: {x: 1.0000002, y: 0.9999997, z: 1.000001}
- name: B-shin.L
parentName: B-thigh.L
position: {x: 0.00000018468991, y: 0.41111633, z: 0.0000005281011}
rotation: {x: 0.067057244, y: -0.00057845906, z: 0.011617889, w: 0.9976813}
scale: {x: 0.9999997, y: 1.0000002, z: 0.99999964}
- name: B-foot.L
parentName: B-shin.L
position: {x: -0.00000017405802, y: 0.3880767, z: -0.00000019306846}
rotation: {x: -0.5354999, y: 0.004330197, z: 0.0016612022, w: 0.84452266}
scale: {x: 1.0000001, y: 0.9999997, z: 0.99999976}
- name: B-toe.L
parentName: B-foot.L
position: {x: -0.00000027025197, y: 0.17254004, z: -0.000000117418054}
rotation: {x: 0.000012936387, y: 0.9622731, z: -0.27208534, w: 0.00017343421}
scale: {x: 1, y: 1.0000018, z: 0.999999}
- name: B-thigh.R
parentName: B-hips
position: {x: 0.096950985, y: -0.05446959, z: 0.0020404202}
rotation: {x: 0.9977441, y: -0.011109428, z: 0.003967029, w: 0.066088304}
scale: {x: 1.0000004, y: 0.99999976, z: 1.000008}
- name: B-shin.R
parentName: B-thigh.R
position: {x: 0.0000005496826, y: 0.41111633, z: -0.00000065481464}
rotation: {x: 0.06705632, y: 0.0005783735, z: -0.011616509, w: 0.99768144}
scale: {x: 0.9999997, y: 1.0000002, z: 1.0000007}
- name: B-foot.R
parentName: B-shin.R
position: {x: -0.00000044263592, y: 0.3880767, z: 0.000000107811644}
rotation: {x: -0.53550065, y: -0.0043338453, z: -0.0016630876, w: 0.84452206}
scale: {x: 1, y: 0.9999993, z: 0.99999994}
- name: B-toe.R
parentName: B-foot.R
position: {x: 0.00000074386196, y: 0.17254034, z: 0.00000017937037}
rotation: {x: -0.000012542016, y: 0.96227294, z: -0.27208585, w: -0.00017487761}
scale: {x: 1, y: 1.0000029, z: 0.999997}
armTwist: 0.5
foreArmTwist: 0.5
upperLegTwist: 0.5
legTwist: 0.5
armStretch: 0.05
legStretch: 0.05
feetSpacing: 0
globalScale: 1
rootMotionBoneName:
hasTranslationDoF: 0
hasExtraRoot: 0
skeletonHasParents: 1
lastHumanDescriptionAvatarSource: {fileID: 9000000, guid: 1841c298173cdad4db8df8602c8f1c8d,
type: 3}
autoGenerateAvatarMappingIfUnspecified: 1
animationType: 3
humanoidOversampling: 1
avatarSetup: 2
addHumanoidExtraRootOnlyWhenUsingAvatar: 1
importBlendShapeDeformPercent: 1
remapMaterialsIfMaterialImportModeIsNone: 0
additionalBone: 0
userData:
assetBundleName:
assetBundleVariant:
AssetOrigin:
serializedVersion: 1
productId: 154271
packageName: Human Basic Motions FREE
packageVersion: 2.4.2
assetPath: Assets/Kevin Iglesias/Human Animations/Animations/Female/Movement/Run/RootMotion/HumanF@Run01_Forward
[RM].fbx
uploadId: 908942

View file

@ -1,974 +0,0 @@
fileFormatVersion: 2
guid: bf3d864026a7e1146a27e29a8626bc69
ModelImporter:
serializedVersion: 22200
internalIDToNameTable: []
externalObjects: {}
materials:
materialImportMode: 0
materialName: 0
materialSearch: 1
materialLocation: 1
animations:
legacyGenerateAnimations: 4
bakeSimulation: 0
resampleCurves: 1
optimizeGameObjects: 0
removeConstantScaleCurves: 0
motionNodeName: Rig/B-root
animationImportErrors:
animationImportWarnings:
animationRetargetingWarnings:
animationDoRetargetingWarnings: 0
importAnimatedCustomProperties: 0
importConstraints: 0
animationCompression: 0
animationRotationError: 0.5
animationPositionError: 0.5
animationScaleError: 0.5
animationWrapMode: 0
extraExposedTransformPaths: []
extraUserProperties: []
clipAnimations:
- serializedVersion: 16
name: 'HumanF@Run01_ForwardLeft [RM]'
takeName: Untitled
internalID: 3094330708855449807
firstFrame: 0
lastFrame: 18
wrapMode: 0
orientationOffsetY: 0
level: 0
cycleOffset: 0
loop: 0
hasAdditiveReferencePose: 0
loopTime: 1
loopBlend: 0
loopBlendOrientation: 1
loopBlendPositionY: 1
loopBlendPositionXZ: 0
keepOriginalOrientation: 1
keepOriginalPositionY: 1
keepOriginalPositionXZ: 1
heightFromFeet: 0
mirror: 0
bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
curves: []
events: []
transformMask:
- path:
weight: 1
- path: HumanF_BodyMesh
weight: 0
- path: Rig
weight: 1
- path: Rig/B-root
weight: 1
- path: Rig/B-root/B-hips
weight: 1
- path: Rig/B-root/B-hips/B-spine
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck/B-head
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck/B-head/B-jaw
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-handProp.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L/B-indexFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L/B-indexFinger02.L/B-indexFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L/B-middleFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L/B-middleFinger02.L/B-middleFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L/B-pinky02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L/B-pinky02.L/B-pinky03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L/B-ringFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L/B-ringFinger02.L/B-ringFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L/B-thumb02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L/B-thumb02.L/B-thumb03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-handProp.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R/B-indexFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R/B-indexFinger02.R/B-indexFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R/B-middleFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R/B-middleFinger02.R/B-middleFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R/B-pinky02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R/B-pinky02.R/B-pinky03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R/B-ringFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R/B-ringFinger02.R/B-ringFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R/B-thumb02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R/B-thumb02.R/B-thumb03.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L/B-foot.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L/B-foot.L/B-toe.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R/B-foot.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R/B-foot.R/B-toe.R
weight: 1
- path: Rig/B-root/B-spineProxy
weight: 1
maskType: 1
maskSource: {fileID: 31900000, guid: 89527f5525238ee44b3182458d85143a, type: 2}
additiveReferencePoseFrame: 0
isReadable: 0
meshes:
lODScreenPercentages: []
globalScale: 1
meshCompression: 0
addColliders: 0
useSRGBMaterialColor: 1
sortHierarchyByName: 1
importPhysicalCameras: 1
importVisibility: 1
importBlendShapes: 1
importCameras: 1
importLights: 1
nodeNameCollisionStrategy: 1
fileIdsGeneration: 2
swapUVChannels: 0
generateSecondaryUV: 0
useFileUnits: 1
keepQuads: 0
weldVertices: 1
bakeAxisConversion: 0
preserveHierarchy: 1
skinWeightsMode: 0
maxBonesPerVertex: 4
minBoneWeight: 0.001
optimizeBones: 1
meshOptimizationFlags: -1
indexFormat: 0
secondaryUVAngleDistortion: 8
secondaryUVAreaDistortion: 15.000001
secondaryUVHardAngle: 88
secondaryUVMarginMethod: 1
secondaryUVMinLightmapResolution: 40
secondaryUVMinObjectScale: 1
secondaryUVPackMargin: 4
useFileScale: 1
strictVertexDataChecks: 0
tangentSpace:
normalSmoothAngle: 60
normalImportMode: 0
tangentImportMode: 3
normalCalculationMode: 4
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0
blendShapeNormalImportMode: 1
normalSmoothingSource: 0
referencedClips: []
importAnimation: 1
humanDescription:
serializedVersion: 3
human:
- boneName: B-hips
humanName: Hips
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thigh.L
humanName: LeftUpperLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thigh.R
humanName: RightUpperLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shin.L
humanName: LeftLowerLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shin.R
humanName: RightLowerLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-foot.L
humanName: LeftFoot
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-foot.R
humanName: RightFoot
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-spine
humanName: Spine
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-chest
humanName: Chest
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-neck
humanName: Neck
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-head
humanName: Head
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shoulder.L
humanName: LeftShoulder
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shoulder.R
humanName: RightShoulder
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-upperArm.L
humanName: LeftUpperArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-upperArm.R
humanName: RightUpperArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-forearm.L
humanName: LeftLowerArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-forearm.R
humanName: RightLowerArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-hand.L
humanName: LeftHand
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-hand.R
humanName: RightHand
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-toe.L
humanName: LeftToes
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-toe.R
humanName: RightToes
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-jaw
humanName: Jaw
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb01.L
humanName: Left Thumb Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb02.L
humanName: Left Thumb Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb03.L
humanName: Left Thumb Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger01.L
humanName: Left Index Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger02.L
humanName: Left Index Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger03.L
humanName: Left Index Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger01.L
humanName: Left Middle Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger02.L
humanName: Left Middle Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger03.L
humanName: Left Middle Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger01.L
humanName: Left Ring Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger02.L
humanName: Left Ring Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger03.L
humanName: Left Ring Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky01.L
humanName: Left Little Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky02.L
humanName: Left Little Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky03.L
humanName: Left Little Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb01.R
humanName: Right Thumb Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb02.R
humanName: Right Thumb Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb03.R
humanName: Right Thumb Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger01.R
humanName: Right Index Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger02.R
humanName: Right Index Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger03.R
humanName: Right Index Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger01.R
humanName: Right Middle Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger02.R
humanName: Right Middle Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger03.R
humanName: Right Middle Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger01.R
humanName: Right Ring Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger02.R
humanName: Right Ring Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger03.R
humanName: Right Ring Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky01.R
humanName: Right Little Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky02.R
humanName: Right Little Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky03.R
humanName: Right Little Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
skeleton:
- name: Human_DummyModel_F(Clone)
parentName:
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: HumanF_BodyMesh
parentName: Human_DummyModel_F(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Rig
parentName: Human_DummyModel_F(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: B-root
parentName: Rig
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: B-spineProxy
parentName: B-root
position: {x: -0, y: 1.092844, z: 0.029147}
rotation: {x: -0.012905054, y: 0, z: -0, w: 0.99991673}
scale: {x: 1, y: 1.0000001, z: 1.0000001}
- name: B-hips
parentName: B-root
position: {x: -0, y: 0.967712, z: 0.016772}
rotation: {x: 0.04926631, y: 0, z: -0, w: 0.9987857}
scale: {x: 1, y: 1.0000004, z: 1.0000004}
- name: B-spine
parentName: B-hips
position: {x: -0, y: 0.12574437, z: 0.00000011940791}
rotation: {x: -0.062152267, y: 0, z: -0, w: 0.99806666}
scale: {x: 1, y: 0.99999976, z: 0.99999976}
- name: B-chest
parentName: B-spine
position: {x: -0, y: 0.13376056, z: -0.00000077390683}
rotation: {x: -0.02258696, y: 0, z: -0, w: 0.9997449}
scale: {x: 1, y: 0.9999996, z: 0.9999996}
- name: B-shoulder.R
parentName: B-chest
position: {x: -0, y: 0.19125995, z: -0.005656177}
rotation: {x: -0.5165573, y: -0.44464085, z: -0.47738376, w: 0.554588}
scale: {x: 1.0000008, y: 1.0000006, z: 1.0000002}
- name: B-upperArm.R
parentName: B-shoulder.R
position: {x: -0.00000043065853, y: 0.1619337, z: -0.000000866464}
rotation: {x: 0.03406315, y: 0.7090742, z: -0.08345674, w: 0.69934857}
scale: {x: 0.99999976, y: 1, z: 0.99999946}
- name: B-forearm.R
parentName: B-upperArm.R
position: {x: -0.0000005071642, y: 0.23413825, z: 0.0000019611641}
rotation: {x: 0.0013730773, y: -0.00042225965, z: 0.0032032696, w: 0.99999386}
scale: {x: 1.0000001, y: 0.99999964, z: 0.9999996}
- name: B-hand.R
parentName: B-forearm.R
position: {x: -0.000000328232, y: 0.19596381, z: -0.0000008355853}
rotation: {x: 0.013529134, y: 0.7054088, z: 0.032969795, w: 0.70790416}
scale: {x: 0.9999999, y: 1.0000002, z: 1.0000005}
- name: B-handProp.R
parentName: B-hand.R
position: {x: 0.0029605331, y: 0.10533051, z: 0.022608897}
rotation: {x: -0.67608327, y: 0.73659164, z: -0.013668106, w: -0.012545319}
scale: {x: 0.99999964, y: 1.0000005, z: 0.9999996}
- name: B-indexFinger01.R
parentName: B-hand.R
position: {x: -0.036052607, y: 0.13202412, z: -0.0022375023}
rotation: {x: 0.019054495, y: -0.0149580045, z: 0.031315368, w: 0.999216}
scale: {x: 1.0000002, y: 0.99999964, z: 0.9999993}
- name: B-indexFinger02.R
parentName: B-indexFinger01.R
position: {x: 0.00000021708313, y: 0.046758045, z: -0.0000005285747}
rotation: {x: 0.040758472, y: 0.02876925, z: -0.0030862393, w: 0.99875003}
scale: {x: 1, y: 1.0000004, z: 1.0000002}
- name: B-indexFinger03.R
parentName: B-indexFinger02.R
position: {x: 0.000000038075022, y: 0.034652043, z: 0.00000019983679}
rotation: {x: -0.006236443, y: 0.004024028, z: -0.0109188985, w: 0.99991286}
scale: {x: 0.9999999, y: 0.9999999, z: 0.99999964}
- name: B-middleFinger01.R
parentName: B-hand.R
position: {x: -0.00928522, y: 0.1318378, z: -0.0089382}
rotation: {x: -0.004700204, y: -0.0032572027, z: -0.001801642, w: 0.99998206}
scale: {x: 1.0000006, y: 0.9999997, z: 0.99999917}
- name: B-middleFinger02.R
parentName: B-middleFinger01.R
position: {x: -0.0000003849299, y: 0.048716273, z: -0.0000001691299}
rotation: {x: 0.039366316, y: 0.04573892, z: 0.00377753, w: 0.9981703}
scale: {x: 0.9999997, y: 1.0000004, z: 1}
- name: B-middleFinger03.R
parentName: B-middleFinger02.R
position: {x: -0.00000039262213, y: 0.035888083, z: 0.00000029152696}
rotation: {x: 0.0049846717, y: -0.02122791, z: -0.0063242065, w: 0.99974227}
scale: {x: 0.99999964, y: 0.99999994, z: 1.0000002}
- name: B-ringFinger01.R
parentName: B-hand.R
position: {x: 0.016020812, y: 0.1283572, z: -0.005707851}
rotation: {x: -0.0071167736, y: 0.0017728558, z: -0.036400504, w: 0.9993104}
scale: {x: 1.0000005, y: 0.9999992, z: 0.9999996}
- name: B-ringFinger02.R
parentName: B-ringFinger01.R
position: {x: 0.00000047158898, y: 0.045192316, z: 0.00000021597218}
rotation: {x: 0.037958622, y: -0.0021153935, z: 0.012520862, w: 0.9991986}
scale: {x: 0.99999946, y: 1.0000005, z: 0.9999997}
- name: B-ringFinger03.R
parentName: B-ringFinger02.R
position: {x: -0.0000004720245, y: 0.034694634, z: 0.00000008820079}
rotation: {x: 0.02091165, y: -0.04065229, z: -0.015794862, w: 0.99882966}
scale: {x: 1.0000002, y: 0.99999976, z: 0.9999997}
- name: B-pinky01.R
parentName: B-hand.R
position: {x: 0.041580904, y: 0.119742304, z: -0.0024299922}
rotation: {x: -0.011731888, y: -0.016481936, z: -0.04421447, w: 0.9988172}
scale: {x: 1.0000002, y: 0.9999994, z: 0.99999917}
- name: B-pinky02.R
parentName: B-pinky01.R
position: {x: 0.0000007804244, y: 0.03832724, z: 0.00000044214514}
rotation: {x: 0.039002027, y: 0.011177708, z: 0.009234122, w: 0.99913394}
scale: {x: 1.0000002, y: 1.0000006, z: 1.0000002}
- name: B-pinky03.R
parentName: B-pinky02.R
position: {x: -0.000000269953, y: 0.03220071, z: -0.0000005856981}
rotation: {x: 0.022101695, y: -0.02182341, z: 0.009210792, w: 0.99947506}
scale: {x: 1.0000005, y: 0.99999994, z: 1.0000007}
- name: B-thumb01.R
parentName: B-hand.R
position: {x: -0.039809253, y: 0.048496302, z: 0.0130518135}
rotation: {x: -0.22471787, y: 0.63045275, z: 0.29821387, w: 0.6805144}
scale: {x: 0.99999946, y: 1.0000002, z: 1.0000005}
- name: B-thumb02.R
parentName: B-thumb01.R
position: {x: 0.00000020260806, y: 0.047178134, z: 0.000000160123}
rotation: {x: 0.038173996, y: 0.013301423, z: -0.008042345, w: 0.9991502}
scale: {x: 1.0000007, y: 0.9999997, z: 0.9999999}
- name: B-thumb03.R
parentName: B-thumb02.R
position: {x: -0.00000069069114, y: 0.03520854, z: 0.00000004046409}
rotation: {x: -0.060352694, y: 0.014396386, z: 0.0074255248, w: 0.9980457}
scale: {x: 0.9999995, y: 1.0000004, z: 1}
- name: B-neck
parentName: B-chest
position: {x: -0, y: 0.27081212, z: 0.0000007058524}
rotation: {x: 0.105346866, y: 0, z: -0, w: 0.99443555}
scale: {x: 1, y: 0.9999997, z: 1.0000007}
- name: B-head
parentName: B-neck
position: {x: -0, y: 0.07409704, z: 0.00000025054106}
rotation: {x: -0.069990024, y: 0, z: -0, w: 0.9975477}
scale: {x: 1, y: 1.0000006, z: 0.99999964}
- name: B-jaw
parentName: B-head
position: {x: -0, y: 0, z: 0}
rotation: {x: 0.70698464, y: 0.000007072379, z: -0.00000706994, w: 0.7072289}
scale: {x: 1, y: 1, z: 1}
- name: B-shoulder.L
parentName: B-chest
position: {x: -0, y: 0.19125995, z: -0.005656177}
rotation: {x: -0.5165571, y: 0.44464028, z: 0.47738382, w: 0.5545886}
scale: {x: 0.9999998, y: 0.9999995, z: 1.0000002}
- name: B-upperArm.L
parentName: B-shoulder.L
position: {x: 0.00000040656337, y: 0.16193385, z: -0.0000008664629}
rotation: {x: 0.033948872, y: -0.70908755, z: 0.08334149, w: 0.69935447}
scale: {x: 0.9999998, y: 1.0000002, z: 0.9999999}
- name: B-forearm.L
parentName: B-upperArm.L
position: {x: 0.000000097359035, y: 0.2341381, z: 0.00000030291466}
rotation: {x: 0.0017385628, y: 0.0004205673, z: -0.0032047313, w: 0.99999326}
scale: {x: 0.99999994, y: 1.0000004, z: 1.0000001}
- name: B-hand.L
parentName: B-forearm.L
position: {x: 0.00000052406216, y: 0.1959644, z: -0.0000011816531}
rotation: {x: 0.013386631, y: -0.70541465, z: -0.032826252, w: 0.7079078}
scale: {x: 0.99999994, y: 0.9999992, z: 0.9999996}
- name: B-handProp.L
parentName: B-hand.L
position: {x: -0.0029615294, y: 0.10533054, z: 0.02260892}
rotation: {x: 0.67608327, y: 0.73659164, z: -0.013668119, w: 0.012545332}
scale: {x: 1.0000006, y: 0.99999946, z: 1.0000006}
- name: B-indexFinger01.L
parentName: B-hand.L
position: {x: 0.03605161, y: 0.13202417, z: -0.0022375062}
rotation: {x: 0.019054513, y: 0.014957919, z: -0.03131587, w: 0.99921596}
scale: {x: 1.0000004, y: 0.9999998, z: 1.0000002}
- name: B-indexFinger02.L
parentName: B-indexFinger01.L
position: {x: 0.00000072554116, y: 0.04675823, z: -0.0000005109258}
rotation: {x: 0.04075494, y: -0.02876944, z: 0.0030826945, w: 0.9987502}
scale: {x: 1.0000001, y: 1.0000002, z: 1.0000002}
- name: B-indexFinger03.L
parentName: B-indexFinger02.L
position: {x: -0.00000009920999, y: 0.034652077, z: 0.00000023013986}
rotation: {x: -0.0062364372, y: -0.004023549, z: 0.010918792, w: 0.99991286}
scale: {x: 0.9999998, y: 1.0000008, z: 0.9999995}
- name: B-middleFinger01.L
parentName: B-hand.L
position: {x: 0.00928522, y: 0.13183793, z: -0.008938214}
rotation: {x: -0.004700207, y: 0.0032570793, z: 0.0018007505, w: 0.99998206}
scale: {x: 1.0000007, y: 0.9999999, z: 1.0000001}
- name: B-middleFinger02.L
parentName: B-middleFinger01.L
position: {x: 0.00000028786184, y: 0.048716314, z: -0.00000017087451}
rotation: {x: 0.039368037, y: -0.045739666, z: -0.0037847473, w: 0.9981702}
scale: {x: 0.99999976, y: 1.000001, z: 1.0000006}
- name: B-middleFinger03.L
parentName: B-middleFinger02.L
position: {x: -0.00000066842983, y: 0.035888, z: 0.00000028642995}
rotation: {x: 0.0049827034, y: 0.021227859, z: 0.0063241003, w: 0.99974227}
scale: {x: 0.9999996, y: 0.99999905, z: 0.99999934}
- name: B-ringFinger01.L
parentName: B-hand.L
position: {x: -0.016021809, y: 0.12835726, z: -0.005707858}
rotation: {x: -0.007116776, y: -0.0017729683, z: 0.036399588, w: 0.99931043}
scale: {x: 1.0000005, y: 1.0000002, z: 1.0000006}
- name: B-ringFinger02.L
parentName: B-ringFinger01.L
position: {x: 0.00000043795694, y: 0.04519233, z: 0.00000021050154}
rotation: {x: 0.037963506, y: 0.0021157071, z: -0.01252746, w: 0.9991984}
scale: {x: 0.9999995, y: 0.99999964, z: 0.9999996}
- name: B-ringFinger03.L
parentName: B-ringFinger02.L
position: {x: 0.00000034561023, y: 0.03469565, z: -0.00000007648653}
rotation: {x: 0.020911071, y: 0.04065225, z: 0.015794758, w: 0.99882966}
scale: {x: 1.0000001, y: 1.0000005, z: 0.9999997}
- name: B-pinky01.L
parentName: B-hand.L
position: {x: -0.041581903, y: 0.119742356, z: -0.0024299957}
rotation: {x: -0.01172906, y: 0.01648238, z: 0.0442254, w: 0.9988167}
scale: {x: 1.0000002, y: 1.0000004, z: 1.0000002}
- name: B-pinky02.L
parentName: B-pinky01.L
position: {x: 0.00000014151807, y: 0.03832722, z: 0.00000047056287}
rotation: {x: 0.039005004, y: -0.011177422, z: -0.009239738, w: 0.99913377}
scale: {x: 1.0000002, y: 0.99999946, z: 1.0000001}
- name: B-pinky03.L
parentName: B-pinky02.L
position: {x: 0.000000233103, y: 0.032200746, z: -0.00000055902217}
rotation: {x: 0.022101717, y: 0.02182328, z: -0.009211465, w: 0.99947506}
scale: {x: 0.9999995, y: 1, z: 0.99999964}
- name: B-thumb01.L
parentName: B-hand.L
position: {x: 0.03980834, y: 0.048495278, z: 0.013051865}
rotation: {x: -0.2247114, y: -0.6304557, z: -0.2982149, w: 0.6805132}
scale: {x: 1.0000005, y: 1, z: 1.0000005}
- name: B-thumb02.L
parentName: B-thumb01.L
position: {x: -0.0000007063521, y: 0.047179468, z: -0.00000013365789}
rotation: {x: 0.038171936, y: -0.013301728, z: 0.008042519, w: 0.9991503}
scale: {x: 1.0000004, y: 1, z: 0.9999994}
- name: B-thumb03.L
parentName: B-thumb02.L
position: {x: 0.0000007190916, y: 0.035208564, z: 0.00000017922088}
rotation: {x: -0.06035389, y: -0.014396597, z: -0.007425322, w: 0.9980456}
scale: {x: 0.9999992, y: 0.99999994, z: 1.0000001}
- name: B-thigh.L
parentName: B-hips
position: {x: -0.096950985, y: -0.05446949, z: 0.0020414153}
rotation: {x: 0.9977441, y: 0.011110197, z: -0.0039620763, w: 0.066088475}
scale: {x: 1.0000002, y: 0.9999997, z: 1.000001}
- name: B-shin.L
parentName: B-thigh.L
position: {x: 0.00000018468991, y: 0.41111633, z: 0.0000005281011}
rotation: {x: 0.067057244, y: -0.00057845906, z: 0.011617889, w: 0.9976813}
scale: {x: 0.9999997, y: 1.0000002, z: 0.99999964}
- name: B-foot.L
parentName: B-shin.L
position: {x: -0.00000017405802, y: 0.3880767, z: -0.00000019306846}
rotation: {x: -0.5354999, y: 0.004330197, z: 0.0016612022, w: 0.84452266}
scale: {x: 1.0000001, y: 0.9999997, z: 0.99999976}
- name: B-toe.L
parentName: B-foot.L
position: {x: -0.00000027025197, y: 0.17254004, z: -0.000000117418054}
rotation: {x: 0.000012936387, y: 0.9622731, z: -0.27208534, w: 0.00017343421}
scale: {x: 1, y: 1.0000018, z: 0.999999}
- name: B-thigh.R
parentName: B-hips
position: {x: 0.096950985, y: -0.05446959, z: 0.0020404202}
rotation: {x: 0.9977441, y: -0.011109428, z: 0.003967029, w: 0.066088304}
scale: {x: 1.0000004, y: 0.99999976, z: 1.000008}
- name: B-shin.R
parentName: B-thigh.R
position: {x: 0.0000005496826, y: 0.41111633, z: -0.00000065481464}
rotation: {x: 0.06705632, y: 0.0005783735, z: -0.011616509, w: 0.99768144}
scale: {x: 0.9999997, y: 1.0000002, z: 1.0000007}
- name: B-foot.R
parentName: B-shin.R
position: {x: -0.00000044263592, y: 0.3880767, z: 0.000000107811644}
rotation: {x: -0.53550065, y: -0.0043338453, z: -0.0016630876, w: 0.84452206}
scale: {x: 1, y: 0.9999993, z: 0.99999994}
- name: B-toe.R
parentName: B-foot.R
position: {x: 0.00000074386196, y: 0.17254034, z: 0.00000017937037}
rotation: {x: -0.000012542016, y: 0.96227294, z: -0.27208585, w: -0.00017487761}
scale: {x: 1, y: 1.0000029, z: 0.999997}
armTwist: 0.5
foreArmTwist: 0.5
upperLegTwist: 0.5
legTwist: 0.5
armStretch: 0.05
legStretch: 0.05
feetSpacing: 0
globalScale: 1
rootMotionBoneName:
hasTranslationDoF: 0
hasExtraRoot: 0
skeletonHasParents: 1
lastHumanDescriptionAvatarSource: {fileID: 9000000, guid: 1841c298173cdad4db8df8602c8f1c8d,
type: 3}
autoGenerateAvatarMappingIfUnspecified: 1
animationType: 3
humanoidOversampling: 1
avatarSetup: 2
addHumanoidExtraRootOnlyWhenUsingAvatar: 1
importBlendShapeDeformPercent: 1
remapMaterialsIfMaterialImportModeIsNone: 0
additionalBone: 0
userData:
assetBundleName:
assetBundleVariant:
AssetOrigin:
serializedVersion: 1
productId: 154271
packageName: Human Basic Motions FREE
packageVersion: 2.4.2
assetPath: Assets/Kevin Iglesias/Human Animations/Animations/Female/Movement/Run/RootMotion/HumanF@Run01_ForwardLeft
[RM].fbx
uploadId: 908942

View file

@ -1,974 +0,0 @@
fileFormatVersion: 2
guid: 13a7a8b93b87c984dbd8e0556bfebd96
ModelImporter:
serializedVersion: 22200
internalIDToNameTable: []
externalObjects: {}
materials:
materialImportMode: 0
materialName: 0
materialSearch: 1
materialLocation: 1
animations:
legacyGenerateAnimations: 4
bakeSimulation: 0
resampleCurves: 1
optimizeGameObjects: 0
removeConstantScaleCurves: 0
motionNodeName: Rig/B-root
animationImportErrors:
animationImportWarnings:
animationRetargetingWarnings:
animationDoRetargetingWarnings: 0
importAnimatedCustomProperties: 0
importConstraints: 0
animationCompression: 0
animationRotationError: 0.5
animationPositionError: 0.5
animationScaleError: 0.5
animationWrapMode: 0
extraExposedTransformPaths: []
extraUserProperties: []
clipAnimations:
- serializedVersion: 16
name: 'HumanF@Run01_ForwardRight [RM]'
takeName: Untitled
internalID: 3094330708855449807
firstFrame: 0
lastFrame: 18
wrapMode: 0
orientationOffsetY: 0
level: 0
cycleOffset: 0
loop: 0
hasAdditiveReferencePose: 0
loopTime: 1
loopBlend: 0
loopBlendOrientation: 1
loopBlendPositionY: 1
loopBlendPositionXZ: 0
keepOriginalOrientation: 1
keepOriginalPositionY: 1
keepOriginalPositionXZ: 1
heightFromFeet: 0
mirror: 0
bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
curves: []
events: []
transformMask:
- path:
weight: 1
- path: HumanF_BodyMesh
weight: 0
- path: Rig
weight: 1
- path: Rig/B-root
weight: 1
- path: Rig/B-root/B-hips
weight: 1
- path: Rig/B-root/B-hips/B-spine
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck/B-head
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck/B-head/B-jaw
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-handProp.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L/B-indexFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L/B-indexFinger02.L/B-indexFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L/B-middleFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L/B-middleFinger02.L/B-middleFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L/B-pinky02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L/B-pinky02.L/B-pinky03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L/B-ringFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L/B-ringFinger02.L/B-ringFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L/B-thumb02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L/B-thumb02.L/B-thumb03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-handProp.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R/B-indexFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R/B-indexFinger02.R/B-indexFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R/B-middleFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R/B-middleFinger02.R/B-middleFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R/B-pinky02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R/B-pinky02.R/B-pinky03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R/B-ringFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R/B-ringFinger02.R/B-ringFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R/B-thumb02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R/B-thumb02.R/B-thumb03.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L/B-foot.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L/B-foot.L/B-toe.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R/B-foot.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R/B-foot.R/B-toe.R
weight: 1
- path: Rig/B-root/B-spineProxy
weight: 1
maskType: 1
maskSource: {fileID: 31900000, guid: 89527f5525238ee44b3182458d85143a, type: 2}
additiveReferencePoseFrame: 0
isReadable: 0
meshes:
lODScreenPercentages: []
globalScale: 1
meshCompression: 0
addColliders: 0
useSRGBMaterialColor: 1
sortHierarchyByName: 1
importPhysicalCameras: 1
importVisibility: 1
importBlendShapes: 1
importCameras: 1
importLights: 1
nodeNameCollisionStrategy: 1
fileIdsGeneration: 2
swapUVChannels: 0
generateSecondaryUV: 0
useFileUnits: 1
keepQuads: 0
weldVertices: 1
bakeAxisConversion: 0
preserveHierarchy: 1
skinWeightsMode: 0
maxBonesPerVertex: 4
minBoneWeight: 0.001
optimizeBones: 1
meshOptimizationFlags: -1
indexFormat: 0
secondaryUVAngleDistortion: 8
secondaryUVAreaDistortion: 15.000001
secondaryUVHardAngle: 88
secondaryUVMarginMethod: 1
secondaryUVMinLightmapResolution: 40
secondaryUVMinObjectScale: 1
secondaryUVPackMargin: 4
useFileScale: 1
strictVertexDataChecks: 0
tangentSpace:
normalSmoothAngle: 60
normalImportMode: 0
tangentImportMode: 3
normalCalculationMode: 4
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0
blendShapeNormalImportMode: 1
normalSmoothingSource: 0
referencedClips: []
importAnimation: 1
humanDescription:
serializedVersion: 3
human:
- boneName: B-hips
humanName: Hips
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thigh.L
humanName: LeftUpperLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thigh.R
humanName: RightUpperLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shin.L
humanName: LeftLowerLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shin.R
humanName: RightLowerLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-foot.L
humanName: LeftFoot
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-foot.R
humanName: RightFoot
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-spine
humanName: Spine
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-chest
humanName: Chest
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-neck
humanName: Neck
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-head
humanName: Head
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shoulder.L
humanName: LeftShoulder
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shoulder.R
humanName: RightShoulder
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-upperArm.L
humanName: LeftUpperArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-upperArm.R
humanName: RightUpperArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-forearm.L
humanName: LeftLowerArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-forearm.R
humanName: RightLowerArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-hand.L
humanName: LeftHand
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-hand.R
humanName: RightHand
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-toe.L
humanName: LeftToes
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-toe.R
humanName: RightToes
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-jaw
humanName: Jaw
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb01.L
humanName: Left Thumb Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb02.L
humanName: Left Thumb Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb03.L
humanName: Left Thumb Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger01.L
humanName: Left Index Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger02.L
humanName: Left Index Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger03.L
humanName: Left Index Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger01.L
humanName: Left Middle Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger02.L
humanName: Left Middle Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger03.L
humanName: Left Middle Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger01.L
humanName: Left Ring Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger02.L
humanName: Left Ring Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger03.L
humanName: Left Ring Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky01.L
humanName: Left Little Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky02.L
humanName: Left Little Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky03.L
humanName: Left Little Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb01.R
humanName: Right Thumb Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb02.R
humanName: Right Thumb Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb03.R
humanName: Right Thumb Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger01.R
humanName: Right Index Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger02.R
humanName: Right Index Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger03.R
humanName: Right Index Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger01.R
humanName: Right Middle Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger02.R
humanName: Right Middle Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger03.R
humanName: Right Middle Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger01.R
humanName: Right Ring Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger02.R
humanName: Right Ring Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger03.R
humanName: Right Ring Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky01.R
humanName: Right Little Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky02.R
humanName: Right Little Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky03.R
humanName: Right Little Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
skeleton:
- name: Human_DummyModel_F(Clone)
parentName:
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: HumanF_BodyMesh
parentName: Human_DummyModel_F(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Rig
parentName: Human_DummyModel_F(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: B-root
parentName: Rig
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: B-spineProxy
parentName: B-root
position: {x: -0, y: 1.092844, z: 0.029147}
rotation: {x: -0.012905054, y: 0, z: -0, w: 0.99991673}
scale: {x: 1, y: 1.0000001, z: 1.0000001}
- name: B-hips
parentName: B-root
position: {x: -0, y: 0.967712, z: 0.016772}
rotation: {x: 0.04926631, y: 0, z: -0, w: 0.9987857}
scale: {x: 1, y: 1.0000004, z: 1.0000004}
- name: B-spine
parentName: B-hips
position: {x: -0, y: 0.12574437, z: 0.00000011940791}
rotation: {x: -0.062152267, y: 0, z: -0, w: 0.99806666}
scale: {x: 1, y: 0.99999976, z: 0.99999976}
- name: B-chest
parentName: B-spine
position: {x: -0, y: 0.13376056, z: -0.00000077390683}
rotation: {x: -0.02258696, y: 0, z: -0, w: 0.9997449}
scale: {x: 1, y: 0.9999996, z: 0.9999996}
- name: B-shoulder.R
parentName: B-chest
position: {x: -0, y: 0.19125995, z: -0.005656177}
rotation: {x: -0.5165573, y: -0.44464085, z: -0.47738376, w: 0.554588}
scale: {x: 1.0000008, y: 1.0000006, z: 1.0000002}
- name: B-upperArm.R
parentName: B-shoulder.R
position: {x: -0.00000043065853, y: 0.1619337, z: -0.000000866464}
rotation: {x: 0.03406315, y: 0.7090742, z: -0.08345674, w: 0.69934857}
scale: {x: 0.99999976, y: 1, z: 0.99999946}
- name: B-forearm.R
parentName: B-upperArm.R
position: {x: -0.0000005071642, y: 0.23413825, z: 0.0000019611641}
rotation: {x: 0.0013730773, y: -0.00042225965, z: 0.0032032696, w: 0.99999386}
scale: {x: 1.0000001, y: 0.99999964, z: 0.9999996}
- name: B-hand.R
parentName: B-forearm.R
position: {x: -0.000000328232, y: 0.19596381, z: -0.0000008355853}
rotation: {x: 0.013529134, y: 0.7054088, z: 0.032969795, w: 0.70790416}
scale: {x: 0.9999999, y: 1.0000002, z: 1.0000005}
- name: B-handProp.R
parentName: B-hand.R
position: {x: 0.0029605331, y: 0.10533051, z: 0.022608897}
rotation: {x: -0.67608327, y: 0.73659164, z: -0.013668106, w: -0.012545319}
scale: {x: 0.99999964, y: 1.0000005, z: 0.9999996}
- name: B-indexFinger01.R
parentName: B-hand.R
position: {x: -0.036052607, y: 0.13202412, z: -0.0022375023}
rotation: {x: 0.019054495, y: -0.0149580045, z: 0.031315368, w: 0.999216}
scale: {x: 1.0000002, y: 0.99999964, z: 0.9999993}
- name: B-indexFinger02.R
parentName: B-indexFinger01.R
position: {x: 0.00000021708313, y: 0.046758045, z: -0.0000005285747}
rotation: {x: 0.040758472, y: 0.02876925, z: -0.0030862393, w: 0.99875003}
scale: {x: 1, y: 1.0000004, z: 1.0000002}
- name: B-indexFinger03.R
parentName: B-indexFinger02.R
position: {x: 0.000000038075022, y: 0.034652043, z: 0.00000019983679}
rotation: {x: -0.006236443, y: 0.004024028, z: -0.0109188985, w: 0.99991286}
scale: {x: 0.9999999, y: 0.9999999, z: 0.99999964}
- name: B-middleFinger01.R
parentName: B-hand.R
position: {x: -0.00928522, y: 0.1318378, z: -0.0089382}
rotation: {x: -0.004700204, y: -0.0032572027, z: -0.001801642, w: 0.99998206}
scale: {x: 1.0000006, y: 0.9999997, z: 0.99999917}
- name: B-middleFinger02.R
parentName: B-middleFinger01.R
position: {x: -0.0000003849299, y: 0.048716273, z: -0.0000001691299}
rotation: {x: 0.039366316, y: 0.04573892, z: 0.00377753, w: 0.9981703}
scale: {x: 0.9999997, y: 1.0000004, z: 1}
- name: B-middleFinger03.R
parentName: B-middleFinger02.R
position: {x: -0.00000039262213, y: 0.035888083, z: 0.00000029152696}
rotation: {x: 0.0049846717, y: -0.02122791, z: -0.0063242065, w: 0.99974227}
scale: {x: 0.99999964, y: 0.99999994, z: 1.0000002}
- name: B-ringFinger01.R
parentName: B-hand.R
position: {x: 0.016020812, y: 0.1283572, z: -0.005707851}
rotation: {x: -0.0071167736, y: 0.0017728558, z: -0.036400504, w: 0.9993104}
scale: {x: 1.0000005, y: 0.9999992, z: 0.9999996}
- name: B-ringFinger02.R
parentName: B-ringFinger01.R
position: {x: 0.00000047158898, y: 0.045192316, z: 0.00000021597218}
rotation: {x: 0.037958622, y: -0.0021153935, z: 0.012520862, w: 0.9991986}
scale: {x: 0.99999946, y: 1.0000005, z: 0.9999997}
- name: B-ringFinger03.R
parentName: B-ringFinger02.R
position: {x: -0.0000004720245, y: 0.034694634, z: 0.00000008820079}
rotation: {x: 0.02091165, y: -0.04065229, z: -0.015794862, w: 0.99882966}
scale: {x: 1.0000002, y: 0.99999976, z: 0.9999997}
- name: B-pinky01.R
parentName: B-hand.R
position: {x: 0.041580904, y: 0.119742304, z: -0.0024299922}
rotation: {x: -0.011731888, y: -0.016481936, z: -0.04421447, w: 0.9988172}
scale: {x: 1.0000002, y: 0.9999994, z: 0.99999917}
- name: B-pinky02.R
parentName: B-pinky01.R
position: {x: 0.0000007804244, y: 0.03832724, z: 0.00000044214514}
rotation: {x: 0.039002027, y: 0.011177708, z: 0.009234122, w: 0.99913394}
scale: {x: 1.0000002, y: 1.0000006, z: 1.0000002}
- name: B-pinky03.R
parentName: B-pinky02.R
position: {x: -0.000000269953, y: 0.03220071, z: -0.0000005856981}
rotation: {x: 0.022101695, y: -0.02182341, z: 0.009210792, w: 0.99947506}
scale: {x: 1.0000005, y: 0.99999994, z: 1.0000007}
- name: B-thumb01.R
parentName: B-hand.R
position: {x: -0.039809253, y: 0.048496302, z: 0.0130518135}
rotation: {x: -0.22471787, y: 0.63045275, z: 0.29821387, w: 0.6805144}
scale: {x: 0.99999946, y: 1.0000002, z: 1.0000005}
- name: B-thumb02.R
parentName: B-thumb01.R
position: {x: 0.00000020260806, y: 0.047178134, z: 0.000000160123}
rotation: {x: 0.038173996, y: 0.013301423, z: -0.008042345, w: 0.9991502}
scale: {x: 1.0000007, y: 0.9999997, z: 0.9999999}
- name: B-thumb03.R
parentName: B-thumb02.R
position: {x: -0.00000069069114, y: 0.03520854, z: 0.00000004046409}
rotation: {x: -0.060352694, y: 0.014396386, z: 0.0074255248, w: 0.9980457}
scale: {x: 0.9999995, y: 1.0000004, z: 1}
- name: B-neck
parentName: B-chest
position: {x: -0, y: 0.27081212, z: 0.0000007058524}
rotation: {x: 0.105346866, y: 0, z: -0, w: 0.99443555}
scale: {x: 1, y: 0.9999997, z: 1.0000007}
- name: B-head
parentName: B-neck
position: {x: -0, y: 0.07409704, z: 0.00000025054106}
rotation: {x: -0.069990024, y: 0, z: -0, w: 0.9975477}
scale: {x: 1, y: 1.0000006, z: 0.99999964}
- name: B-jaw
parentName: B-head
position: {x: -0, y: 0, z: 0}
rotation: {x: 0.70698464, y: 0.000007072379, z: -0.00000706994, w: 0.7072289}
scale: {x: 1, y: 1, z: 1}
- name: B-shoulder.L
parentName: B-chest
position: {x: -0, y: 0.19125995, z: -0.005656177}
rotation: {x: -0.5165571, y: 0.44464028, z: 0.47738382, w: 0.5545886}
scale: {x: 0.9999998, y: 0.9999995, z: 1.0000002}
- name: B-upperArm.L
parentName: B-shoulder.L
position: {x: 0.00000040656337, y: 0.16193385, z: -0.0000008664629}
rotation: {x: 0.033948872, y: -0.70908755, z: 0.08334149, w: 0.69935447}
scale: {x: 0.9999998, y: 1.0000002, z: 0.9999999}
- name: B-forearm.L
parentName: B-upperArm.L
position: {x: 0.000000097359035, y: 0.2341381, z: 0.00000030291466}
rotation: {x: 0.0017385628, y: 0.0004205673, z: -0.0032047313, w: 0.99999326}
scale: {x: 0.99999994, y: 1.0000004, z: 1.0000001}
- name: B-hand.L
parentName: B-forearm.L
position: {x: 0.00000052406216, y: 0.1959644, z: -0.0000011816531}
rotation: {x: 0.013386631, y: -0.70541465, z: -0.032826252, w: 0.7079078}
scale: {x: 0.99999994, y: 0.9999992, z: 0.9999996}
- name: B-handProp.L
parentName: B-hand.L
position: {x: -0.0029615294, y: 0.10533054, z: 0.02260892}
rotation: {x: 0.67608327, y: 0.73659164, z: -0.013668119, w: 0.012545332}
scale: {x: 1.0000006, y: 0.99999946, z: 1.0000006}
- name: B-indexFinger01.L
parentName: B-hand.L
position: {x: 0.03605161, y: 0.13202417, z: -0.0022375062}
rotation: {x: 0.019054513, y: 0.014957919, z: -0.03131587, w: 0.99921596}
scale: {x: 1.0000004, y: 0.9999998, z: 1.0000002}
- name: B-indexFinger02.L
parentName: B-indexFinger01.L
position: {x: 0.00000072554116, y: 0.04675823, z: -0.0000005109258}
rotation: {x: 0.04075494, y: -0.02876944, z: 0.0030826945, w: 0.9987502}
scale: {x: 1.0000001, y: 1.0000002, z: 1.0000002}
- name: B-indexFinger03.L
parentName: B-indexFinger02.L
position: {x: -0.00000009920999, y: 0.034652077, z: 0.00000023013986}
rotation: {x: -0.0062364372, y: -0.004023549, z: 0.010918792, w: 0.99991286}
scale: {x: 0.9999998, y: 1.0000008, z: 0.9999995}
- name: B-middleFinger01.L
parentName: B-hand.L
position: {x: 0.00928522, y: 0.13183793, z: -0.008938214}
rotation: {x: -0.004700207, y: 0.0032570793, z: 0.0018007505, w: 0.99998206}
scale: {x: 1.0000007, y: 0.9999999, z: 1.0000001}
- name: B-middleFinger02.L
parentName: B-middleFinger01.L
position: {x: 0.00000028786184, y: 0.048716314, z: -0.00000017087451}
rotation: {x: 0.039368037, y: -0.045739666, z: -0.0037847473, w: 0.9981702}
scale: {x: 0.99999976, y: 1.000001, z: 1.0000006}
- name: B-middleFinger03.L
parentName: B-middleFinger02.L
position: {x: -0.00000066842983, y: 0.035888, z: 0.00000028642995}
rotation: {x: 0.0049827034, y: 0.021227859, z: 0.0063241003, w: 0.99974227}
scale: {x: 0.9999996, y: 0.99999905, z: 0.99999934}
- name: B-ringFinger01.L
parentName: B-hand.L
position: {x: -0.016021809, y: 0.12835726, z: -0.005707858}
rotation: {x: -0.007116776, y: -0.0017729683, z: 0.036399588, w: 0.99931043}
scale: {x: 1.0000005, y: 1.0000002, z: 1.0000006}
- name: B-ringFinger02.L
parentName: B-ringFinger01.L
position: {x: 0.00000043795694, y: 0.04519233, z: 0.00000021050154}
rotation: {x: 0.037963506, y: 0.0021157071, z: -0.01252746, w: 0.9991984}
scale: {x: 0.9999995, y: 0.99999964, z: 0.9999996}
- name: B-ringFinger03.L
parentName: B-ringFinger02.L
position: {x: 0.00000034561023, y: 0.03469565, z: -0.00000007648653}
rotation: {x: 0.020911071, y: 0.04065225, z: 0.015794758, w: 0.99882966}
scale: {x: 1.0000001, y: 1.0000005, z: 0.9999997}
- name: B-pinky01.L
parentName: B-hand.L
position: {x: -0.041581903, y: 0.119742356, z: -0.0024299957}
rotation: {x: -0.01172906, y: 0.01648238, z: 0.0442254, w: 0.9988167}
scale: {x: 1.0000002, y: 1.0000004, z: 1.0000002}
- name: B-pinky02.L
parentName: B-pinky01.L
position: {x: 0.00000014151807, y: 0.03832722, z: 0.00000047056287}
rotation: {x: 0.039005004, y: -0.011177422, z: -0.009239738, w: 0.99913377}
scale: {x: 1.0000002, y: 0.99999946, z: 1.0000001}
- name: B-pinky03.L
parentName: B-pinky02.L
position: {x: 0.000000233103, y: 0.032200746, z: -0.00000055902217}
rotation: {x: 0.022101717, y: 0.02182328, z: -0.009211465, w: 0.99947506}
scale: {x: 0.9999995, y: 1, z: 0.99999964}
- name: B-thumb01.L
parentName: B-hand.L
position: {x: 0.03980834, y: 0.048495278, z: 0.013051865}
rotation: {x: -0.2247114, y: -0.6304557, z: -0.2982149, w: 0.6805132}
scale: {x: 1.0000005, y: 1, z: 1.0000005}
- name: B-thumb02.L
parentName: B-thumb01.L
position: {x: -0.0000007063521, y: 0.047179468, z: -0.00000013365789}
rotation: {x: 0.038171936, y: -0.013301728, z: 0.008042519, w: 0.9991503}
scale: {x: 1.0000004, y: 1, z: 0.9999994}
- name: B-thumb03.L
parentName: B-thumb02.L
position: {x: 0.0000007190916, y: 0.035208564, z: 0.00000017922088}
rotation: {x: -0.06035389, y: -0.014396597, z: -0.007425322, w: 0.9980456}
scale: {x: 0.9999992, y: 0.99999994, z: 1.0000001}
- name: B-thigh.L
parentName: B-hips
position: {x: -0.096950985, y: -0.05446949, z: 0.0020414153}
rotation: {x: 0.9977441, y: 0.011110197, z: -0.0039620763, w: 0.066088475}
scale: {x: 1.0000002, y: 0.9999997, z: 1.000001}
- name: B-shin.L
parentName: B-thigh.L
position: {x: 0.00000018468991, y: 0.41111633, z: 0.0000005281011}
rotation: {x: 0.067057244, y: -0.00057845906, z: 0.011617889, w: 0.9976813}
scale: {x: 0.9999997, y: 1.0000002, z: 0.99999964}
- name: B-foot.L
parentName: B-shin.L
position: {x: -0.00000017405802, y: 0.3880767, z: -0.00000019306846}
rotation: {x: -0.5354999, y: 0.004330197, z: 0.0016612022, w: 0.84452266}
scale: {x: 1.0000001, y: 0.9999997, z: 0.99999976}
- name: B-toe.L
parentName: B-foot.L
position: {x: -0.00000027025197, y: 0.17254004, z: -0.000000117418054}
rotation: {x: 0.000012936387, y: 0.9622731, z: -0.27208534, w: 0.00017343421}
scale: {x: 1, y: 1.0000018, z: 0.999999}
- name: B-thigh.R
parentName: B-hips
position: {x: 0.096950985, y: -0.05446959, z: 0.0020404202}
rotation: {x: 0.9977441, y: -0.011109428, z: 0.003967029, w: 0.066088304}
scale: {x: 1.0000004, y: 0.99999976, z: 1.000008}
- name: B-shin.R
parentName: B-thigh.R
position: {x: 0.0000005496826, y: 0.41111633, z: -0.00000065481464}
rotation: {x: 0.06705632, y: 0.0005783735, z: -0.011616509, w: 0.99768144}
scale: {x: 0.9999997, y: 1.0000002, z: 1.0000007}
- name: B-foot.R
parentName: B-shin.R
position: {x: -0.00000044263592, y: 0.3880767, z: 0.000000107811644}
rotation: {x: -0.53550065, y: -0.0043338453, z: -0.0016630876, w: 0.84452206}
scale: {x: 1, y: 0.9999993, z: 0.99999994}
- name: B-toe.R
parentName: B-foot.R
position: {x: 0.00000074386196, y: 0.17254034, z: 0.00000017937037}
rotation: {x: -0.000012542016, y: 0.96227294, z: -0.27208585, w: -0.00017487761}
scale: {x: 1, y: 1.0000029, z: 0.999997}
armTwist: 0.5
foreArmTwist: 0.5
upperLegTwist: 0.5
legTwist: 0.5
armStretch: 0.05
legStretch: 0.05
feetSpacing: 0
globalScale: 1
rootMotionBoneName:
hasTranslationDoF: 0
hasExtraRoot: 0
skeletonHasParents: 1
lastHumanDescriptionAvatarSource: {fileID: 9000000, guid: 1841c298173cdad4db8df8602c8f1c8d,
type: 3}
autoGenerateAvatarMappingIfUnspecified: 1
animationType: 3
humanoidOversampling: 1
avatarSetup: 2
addHumanoidExtraRootOnlyWhenUsingAvatar: 1
importBlendShapeDeformPercent: 1
remapMaterialsIfMaterialImportModeIsNone: 0
additionalBone: 0
userData:
assetBundleName:
assetBundleVariant:
AssetOrigin:
serializedVersion: 1
productId: 154271
packageName: Human Basic Motions FREE
packageVersion: 2.4.2
assetPath: Assets/Kevin Iglesias/Human Animations/Animations/Female/Movement/Run/RootMotion/HumanF@Run01_ForwardRight
[RM].fbx
uploadId: 908942

View file

@ -1,974 +0,0 @@
fileFormatVersion: 2
guid: f76f0d054afdd5845a03ab8eea5b79b5
ModelImporter:
serializedVersion: 22200
internalIDToNameTable: []
externalObjects: {}
materials:
materialImportMode: 0
materialName: 0
materialSearch: 1
materialLocation: 1
animations:
legacyGenerateAnimations: 4
bakeSimulation: 0
resampleCurves: 1
optimizeGameObjects: 0
removeConstantScaleCurves: 0
motionNodeName: Rig/B-root
animationImportErrors:
animationImportWarnings:
animationRetargetingWarnings:
animationDoRetargetingWarnings: 0
importAnimatedCustomProperties: 0
importConstraints: 0
animationCompression: 0
animationRotationError: 0.5
animationPositionError: 0.5
animationScaleError: 0.5
animationWrapMode: 0
extraExposedTransformPaths: []
extraUserProperties: []
clipAnimations:
- serializedVersion: 16
name: 'HumanF@Run01_Left [RM]'
takeName: Untitled
internalID: 3094330708855449807
firstFrame: 0
lastFrame: 18
wrapMode: 0
orientationOffsetY: 0
level: 0
cycleOffset: 0
loop: 0
hasAdditiveReferencePose: 0
loopTime: 1
loopBlend: 0
loopBlendOrientation: 1
loopBlendPositionY: 1
loopBlendPositionXZ: 0
keepOriginalOrientation: 1
keepOriginalPositionY: 1
keepOriginalPositionXZ: 1
heightFromFeet: 0
mirror: 0
bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
curves: []
events: []
transformMask:
- path:
weight: 1
- path: HumanF_BodyMesh
weight: 0
- path: Rig
weight: 1
- path: Rig/B-root
weight: 1
- path: Rig/B-root/B-hips
weight: 1
- path: Rig/B-root/B-hips/B-spine
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck/B-head
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck/B-head/B-jaw
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-handProp.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L/B-indexFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L/B-indexFinger02.L/B-indexFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L/B-middleFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L/B-middleFinger02.L/B-middleFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L/B-pinky02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L/B-pinky02.L/B-pinky03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L/B-ringFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L/B-ringFinger02.L/B-ringFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L/B-thumb02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L/B-thumb02.L/B-thumb03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-handProp.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R/B-indexFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R/B-indexFinger02.R/B-indexFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R/B-middleFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R/B-middleFinger02.R/B-middleFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R/B-pinky02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R/B-pinky02.R/B-pinky03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R/B-ringFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R/B-ringFinger02.R/B-ringFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R/B-thumb02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R/B-thumb02.R/B-thumb03.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L/B-foot.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L/B-foot.L/B-toe.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R/B-foot.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R/B-foot.R/B-toe.R
weight: 1
- path: Rig/B-root/B-spineProxy
weight: 1
maskType: 1
maskSource: {fileID: 31900000, guid: 89527f5525238ee44b3182458d85143a, type: 2}
additiveReferencePoseFrame: 0
isReadable: 0
meshes:
lODScreenPercentages: []
globalScale: 1
meshCompression: 0
addColliders: 0
useSRGBMaterialColor: 1
sortHierarchyByName: 1
importPhysicalCameras: 1
importVisibility: 1
importBlendShapes: 1
importCameras: 1
importLights: 1
nodeNameCollisionStrategy: 1
fileIdsGeneration: 2
swapUVChannels: 0
generateSecondaryUV: 0
useFileUnits: 1
keepQuads: 0
weldVertices: 1
bakeAxisConversion: 0
preserveHierarchy: 1
skinWeightsMode: 0
maxBonesPerVertex: 4
minBoneWeight: 0.001
optimizeBones: 1
meshOptimizationFlags: -1
indexFormat: 0
secondaryUVAngleDistortion: 8
secondaryUVAreaDistortion: 15.000001
secondaryUVHardAngle: 88
secondaryUVMarginMethod: 1
secondaryUVMinLightmapResolution: 40
secondaryUVMinObjectScale: 1
secondaryUVPackMargin: 4
useFileScale: 1
strictVertexDataChecks: 0
tangentSpace:
normalSmoothAngle: 60
normalImportMode: 0
tangentImportMode: 3
normalCalculationMode: 4
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0
blendShapeNormalImportMode: 1
normalSmoothingSource: 0
referencedClips: []
importAnimation: 1
humanDescription:
serializedVersion: 3
human:
- boneName: B-hips
humanName: Hips
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thigh.L
humanName: LeftUpperLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thigh.R
humanName: RightUpperLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shin.L
humanName: LeftLowerLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shin.R
humanName: RightLowerLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-foot.L
humanName: LeftFoot
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-foot.R
humanName: RightFoot
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-spine
humanName: Spine
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-chest
humanName: Chest
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-neck
humanName: Neck
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-head
humanName: Head
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shoulder.L
humanName: LeftShoulder
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shoulder.R
humanName: RightShoulder
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-upperArm.L
humanName: LeftUpperArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-upperArm.R
humanName: RightUpperArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-forearm.L
humanName: LeftLowerArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-forearm.R
humanName: RightLowerArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-hand.L
humanName: LeftHand
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-hand.R
humanName: RightHand
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-toe.L
humanName: LeftToes
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-toe.R
humanName: RightToes
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-jaw
humanName: Jaw
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb01.L
humanName: Left Thumb Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb02.L
humanName: Left Thumb Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb03.L
humanName: Left Thumb Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger01.L
humanName: Left Index Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger02.L
humanName: Left Index Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger03.L
humanName: Left Index Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger01.L
humanName: Left Middle Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger02.L
humanName: Left Middle Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger03.L
humanName: Left Middle Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger01.L
humanName: Left Ring Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger02.L
humanName: Left Ring Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger03.L
humanName: Left Ring Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky01.L
humanName: Left Little Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky02.L
humanName: Left Little Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky03.L
humanName: Left Little Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb01.R
humanName: Right Thumb Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb02.R
humanName: Right Thumb Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb03.R
humanName: Right Thumb Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger01.R
humanName: Right Index Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger02.R
humanName: Right Index Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger03.R
humanName: Right Index Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger01.R
humanName: Right Middle Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger02.R
humanName: Right Middle Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger03.R
humanName: Right Middle Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger01.R
humanName: Right Ring Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger02.R
humanName: Right Ring Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger03.R
humanName: Right Ring Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky01.R
humanName: Right Little Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky02.R
humanName: Right Little Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky03.R
humanName: Right Little Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
skeleton:
- name: Human_DummyModel_F(Clone)
parentName:
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: HumanF_BodyMesh
parentName: Human_DummyModel_F(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Rig
parentName: Human_DummyModel_F(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: B-root
parentName: Rig
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: B-spineProxy
parentName: B-root
position: {x: -0, y: 1.092844, z: 0.029147}
rotation: {x: -0.012905054, y: 0, z: -0, w: 0.99991673}
scale: {x: 1, y: 1.0000001, z: 1.0000001}
- name: B-hips
parentName: B-root
position: {x: -0, y: 0.967712, z: 0.016772}
rotation: {x: 0.04926631, y: 0, z: -0, w: 0.9987857}
scale: {x: 1, y: 1.0000004, z: 1.0000004}
- name: B-spine
parentName: B-hips
position: {x: -0, y: 0.12574437, z: 0.00000011940791}
rotation: {x: -0.062152267, y: 0, z: -0, w: 0.99806666}
scale: {x: 1, y: 0.99999976, z: 0.99999976}
- name: B-chest
parentName: B-spine
position: {x: -0, y: 0.13376056, z: -0.00000077390683}
rotation: {x: -0.02258696, y: 0, z: -0, w: 0.9997449}
scale: {x: 1, y: 0.9999996, z: 0.9999996}
- name: B-shoulder.R
parentName: B-chest
position: {x: -0, y: 0.19125995, z: -0.005656177}
rotation: {x: -0.5165573, y: -0.44464085, z: -0.47738376, w: 0.554588}
scale: {x: 1.0000008, y: 1.0000006, z: 1.0000002}
- name: B-upperArm.R
parentName: B-shoulder.R
position: {x: -0.00000043065853, y: 0.1619337, z: -0.000000866464}
rotation: {x: 0.03406315, y: 0.7090742, z: -0.08345674, w: 0.69934857}
scale: {x: 0.99999976, y: 1, z: 0.99999946}
- name: B-forearm.R
parentName: B-upperArm.R
position: {x: -0.0000005071642, y: 0.23413825, z: 0.0000019611641}
rotation: {x: 0.0013730773, y: -0.00042225965, z: 0.0032032696, w: 0.99999386}
scale: {x: 1.0000001, y: 0.99999964, z: 0.9999996}
- name: B-hand.R
parentName: B-forearm.R
position: {x: -0.000000328232, y: 0.19596381, z: -0.0000008355853}
rotation: {x: 0.013529134, y: 0.7054088, z: 0.032969795, w: 0.70790416}
scale: {x: 0.9999999, y: 1.0000002, z: 1.0000005}
- name: B-handProp.R
parentName: B-hand.R
position: {x: 0.0029605331, y: 0.10533051, z: 0.022608897}
rotation: {x: -0.67608327, y: 0.73659164, z: -0.013668106, w: -0.012545319}
scale: {x: 0.99999964, y: 1.0000005, z: 0.9999996}
- name: B-indexFinger01.R
parentName: B-hand.R
position: {x: -0.036052607, y: 0.13202412, z: -0.0022375023}
rotation: {x: 0.019054495, y: -0.0149580045, z: 0.031315368, w: 0.999216}
scale: {x: 1.0000002, y: 0.99999964, z: 0.9999993}
- name: B-indexFinger02.R
parentName: B-indexFinger01.R
position: {x: 0.00000021708313, y: 0.046758045, z: -0.0000005285747}
rotation: {x: 0.040758472, y: 0.02876925, z: -0.0030862393, w: 0.99875003}
scale: {x: 1, y: 1.0000004, z: 1.0000002}
- name: B-indexFinger03.R
parentName: B-indexFinger02.R
position: {x: 0.000000038075022, y: 0.034652043, z: 0.00000019983679}
rotation: {x: -0.006236443, y: 0.004024028, z: -0.0109188985, w: 0.99991286}
scale: {x: 0.9999999, y: 0.9999999, z: 0.99999964}
- name: B-middleFinger01.R
parentName: B-hand.R
position: {x: -0.00928522, y: 0.1318378, z: -0.0089382}
rotation: {x: -0.004700204, y: -0.0032572027, z: -0.001801642, w: 0.99998206}
scale: {x: 1.0000006, y: 0.9999997, z: 0.99999917}
- name: B-middleFinger02.R
parentName: B-middleFinger01.R
position: {x: -0.0000003849299, y: 0.048716273, z: -0.0000001691299}
rotation: {x: 0.039366316, y: 0.04573892, z: 0.00377753, w: 0.9981703}
scale: {x: 0.9999997, y: 1.0000004, z: 1}
- name: B-middleFinger03.R
parentName: B-middleFinger02.R
position: {x: -0.00000039262213, y: 0.035888083, z: 0.00000029152696}
rotation: {x: 0.0049846717, y: -0.02122791, z: -0.0063242065, w: 0.99974227}
scale: {x: 0.99999964, y: 0.99999994, z: 1.0000002}
- name: B-ringFinger01.R
parentName: B-hand.R
position: {x: 0.016020812, y: 0.1283572, z: -0.005707851}
rotation: {x: -0.0071167736, y: 0.0017728558, z: -0.036400504, w: 0.9993104}
scale: {x: 1.0000005, y: 0.9999992, z: 0.9999996}
- name: B-ringFinger02.R
parentName: B-ringFinger01.R
position: {x: 0.00000047158898, y: 0.045192316, z: 0.00000021597218}
rotation: {x: 0.037958622, y: -0.0021153935, z: 0.012520862, w: 0.9991986}
scale: {x: 0.99999946, y: 1.0000005, z: 0.9999997}
- name: B-ringFinger03.R
parentName: B-ringFinger02.R
position: {x: -0.0000004720245, y: 0.034694634, z: 0.00000008820079}
rotation: {x: 0.02091165, y: -0.04065229, z: -0.015794862, w: 0.99882966}
scale: {x: 1.0000002, y: 0.99999976, z: 0.9999997}
- name: B-pinky01.R
parentName: B-hand.R
position: {x: 0.041580904, y: 0.119742304, z: -0.0024299922}
rotation: {x: -0.011731888, y: -0.016481936, z: -0.04421447, w: 0.9988172}
scale: {x: 1.0000002, y: 0.9999994, z: 0.99999917}
- name: B-pinky02.R
parentName: B-pinky01.R
position: {x: 0.0000007804244, y: 0.03832724, z: 0.00000044214514}
rotation: {x: 0.039002027, y: 0.011177708, z: 0.009234122, w: 0.99913394}
scale: {x: 1.0000002, y: 1.0000006, z: 1.0000002}
- name: B-pinky03.R
parentName: B-pinky02.R
position: {x: -0.000000269953, y: 0.03220071, z: -0.0000005856981}
rotation: {x: 0.022101695, y: -0.02182341, z: 0.009210792, w: 0.99947506}
scale: {x: 1.0000005, y: 0.99999994, z: 1.0000007}
- name: B-thumb01.R
parentName: B-hand.R
position: {x: -0.039809253, y: 0.048496302, z: 0.0130518135}
rotation: {x: -0.22471787, y: 0.63045275, z: 0.29821387, w: 0.6805144}
scale: {x: 0.99999946, y: 1.0000002, z: 1.0000005}
- name: B-thumb02.R
parentName: B-thumb01.R
position: {x: 0.00000020260806, y: 0.047178134, z: 0.000000160123}
rotation: {x: 0.038173996, y: 0.013301423, z: -0.008042345, w: 0.9991502}
scale: {x: 1.0000007, y: 0.9999997, z: 0.9999999}
- name: B-thumb03.R
parentName: B-thumb02.R
position: {x: -0.00000069069114, y: 0.03520854, z: 0.00000004046409}
rotation: {x: -0.060352694, y: 0.014396386, z: 0.0074255248, w: 0.9980457}
scale: {x: 0.9999995, y: 1.0000004, z: 1}
- name: B-neck
parentName: B-chest
position: {x: -0, y: 0.27081212, z: 0.0000007058524}
rotation: {x: 0.105346866, y: 0, z: -0, w: 0.99443555}
scale: {x: 1, y: 0.9999997, z: 1.0000007}
- name: B-head
parentName: B-neck
position: {x: -0, y: 0.07409704, z: 0.00000025054106}
rotation: {x: -0.069990024, y: 0, z: -0, w: 0.9975477}
scale: {x: 1, y: 1.0000006, z: 0.99999964}
- name: B-jaw
parentName: B-head
position: {x: -0, y: 0, z: 0}
rotation: {x: 0.70698464, y: 0.000007072379, z: -0.00000706994, w: 0.7072289}
scale: {x: 1, y: 1, z: 1}
- name: B-shoulder.L
parentName: B-chest
position: {x: -0, y: 0.19125995, z: -0.005656177}
rotation: {x: -0.5165571, y: 0.44464028, z: 0.47738382, w: 0.5545886}
scale: {x: 0.9999998, y: 0.9999995, z: 1.0000002}
- name: B-upperArm.L
parentName: B-shoulder.L
position: {x: 0.00000040656337, y: 0.16193385, z: -0.0000008664629}
rotation: {x: 0.033948872, y: -0.70908755, z: 0.08334149, w: 0.69935447}
scale: {x: 0.9999998, y: 1.0000002, z: 0.9999999}
- name: B-forearm.L
parentName: B-upperArm.L
position: {x: 0.000000097359035, y: 0.2341381, z: 0.00000030291466}
rotation: {x: 0.0017385628, y: 0.0004205673, z: -0.0032047313, w: 0.99999326}
scale: {x: 0.99999994, y: 1.0000004, z: 1.0000001}
- name: B-hand.L
parentName: B-forearm.L
position: {x: 0.00000052406216, y: 0.1959644, z: -0.0000011816531}
rotation: {x: 0.013386631, y: -0.70541465, z: -0.032826252, w: 0.7079078}
scale: {x: 0.99999994, y: 0.9999992, z: 0.9999996}
- name: B-handProp.L
parentName: B-hand.L
position: {x: -0.0029615294, y: 0.10533054, z: 0.02260892}
rotation: {x: 0.67608327, y: 0.73659164, z: -0.013668119, w: 0.012545332}
scale: {x: 1.0000006, y: 0.99999946, z: 1.0000006}
- name: B-indexFinger01.L
parentName: B-hand.L
position: {x: 0.03605161, y: 0.13202417, z: -0.0022375062}
rotation: {x: 0.019054513, y: 0.014957919, z: -0.03131587, w: 0.99921596}
scale: {x: 1.0000004, y: 0.9999998, z: 1.0000002}
- name: B-indexFinger02.L
parentName: B-indexFinger01.L
position: {x: 0.00000072554116, y: 0.04675823, z: -0.0000005109258}
rotation: {x: 0.04075494, y: -0.02876944, z: 0.0030826945, w: 0.9987502}
scale: {x: 1.0000001, y: 1.0000002, z: 1.0000002}
- name: B-indexFinger03.L
parentName: B-indexFinger02.L
position: {x: -0.00000009920999, y: 0.034652077, z: 0.00000023013986}
rotation: {x: -0.0062364372, y: -0.004023549, z: 0.010918792, w: 0.99991286}
scale: {x: 0.9999998, y: 1.0000008, z: 0.9999995}
- name: B-middleFinger01.L
parentName: B-hand.L
position: {x: 0.00928522, y: 0.13183793, z: -0.008938214}
rotation: {x: -0.004700207, y: 0.0032570793, z: 0.0018007505, w: 0.99998206}
scale: {x: 1.0000007, y: 0.9999999, z: 1.0000001}
- name: B-middleFinger02.L
parentName: B-middleFinger01.L
position: {x: 0.00000028786184, y: 0.048716314, z: -0.00000017087451}
rotation: {x: 0.039368037, y: -0.045739666, z: -0.0037847473, w: 0.9981702}
scale: {x: 0.99999976, y: 1.000001, z: 1.0000006}
- name: B-middleFinger03.L
parentName: B-middleFinger02.L
position: {x: -0.00000066842983, y: 0.035888, z: 0.00000028642995}
rotation: {x: 0.0049827034, y: 0.021227859, z: 0.0063241003, w: 0.99974227}
scale: {x: 0.9999996, y: 0.99999905, z: 0.99999934}
- name: B-ringFinger01.L
parentName: B-hand.L
position: {x: -0.016021809, y: 0.12835726, z: -0.005707858}
rotation: {x: -0.007116776, y: -0.0017729683, z: 0.036399588, w: 0.99931043}
scale: {x: 1.0000005, y: 1.0000002, z: 1.0000006}
- name: B-ringFinger02.L
parentName: B-ringFinger01.L
position: {x: 0.00000043795694, y: 0.04519233, z: 0.00000021050154}
rotation: {x: 0.037963506, y: 0.0021157071, z: -0.01252746, w: 0.9991984}
scale: {x: 0.9999995, y: 0.99999964, z: 0.9999996}
- name: B-ringFinger03.L
parentName: B-ringFinger02.L
position: {x: 0.00000034561023, y: 0.03469565, z: -0.00000007648653}
rotation: {x: 0.020911071, y: 0.04065225, z: 0.015794758, w: 0.99882966}
scale: {x: 1.0000001, y: 1.0000005, z: 0.9999997}
- name: B-pinky01.L
parentName: B-hand.L
position: {x: -0.041581903, y: 0.119742356, z: -0.0024299957}
rotation: {x: -0.01172906, y: 0.01648238, z: 0.0442254, w: 0.9988167}
scale: {x: 1.0000002, y: 1.0000004, z: 1.0000002}
- name: B-pinky02.L
parentName: B-pinky01.L
position: {x: 0.00000014151807, y: 0.03832722, z: 0.00000047056287}
rotation: {x: 0.039005004, y: -0.011177422, z: -0.009239738, w: 0.99913377}
scale: {x: 1.0000002, y: 0.99999946, z: 1.0000001}
- name: B-pinky03.L
parentName: B-pinky02.L
position: {x: 0.000000233103, y: 0.032200746, z: -0.00000055902217}
rotation: {x: 0.022101717, y: 0.02182328, z: -0.009211465, w: 0.99947506}
scale: {x: 0.9999995, y: 1, z: 0.99999964}
- name: B-thumb01.L
parentName: B-hand.L
position: {x: 0.03980834, y: 0.048495278, z: 0.013051865}
rotation: {x: -0.2247114, y: -0.6304557, z: -0.2982149, w: 0.6805132}
scale: {x: 1.0000005, y: 1, z: 1.0000005}
- name: B-thumb02.L
parentName: B-thumb01.L
position: {x: -0.0000007063521, y: 0.047179468, z: -0.00000013365789}
rotation: {x: 0.038171936, y: -0.013301728, z: 0.008042519, w: 0.9991503}
scale: {x: 1.0000004, y: 1, z: 0.9999994}
- name: B-thumb03.L
parentName: B-thumb02.L
position: {x: 0.0000007190916, y: 0.035208564, z: 0.00000017922088}
rotation: {x: -0.06035389, y: -0.014396597, z: -0.007425322, w: 0.9980456}
scale: {x: 0.9999992, y: 0.99999994, z: 1.0000001}
- name: B-thigh.L
parentName: B-hips
position: {x: -0.096950985, y: -0.05446949, z: 0.0020414153}
rotation: {x: 0.9977441, y: 0.011110197, z: -0.0039620763, w: 0.066088475}
scale: {x: 1.0000002, y: 0.9999997, z: 1.000001}
- name: B-shin.L
parentName: B-thigh.L
position: {x: 0.00000018468991, y: 0.41111633, z: 0.0000005281011}
rotation: {x: 0.067057244, y: -0.00057845906, z: 0.011617889, w: 0.9976813}
scale: {x: 0.9999997, y: 1.0000002, z: 0.99999964}
- name: B-foot.L
parentName: B-shin.L
position: {x: -0.00000017405802, y: 0.3880767, z: -0.00000019306846}
rotation: {x: -0.5354999, y: 0.004330197, z: 0.0016612022, w: 0.84452266}
scale: {x: 1.0000001, y: 0.9999997, z: 0.99999976}
- name: B-toe.L
parentName: B-foot.L
position: {x: -0.00000027025197, y: 0.17254004, z: -0.000000117418054}
rotation: {x: 0.000012936387, y: 0.9622731, z: -0.27208534, w: 0.00017343421}
scale: {x: 1, y: 1.0000018, z: 0.999999}
- name: B-thigh.R
parentName: B-hips
position: {x: 0.096950985, y: -0.05446959, z: 0.0020404202}
rotation: {x: 0.9977441, y: -0.011109428, z: 0.003967029, w: 0.066088304}
scale: {x: 1.0000004, y: 0.99999976, z: 1.000008}
- name: B-shin.R
parentName: B-thigh.R
position: {x: 0.0000005496826, y: 0.41111633, z: -0.00000065481464}
rotation: {x: 0.06705632, y: 0.0005783735, z: -0.011616509, w: 0.99768144}
scale: {x: 0.9999997, y: 1.0000002, z: 1.0000007}
- name: B-foot.R
parentName: B-shin.R
position: {x: -0.00000044263592, y: 0.3880767, z: 0.000000107811644}
rotation: {x: -0.53550065, y: -0.0043338453, z: -0.0016630876, w: 0.84452206}
scale: {x: 1, y: 0.9999993, z: 0.99999994}
- name: B-toe.R
parentName: B-foot.R
position: {x: 0.00000074386196, y: 0.17254034, z: 0.00000017937037}
rotation: {x: -0.000012542016, y: 0.96227294, z: -0.27208585, w: -0.00017487761}
scale: {x: 1, y: 1.0000029, z: 0.999997}
armTwist: 0.5
foreArmTwist: 0.5
upperLegTwist: 0.5
legTwist: 0.5
armStretch: 0.05
legStretch: 0.05
feetSpacing: 0
globalScale: 1
rootMotionBoneName:
hasTranslationDoF: 0
hasExtraRoot: 0
skeletonHasParents: 1
lastHumanDescriptionAvatarSource: {fileID: 9000000, guid: 1841c298173cdad4db8df8602c8f1c8d,
type: 3}
autoGenerateAvatarMappingIfUnspecified: 1
animationType: 3
humanoidOversampling: 1
avatarSetup: 2
addHumanoidExtraRootOnlyWhenUsingAvatar: 1
importBlendShapeDeformPercent: 1
remapMaterialsIfMaterialImportModeIsNone: 0
additionalBone: 0
userData:
assetBundleName:
assetBundleVariant:
AssetOrigin:
serializedVersion: 1
productId: 154271
packageName: Human Basic Motions FREE
packageVersion: 2.4.2
assetPath: Assets/Kevin Iglesias/Human Animations/Animations/Female/Movement/Run/RootMotion/HumanF@Run01_Left
[RM].fbx
uploadId: 908942

View file

@ -1,974 +0,0 @@
fileFormatVersion: 2
guid: 67b3854dfc8f4ee4485ed3c744ac0cca
ModelImporter:
serializedVersion: 22200
internalIDToNameTable: []
externalObjects: {}
materials:
materialImportMode: 0
materialName: 0
materialSearch: 1
materialLocation: 1
animations:
legacyGenerateAnimations: 4
bakeSimulation: 0
resampleCurves: 1
optimizeGameObjects: 0
removeConstantScaleCurves: 0
motionNodeName: Rig/B-root
animationImportErrors:
animationImportWarnings:
animationRetargetingWarnings:
animationDoRetargetingWarnings: 0
importAnimatedCustomProperties: 0
importConstraints: 0
animationCompression: 0
animationRotationError: 0.5
animationPositionError: 0.5
animationScaleError: 0.5
animationWrapMode: 0
extraExposedTransformPaths: []
extraUserProperties: []
clipAnimations:
- serializedVersion: 16
name: 'HumanF@Run01_Right [RM]'
takeName: Untitled
internalID: 3094330708855449807
firstFrame: 0
lastFrame: 18
wrapMode: 0
orientationOffsetY: 0
level: 0
cycleOffset: 0
loop: 0
hasAdditiveReferencePose: 0
loopTime: 1
loopBlend: 0
loopBlendOrientation: 1
loopBlendPositionY: 1
loopBlendPositionXZ: 0
keepOriginalOrientation: 1
keepOriginalPositionY: 1
keepOriginalPositionXZ: 1
heightFromFeet: 0
mirror: 0
bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
curves: []
events: []
transformMask:
- path:
weight: 1
- path: HumanF_BodyMesh
weight: 0
- path: Rig
weight: 1
- path: Rig/B-root
weight: 1
- path: Rig/B-root/B-hips
weight: 1
- path: Rig/B-root/B-hips/B-spine
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck/B-head
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck/B-head/B-jaw
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-handProp.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L/B-indexFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L/B-indexFinger02.L/B-indexFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L/B-middleFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L/B-middleFinger02.L/B-middleFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L/B-pinky02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L/B-pinky02.L/B-pinky03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L/B-ringFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L/B-ringFinger02.L/B-ringFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L/B-thumb02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L/B-thumb02.L/B-thumb03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-handProp.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R/B-indexFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R/B-indexFinger02.R/B-indexFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R/B-middleFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R/B-middleFinger02.R/B-middleFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R/B-pinky02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R/B-pinky02.R/B-pinky03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R/B-ringFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R/B-ringFinger02.R/B-ringFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R/B-thumb02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R/B-thumb02.R/B-thumb03.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L/B-foot.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L/B-foot.L/B-toe.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R/B-foot.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R/B-foot.R/B-toe.R
weight: 1
- path: Rig/B-root/B-spineProxy
weight: 1
maskType: 1
maskSource: {fileID: 31900000, guid: 89527f5525238ee44b3182458d85143a, type: 2}
additiveReferencePoseFrame: 0
isReadable: 0
meshes:
lODScreenPercentages: []
globalScale: 1
meshCompression: 0
addColliders: 0
useSRGBMaterialColor: 1
sortHierarchyByName: 1
importPhysicalCameras: 1
importVisibility: 1
importBlendShapes: 1
importCameras: 1
importLights: 1
nodeNameCollisionStrategy: 1
fileIdsGeneration: 2
swapUVChannels: 0
generateSecondaryUV: 0
useFileUnits: 1
keepQuads: 0
weldVertices: 1
bakeAxisConversion: 0
preserveHierarchy: 1
skinWeightsMode: 0
maxBonesPerVertex: 4
minBoneWeight: 0.001
optimizeBones: 1
meshOptimizationFlags: -1
indexFormat: 0
secondaryUVAngleDistortion: 8
secondaryUVAreaDistortion: 15.000001
secondaryUVHardAngle: 88
secondaryUVMarginMethod: 1
secondaryUVMinLightmapResolution: 40
secondaryUVMinObjectScale: 1
secondaryUVPackMargin: 4
useFileScale: 1
strictVertexDataChecks: 0
tangentSpace:
normalSmoothAngle: 60
normalImportMode: 0
tangentImportMode: 3
normalCalculationMode: 4
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0
blendShapeNormalImportMode: 1
normalSmoothingSource: 0
referencedClips: []
importAnimation: 1
humanDescription:
serializedVersion: 3
human:
- boneName: B-hips
humanName: Hips
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thigh.L
humanName: LeftUpperLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thigh.R
humanName: RightUpperLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shin.L
humanName: LeftLowerLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shin.R
humanName: RightLowerLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-foot.L
humanName: LeftFoot
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-foot.R
humanName: RightFoot
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-spine
humanName: Spine
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-chest
humanName: Chest
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-neck
humanName: Neck
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-head
humanName: Head
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shoulder.L
humanName: LeftShoulder
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shoulder.R
humanName: RightShoulder
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-upperArm.L
humanName: LeftUpperArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-upperArm.R
humanName: RightUpperArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-forearm.L
humanName: LeftLowerArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-forearm.R
humanName: RightLowerArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-hand.L
humanName: LeftHand
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-hand.R
humanName: RightHand
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-toe.L
humanName: LeftToes
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-toe.R
humanName: RightToes
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-jaw
humanName: Jaw
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb01.L
humanName: Left Thumb Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb02.L
humanName: Left Thumb Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb03.L
humanName: Left Thumb Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger01.L
humanName: Left Index Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger02.L
humanName: Left Index Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger03.L
humanName: Left Index Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger01.L
humanName: Left Middle Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger02.L
humanName: Left Middle Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger03.L
humanName: Left Middle Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger01.L
humanName: Left Ring Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger02.L
humanName: Left Ring Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger03.L
humanName: Left Ring Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky01.L
humanName: Left Little Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky02.L
humanName: Left Little Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky03.L
humanName: Left Little Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb01.R
humanName: Right Thumb Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb02.R
humanName: Right Thumb Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb03.R
humanName: Right Thumb Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger01.R
humanName: Right Index Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger02.R
humanName: Right Index Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger03.R
humanName: Right Index Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger01.R
humanName: Right Middle Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger02.R
humanName: Right Middle Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger03.R
humanName: Right Middle Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger01.R
humanName: Right Ring Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger02.R
humanName: Right Ring Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger03.R
humanName: Right Ring Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky01.R
humanName: Right Little Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky02.R
humanName: Right Little Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky03.R
humanName: Right Little Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
skeleton:
- name: Human_DummyModel_F(Clone)
parentName:
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: HumanF_BodyMesh
parentName: Human_DummyModel_F(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Rig
parentName: Human_DummyModel_F(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: B-root
parentName: Rig
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: B-spineProxy
parentName: B-root
position: {x: -0, y: 1.092844, z: 0.029147}
rotation: {x: -0.012905054, y: 0, z: -0, w: 0.99991673}
scale: {x: 1, y: 1.0000001, z: 1.0000001}
- name: B-hips
parentName: B-root
position: {x: -0, y: 0.967712, z: 0.016772}
rotation: {x: 0.04926631, y: 0, z: -0, w: 0.9987857}
scale: {x: 1, y: 1.0000004, z: 1.0000004}
- name: B-spine
parentName: B-hips
position: {x: -0, y: 0.12574437, z: 0.00000011940791}
rotation: {x: -0.062152267, y: 0, z: -0, w: 0.99806666}
scale: {x: 1, y: 0.99999976, z: 0.99999976}
- name: B-chest
parentName: B-spine
position: {x: -0, y: 0.13376056, z: -0.00000077390683}
rotation: {x: -0.02258696, y: 0, z: -0, w: 0.9997449}
scale: {x: 1, y: 0.9999996, z: 0.9999996}
- name: B-shoulder.R
parentName: B-chest
position: {x: -0, y: 0.19125995, z: -0.005656177}
rotation: {x: -0.5165573, y: -0.44464085, z: -0.47738376, w: 0.554588}
scale: {x: 1.0000008, y: 1.0000006, z: 1.0000002}
- name: B-upperArm.R
parentName: B-shoulder.R
position: {x: -0.00000043065853, y: 0.1619337, z: -0.000000866464}
rotation: {x: 0.03406315, y: 0.7090742, z: -0.08345674, w: 0.69934857}
scale: {x: 0.99999976, y: 1, z: 0.99999946}
- name: B-forearm.R
parentName: B-upperArm.R
position: {x: -0.0000005071642, y: 0.23413825, z: 0.0000019611641}
rotation: {x: 0.0013730773, y: -0.00042225965, z: 0.0032032696, w: 0.99999386}
scale: {x: 1.0000001, y: 0.99999964, z: 0.9999996}
- name: B-hand.R
parentName: B-forearm.R
position: {x: -0.000000328232, y: 0.19596381, z: -0.0000008355853}
rotation: {x: 0.013529134, y: 0.7054088, z: 0.032969795, w: 0.70790416}
scale: {x: 0.9999999, y: 1.0000002, z: 1.0000005}
- name: B-handProp.R
parentName: B-hand.R
position: {x: 0.0029605331, y: 0.10533051, z: 0.022608897}
rotation: {x: -0.67608327, y: 0.73659164, z: -0.013668106, w: -0.012545319}
scale: {x: 0.99999964, y: 1.0000005, z: 0.9999996}
- name: B-indexFinger01.R
parentName: B-hand.R
position: {x: -0.036052607, y: 0.13202412, z: -0.0022375023}
rotation: {x: 0.019054495, y: -0.0149580045, z: 0.031315368, w: 0.999216}
scale: {x: 1.0000002, y: 0.99999964, z: 0.9999993}
- name: B-indexFinger02.R
parentName: B-indexFinger01.R
position: {x: 0.00000021708313, y: 0.046758045, z: -0.0000005285747}
rotation: {x: 0.040758472, y: 0.02876925, z: -0.0030862393, w: 0.99875003}
scale: {x: 1, y: 1.0000004, z: 1.0000002}
- name: B-indexFinger03.R
parentName: B-indexFinger02.R
position: {x: 0.000000038075022, y: 0.034652043, z: 0.00000019983679}
rotation: {x: -0.006236443, y: 0.004024028, z: -0.0109188985, w: 0.99991286}
scale: {x: 0.9999999, y: 0.9999999, z: 0.99999964}
- name: B-middleFinger01.R
parentName: B-hand.R
position: {x: -0.00928522, y: 0.1318378, z: -0.0089382}
rotation: {x: -0.004700204, y: -0.0032572027, z: -0.001801642, w: 0.99998206}
scale: {x: 1.0000006, y: 0.9999997, z: 0.99999917}
- name: B-middleFinger02.R
parentName: B-middleFinger01.R
position: {x: -0.0000003849299, y: 0.048716273, z: -0.0000001691299}
rotation: {x: 0.039366316, y: 0.04573892, z: 0.00377753, w: 0.9981703}
scale: {x: 0.9999997, y: 1.0000004, z: 1}
- name: B-middleFinger03.R
parentName: B-middleFinger02.R
position: {x: -0.00000039262213, y: 0.035888083, z: 0.00000029152696}
rotation: {x: 0.0049846717, y: -0.02122791, z: -0.0063242065, w: 0.99974227}
scale: {x: 0.99999964, y: 0.99999994, z: 1.0000002}
- name: B-ringFinger01.R
parentName: B-hand.R
position: {x: 0.016020812, y: 0.1283572, z: -0.005707851}
rotation: {x: -0.0071167736, y: 0.0017728558, z: -0.036400504, w: 0.9993104}
scale: {x: 1.0000005, y: 0.9999992, z: 0.9999996}
- name: B-ringFinger02.R
parentName: B-ringFinger01.R
position: {x: 0.00000047158898, y: 0.045192316, z: 0.00000021597218}
rotation: {x: 0.037958622, y: -0.0021153935, z: 0.012520862, w: 0.9991986}
scale: {x: 0.99999946, y: 1.0000005, z: 0.9999997}
- name: B-ringFinger03.R
parentName: B-ringFinger02.R
position: {x: -0.0000004720245, y: 0.034694634, z: 0.00000008820079}
rotation: {x: 0.02091165, y: -0.04065229, z: -0.015794862, w: 0.99882966}
scale: {x: 1.0000002, y: 0.99999976, z: 0.9999997}
- name: B-pinky01.R
parentName: B-hand.R
position: {x: 0.041580904, y: 0.119742304, z: -0.0024299922}
rotation: {x: -0.011731888, y: -0.016481936, z: -0.04421447, w: 0.9988172}
scale: {x: 1.0000002, y: 0.9999994, z: 0.99999917}
- name: B-pinky02.R
parentName: B-pinky01.R
position: {x: 0.0000007804244, y: 0.03832724, z: 0.00000044214514}
rotation: {x: 0.039002027, y: 0.011177708, z: 0.009234122, w: 0.99913394}
scale: {x: 1.0000002, y: 1.0000006, z: 1.0000002}
- name: B-pinky03.R
parentName: B-pinky02.R
position: {x: -0.000000269953, y: 0.03220071, z: -0.0000005856981}
rotation: {x: 0.022101695, y: -0.02182341, z: 0.009210792, w: 0.99947506}
scale: {x: 1.0000005, y: 0.99999994, z: 1.0000007}
- name: B-thumb01.R
parentName: B-hand.R
position: {x: -0.039809253, y: 0.048496302, z: 0.0130518135}
rotation: {x: -0.22471787, y: 0.63045275, z: 0.29821387, w: 0.6805144}
scale: {x: 0.99999946, y: 1.0000002, z: 1.0000005}
- name: B-thumb02.R
parentName: B-thumb01.R
position: {x: 0.00000020260806, y: 0.047178134, z: 0.000000160123}
rotation: {x: 0.038173996, y: 0.013301423, z: -0.008042345, w: 0.9991502}
scale: {x: 1.0000007, y: 0.9999997, z: 0.9999999}
- name: B-thumb03.R
parentName: B-thumb02.R
position: {x: -0.00000069069114, y: 0.03520854, z: 0.00000004046409}
rotation: {x: -0.060352694, y: 0.014396386, z: 0.0074255248, w: 0.9980457}
scale: {x: 0.9999995, y: 1.0000004, z: 1}
- name: B-neck
parentName: B-chest
position: {x: -0, y: 0.27081212, z: 0.0000007058524}
rotation: {x: 0.105346866, y: 0, z: -0, w: 0.99443555}
scale: {x: 1, y: 0.9999997, z: 1.0000007}
- name: B-head
parentName: B-neck
position: {x: -0, y: 0.07409704, z: 0.00000025054106}
rotation: {x: -0.069990024, y: 0, z: -0, w: 0.9975477}
scale: {x: 1, y: 1.0000006, z: 0.99999964}
- name: B-jaw
parentName: B-head
position: {x: -0, y: 0, z: 0}
rotation: {x: 0.70698464, y: 0.000007072379, z: -0.00000706994, w: 0.7072289}
scale: {x: 1, y: 1, z: 1}
- name: B-shoulder.L
parentName: B-chest
position: {x: -0, y: 0.19125995, z: -0.005656177}
rotation: {x: -0.5165571, y: 0.44464028, z: 0.47738382, w: 0.5545886}
scale: {x: 0.9999998, y: 0.9999995, z: 1.0000002}
- name: B-upperArm.L
parentName: B-shoulder.L
position: {x: 0.00000040656337, y: 0.16193385, z: -0.0000008664629}
rotation: {x: 0.033948872, y: -0.70908755, z: 0.08334149, w: 0.69935447}
scale: {x: 0.9999998, y: 1.0000002, z: 0.9999999}
- name: B-forearm.L
parentName: B-upperArm.L
position: {x: 0.000000097359035, y: 0.2341381, z: 0.00000030291466}
rotation: {x: 0.0017385628, y: 0.0004205673, z: -0.0032047313, w: 0.99999326}
scale: {x: 0.99999994, y: 1.0000004, z: 1.0000001}
- name: B-hand.L
parentName: B-forearm.L
position: {x: 0.00000052406216, y: 0.1959644, z: -0.0000011816531}
rotation: {x: 0.013386631, y: -0.70541465, z: -0.032826252, w: 0.7079078}
scale: {x: 0.99999994, y: 0.9999992, z: 0.9999996}
- name: B-handProp.L
parentName: B-hand.L
position: {x: -0.0029615294, y: 0.10533054, z: 0.02260892}
rotation: {x: 0.67608327, y: 0.73659164, z: -0.013668119, w: 0.012545332}
scale: {x: 1.0000006, y: 0.99999946, z: 1.0000006}
- name: B-indexFinger01.L
parentName: B-hand.L
position: {x: 0.03605161, y: 0.13202417, z: -0.0022375062}
rotation: {x: 0.019054513, y: 0.014957919, z: -0.03131587, w: 0.99921596}
scale: {x: 1.0000004, y: 0.9999998, z: 1.0000002}
- name: B-indexFinger02.L
parentName: B-indexFinger01.L
position: {x: 0.00000072554116, y: 0.04675823, z: -0.0000005109258}
rotation: {x: 0.04075494, y: -0.02876944, z: 0.0030826945, w: 0.9987502}
scale: {x: 1.0000001, y: 1.0000002, z: 1.0000002}
- name: B-indexFinger03.L
parentName: B-indexFinger02.L
position: {x: -0.00000009920999, y: 0.034652077, z: 0.00000023013986}
rotation: {x: -0.0062364372, y: -0.004023549, z: 0.010918792, w: 0.99991286}
scale: {x: 0.9999998, y: 1.0000008, z: 0.9999995}
- name: B-middleFinger01.L
parentName: B-hand.L
position: {x: 0.00928522, y: 0.13183793, z: -0.008938214}
rotation: {x: -0.004700207, y: 0.0032570793, z: 0.0018007505, w: 0.99998206}
scale: {x: 1.0000007, y: 0.9999999, z: 1.0000001}
- name: B-middleFinger02.L
parentName: B-middleFinger01.L
position: {x: 0.00000028786184, y: 0.048716314, z: -0.00000017087451}
rotation: {x: 0.039368037, y: -0.045739666, z: -0.0037847473, w: 0.9981702}
scale: {x: 0.99999976, y: 1.000001, z: 1.0000006}
- name: B-middleFinger03.L
parentName: B-middleFinger02.L
position: {x: -0.00000066842983, y: 0.035888, z: 0.00000028642995}
rotation: {x: 0.0049827034, y: 0.021227859, z: 0.0063241003, w: 0.99974227}
scale: {x: 0.9999996, y: 0.99999905, z: 0.99999934}
- name: B-ringFinger01.L
parentName: B-hand.L
position: {x: -0.016021809, y: 0.12835726, z: -0.005707858}
rotation: {x: -0.007116776, y: -0.0017729683, z: 0.036399588, w: 0.99931043}
scale: {x: 1.0000005, y: 1.0000002, z: 1.0000006}
- name: B-ringFinger02.L
parentName: B-ringFinger01.L
position: {x: 0.00000043795694, y: 0.04519233, z: 0.00000021050154}
rotation: {x: 0.037963506, y: 0.0021157071, z: -0.01252746, w: 0.9991984}
scale: {x: 0.9999995, y: 0.99999964, z: 0.9999996}
- name: B-ringFinger03.L
parentName: B-ringFinger02.L
position: {x: 0.00000034561023, y: 0.03469565, z: -0.00000007648653}
rotation: {x: 0.020911071, y: 0.04065225, z: 0.015794758, w: 0.99882966}
scale: {x: 1.0000001, y: 1.0000005, z: 0.9999997}
- name: B-pinky01.L
parentName: B-hand.L
position: {x: -0.041581903, y: 0.119742356, z: -0.0024299957}
rotation: {x: -0.01172906, y: 0.01648238, z: 0.0442254, w: 0.9988167}
scale: {x: 1.0000002, y: 1.0000004, z: 1.0000002}
- name: B-pinky02.L
parentName: B-pinky01.L
position: {x: 0.00000014151807, y: 0.03832722, z: 0.00000047056287}
rotation: {x: 0.039005004, y: -0.011177422, z: -0.009239738, w: 0.99913377}
scale: {x: 1.0000002, y: 0.99999946, z: 1.0000001}
- name: B-pinky03.L
parentName: B-pinky02.L
position: {x: 0.000000233103, y: 0.032200746, z: -0.00000055902217}
rotation: {x: 0.022101717, y: 0.02182328, z: -0.009211465, w: 0.99947506}
scale: {x: 0.9999995, y: 1, z: 0.99999964}
- name: B-thumb01.L
parentName: B-hand.L
position: {x: 0.03980834, y: 0.048495278, z: 0.013051865}
rotation: {x: -0.2247114, y: -0.6304557, z: -0.2982149, w: 0.6805132}
scale: {x: 1.0000005, y: 1, z: 1.0000005}
- name: B-thumb02.L
parentName: B-thumb01.L
position: {x: -0.0000007063521, y: 0.047179468, z: -0.00000013365789}
rotation: {x: 0.038171936, y: -0.013301728, z: 0.008042519, w: 0.9991503}
scale: {x: 1.0000004, y: 1, z: 0.9999994}
- name: B-thumb03.L
parentName: B-thumb02.L
position: {x: 0.0000007190916, y: 0.035208564, z: 0.00000017922088}
rotation: {x: -0.06035389, y: -0.014396597, z: -0.007425322, w: 0.9980456}
scale: {x: 0.9999992, y: 0.99999994, z: 1.0000001}
- name: B-thigh.L
parentName: B-hips
position: {x: -0.096950985, y: -0.05446949, z: 0.0020414153}
rotation: {x: 0.9977441, y: 0.011110197, z: -0.0039620763, w: 0.066088475}
scale: {x: 1.0000002, y: 0.9999997, z: 1.000001}
- name: B-shin.L
parentName: B-thigh.L
position: {x: 0.00000018468991, y: 0.41111633, z: 0.0000005281011}
rotation: {x: 0.067057244, y: -0.00057845906, z: 0.011617889, w: 0.9976813}
scale: {x: 0.9999997, y: 1.0000002, z: 0.99999964}
- name: B-foot.L
parentName: B-shin.L
position: {x: -0.00000017405802, y: 0.3880767, z: -0.00000019306846}
rotation: {x: -0.5354999, y: 0.004330197, z: 0.0016612022, w: 0.84452266}
scale: {x: 1.0000001, y: 0.9999997, z: 0.99999976}
- name: B-toe.L
parentName: B-foot.L
position: {x: -0.00000027025197, y: 0.17254004, z: -0.000000117418054}
rotation: {x: 0.000012936387, y: 0.9622731, z: -0.27208534, w: 0.00017343421}
scale: {x: 1, y: 1.0000018, z: 0.999999}
- name: B-thigh.R
parentName: B-hips
position: {x: 0.096950985, y: -0.05446959, z: 0.0020404202}
rotation: {x: 0.9977441, y: -0.011109428, z: 0.003967029, w: 0.066088304}
scale: {x: 1.0000004, y: 0.99999976, z: 1.000008}
- name: B-shin.R
parentName: B-thigh.R
position: {x: 0.0000005496826, y: 0.41111633, z: -0.00000065481464}
rotation: {x: 0.06705632, y: 0.0005783735, z: -0.011616509, w: 0.99768144}
scale: {x: 0.9999997, y: 1.0000002, z: 1.0000007}
- name: B-foot.R
parentName: B-shin.R
position: {x: -0.00000044263592, y: 0.3880767, z: 0.000000107811644}
rotation: {x: -0.53550065, y: -0.0043338453, z: -0.0016630876, w: 0.84452206}
scale: {x: 1, y: 0.9999993, z: 0.99999994}
- name: B-toe.R
parentName: B-foot.R
position: {x: 0.00000074386196, y: 0.17254034, z: 0.00000017937037}
rotation: {x: -0.000012542016, y: 0.96227294, z: -0.27208585, w: -0.00017487761}
scale: {x: 1, y: 1.0000029, z: 0.999997}
armTwist: 0.5
foreArmTwist: 0.5
upperLegTwist: 0.5
legTwist: 0.5
armStretch: 0.05
legStretch: 0.05
feetSpacing: 0
globalScale: 1
rootMotionBoneName:
hasTranslationDoF: 0
hasExtraRoot: 0
skeletonHasParents: 1
lastHumanDescriptionAvatarSource: {fileID: 9000000, guid: 1841c298173cdad4db8df8602c8f1c8d,
type: 3}
autoGenerateAvatarMappingIfUnspecified: 1
animationType: 3
humanoidOversampling: 1
avatarSetup: 2
addHumanoidExtraRootOnlyWhenUsingAvatar: 1
importBlendShapeDeformPercent: 1
remapMaterialsIfMaterialImportModeIsNone: 0
additionalBone: 0
userData:
assetBundleName:
assetBundleVariant:
AssetOrigin:
serializedVersion: 1
productId: 154271
packageName: Human Basic Motions FREE
packageVersion: 2.4.2
assetPath: Assets/Kevin Iglesias/Human Animations/Animations/Female/Movement/Run/RootMotion/HumanF@Run01_Right
[RM].fbx
uploadId: 908942

View file

@ -1,8 +0,0 @@
fileFormatVersion: 2
guid: c2c482be839c3de4ea61574648bc1e70
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View file

@ -1,973 +0,0 @@
fileFormatVersion: 2
guid: f19b58f90d2ec3f409b2fd86a79e7cc3
ModelImporter:
serializedVersion: 22200
internalIDToNameTable: []
externalObjects: {}
materials:
materialImportMode: 0
materialName: 0
materialSearch: 1
materialLocation: 1
animations:
legacyGenerateAnimations: 4
bakeSimulation: 0
resampleCurves: 1
optimizeGameObjects: 0
removeConstantScaleCurves: 0
motionNodeName:
animationImportErrors:
animationImportWarnings:
animationRetargetingWarnings:
animationDoRetargetingWarnings: 0
importAnimatedCustomProperties: 0
importConstraints: 0
animationCompression: 0
animationRotationError: 0.5
animationPositionError: 0.5
animationScaleError: 0.5
animationWrapMode: 0
extraExposedTransformPaths: []
extraUserProperties: []
clipAnimations:
- serializedVersion: 16
name: HumanF@Sprint01_Forward
takeName: Untitled
internalID: 3094330708855449807
firstFrame: 0
lastFrame: 16
wrapMode: 0
orientationOffsetY: 0
level: 0
cycleOffset: 0
loop: 0
hasAdditiveReferencePose: 0
loopTime: 1
loopBlend: 0
loopBlendOrientation: 1
loopBlendPositionY: 1
loopBlendPositionXZ: 1
keepOriginalOrientation: 1
keepOriginalPositionY: 1
keepOriginalPositionXZ: 1
heightFromFeet: 0
mirror: 0
bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
curves: []
events: []
transformMask:
- path:
weight: 1
- path: HumanF_BodyMesh
weight: 0
- path: Rig
weight: 1
- path: Rig/B-root
weight: 1
- path: Rig/B-root/B-hips
weight: 1
- path: Rig/B-root/B-hips/B-spine
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck/B-head
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck/B-head/B-jaw
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-handProp.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L/B-indexFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L/B-indexFinger02.L/B-indexFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L/B-middleFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L/B-middleFinger02.L/B-middleFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L/B-pinky02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L/B-pinky02.L/B-pinky03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L/B-ringFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L/B-ringFinger02.L/B-ringFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L/B-thumb02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L/B-thumb02.L/B-thumb03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-handProp.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R/B-indexFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R/B-indexFinger02.R/B-indexFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R/B-middleFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R/B-middleFinger02.R/B-middleFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R/B-pinky02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R/B-pinky02.R/B-pinky03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R/B-ringFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R/B-ringFinger02.R/B-ringFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R/B-thumb02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R/B-thumb02.R/B-thumb03.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L/B-foot.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L/B-foot.L/B-toe.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R/B-foot.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R/B-foot.R/B-toe.R
weight: 1
- path: Rig/B-root/B-spineProxy
weight: 1
maskType: 1
maskSource: {fileID: 31900000, guid: 89527f5525238ee44b3182458d85143a, type: 2}
additiveReferencePoseFrame: 0
isReadable: 0
meshes:
lODScreenPercentages: []
globalScale: 1
meshCompression: 0
addColliders: 0
useSRGBMaterialColor: 1
sortHierarchyByName: 1
importPhysicalCameras: 1
importVisibility: 1
importBlendShapes: 1
importCameras: 1
importLights: 1
nodeNameCollisionStrategy: 1
fileIdsGeneration: 2
swapUVChannels: 0
generateSecondaryUV: 0
useFileUnits: 1
keepQuads: 0
weldVertices: 1
bakeAxisConversion: 0
preserveHierarchy: 1
skinWeightsMode: 0
maxBonesPerVertex: 4
minBoneWeight: 0.001
optimizeBones: 1
meshOptimizationFlags: -1
indexFormat: 0
secondaryUVAngleDistortion: 8
secondaryUVAreaDistortion: 15.000001
secondaryUVHardAngle: 88
secondaryUVMarginMethod: 1
secondaryUVMinLightmapResolution: 40
secondaryUVMinObjectScale: 1
secondaryUVPackMargin: 4
useFileScale: 1
strictVertexDataChecks: 0
tangentSpace:
normalSmoothAngle: 60
normalImportMode: 0
tangentImportMode: 3
normalCalculationMode: 4
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0
blendShapeNormalImportMode: 1
normalSmoothingSource: 0
referencedClips: []
importAnimation: 1
humanDescription:
serializedVersion: 3
human:
- boneName: B-hips
humanName: Hips
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thigh.L
humanName: LeftUpperLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thigh.R
humanName: RightUpperLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shin.L
humanName: LeftLowerLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shin.R
humanName: RightLowerLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-foot.L
humanName: LeftFoot
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-foot.R
humanName: RightFoot
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-spine
humanName: Spine
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-chest
humanName: Chest
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-neck
humanName: Neck
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-head
humanName: Head
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shoulder.L
humanName: LeftShoulder
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shoulder.R
humanName: RightShoulder
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-upperArm.L
humanName: LeftUpperArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-upperArm.R
humanName: RightUpperArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-forearm.L
humanName: LeftLowerArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-forearm.R
humanName: RightLowerArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-hand.L
humanName: LeftHand
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-hand.R
humanName: RightHand
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-toe.L
humanName: LeftToes
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-toe.R
humanName: RightToes
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-jaw
humanName: Jaw
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb01.L
humanName: Left Thumb Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb02.L
humanName: Left Thumb Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb03.L
humanName: Left Thumb Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger01.L
humanName: Left Index Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger02.L
humanName: Left Index Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger03.L
humanName: Left Index Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger01.L
humanName: Left Middle Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger02.L
humanName: Left Middle Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger03.L
humanName: Left Middle Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger01.L
humanName: Left Ring Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger02.L
humanName: Left Ring Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger03.L
humanName: Left Ring Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky01.L
humanName: Left Little Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky02.L
humanName: Left Little Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky03.L
humanName: Left Little Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb01.R
humanName: Right Thumb Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb02.R
humanName: Right Thumb Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb03.R
humanName: Right Thumb Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger01.R
humanName: Right Index Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger02.R
humanName: Right Index Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger03.R
humanName: Right Index Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger01.R
humanName: Right Middle Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger02.R
humanName: Right Middle Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger03.R
humanName: Right Middle Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger01.R
humanName: Right Ring Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger02.R
humanName: Right Ring Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger03.R
humanName: Right Ring Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky01.R
humanName: Right Little Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky02.R
humanName: Right Little Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky03.R
humanName: Right Little Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
skeleton:
- name: Human_DummyModel_F(Clone)
parentName:
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: HumanF_BodyMesh
parentName: Human_DummyModel_F(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Rig
parentName: Human_DummyModel_F(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: B-root
parentName: Rig
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: B-spineProxy
parentName: B-root
position: {x: -0, y: 1.092844, z: 0.029147}
rotation: {x: -0.012905054, y: 0, z: -0, w: 0.99991673}
scale: {x: 1, y: 1.0000001, z: 1.0000001}
- name: B-hips
parentName: B-root
position: {x: -0, y: 0.967712, z: 0.016772}
rotation: {x: 0.04926631, y: 0, z: -0, w: 0.9987857}
scale: {x: 1, y: 1.0000004, z: 1.0000004}
- name: B-spine
parentName: B-hips
position: {x: -0, y: 0.12574437, z: 0.00000011940791}
rotation: {x: -0.062152267, y: 0, z: -0, w: 0.99806666}
scale: {x: 1, y: 0.99999976, z: 0.99999976}
- name: B-chest
parentName: B-spine
position: {x: -0, y: 0.13376056, z: -0.00000077390683}
rotation: {x: -0.02258696, y: 0, z: -0, w: 0.9997449}
scale: {x: 1, y: 0.9999996, z: 0.9999996}
- name: B-shoulder.R
parentName: B-chest
position: {x: -0, y: 0.19125995, z: -0.005656177}
rotation: {x: -0.5165573, y: -0.44464085, z: -0.47738376, w: 0.554588}
scale: {x: 1.0000008, y: 1.0000006, z: 1.0000002}
- name: B-upperArm.R
parentName: B-shoulder.R
position: {x: -0.00000043065853, y: 0.1619337, z: -0.000000866464}
rotation: {x: 0.03406315, y: 0.7090742, z: -0.08345674, w: 0.69934857}
scale: {x: 0.99999976, y: 1, z: 0.99999946}
- name: B-forearm.R
parentName: B-upperArm.R
position: {x: -0.0000005071642, y: 0.23413825, z: 0.0000019611641}
rotation: {x: 0.0013730773, y: -0.00042225965, z: 0.0032032696, w: 0.99999386}
scale: {x: 1.0000001, y: 0.99999964, z: 0.9999996}
- name: B-hand.R
parentName: B-forearm.R
position: {x: -0.000000328232, y: 0.19596381, z: -0.0000008355853}
rotation: {x: 0.013529134, y: 0.7054088, z: 0.032969795, w: 0.70790416}
scale: {x: 0.9999999, y: 1.0000002, z: 1.0000005}
- name: B-handProp.R
parentName: B-hand.R
position: {x: 0.0029605331, y: 0.10533051, z: 0.022608897}
rotation: {x: -0.67608327, y: 0.73659164, z: -0.013668106, w: -0.012545319}
scale: {x: 0.99999964, y: 1.0000005, z: 0.9999996}
- name: B-indexFinger01.R
parentName: B-hand.R
position: {x: -0.036052607, y: 0.13202412, z: -0.0022375023}
rotation: {x: 0.019054495, y: -0.0149580045, z: 0.031315368, w: 0.999216}
scale: {x: 1.0000002, y: 0.99999964, z: 0.9999993}
- name: B-indexFinger02.R
parentName: B-indexFinger01.R
position: {x: 0.00000021708313, y: 0.046758045, z: -0.0000005285747}
rotation: {x: 0.040758472, y: 0.02876925, z: -0.0030862393, w: 0.99875003}
scale: {x: 1, y: 1.0000004, z: 1.0000002}
- name: B-indexFinger03.R
parentName: B-indexFinger02.R
position: {x: 0.000000038075022, y: 0.034652043, z: 0.00000019983679}
rotation: {x: -0.006236443, y: 0.004024028, z: -0.0109188985, w: 0.99991286}
scale: {x: 0.9999999, y: 0.9999999, z: 0.99999964}
- name: B-middleFinger01.R
parentName: B-hand.R
position: {x: -0.00928522, y: 0.1318378, z: -0.0089382}
rotation: {x: -0.004700204, y: -0.0032572027, z: -0.001801642, w: 0.99998206}
scale: {x: 1.0000006, y: 0.9999997, z: 0.99999917}
- name: B-middleFinger02.R
parentName: B-middleFinger01.R
position: {x: -0.0000003849299, y: 0.048716273, z: -0.0000001691299}
rotation: {x: 0.039366316, y: 0.04573892, z: 0.00377753, w: 0.9981703}
scale: {x: 0.9999997, y: 1.0000004, z: 1}
- name: B-middleFinger03.R
parentName: B-middleFinger02.R
position: {x: -0.00000039262213, y: 0.035888083, z: 0.00000029152696}
rotation: {x: 0.0049846717, y: -0.02122791, z: -0.0063242065, w: 0.99974227}
scale: {x: 0.99999964, y: 0.99999994, z: 1.0000002}
- name: B-ringFinger01.R
parentName: B-hand.R
position: {x: 0.016020812, y: 0.1283572, z: -0.005707851}
rotation: {x: -0.0071167736, y: 0.0017728558, z: -0.036400504, w: 0.9993104}
scale: {x: 1.0000005, y: 0.9999992, z: 0.9999996}
- name: B-ringFinger02.R
parentName: B-ringFinger01.R
position: {x: 0.00000047158898, y: 0.045192316, z: 0.00000021597218}
rotation: {x: 0.037958622, y: -0.0021153935, z: 0.012520862, w: 0.9991986}
scale: {x: 0.99999946, y: 1.0000005, z: 0.9999997}
- name: B-ringFinger03.R
parentName: B-ringFinger02.R
position: {x: -0.0000004720245, y: 0.034694634, z: 0.00000008820079}
rotation: {x: 0.02091165, y: -0.04065229, z: -0.015794862, w: 0.99882966}
scale: {x: 1.0000002, y: 0.99999976, z: 0.9999997}
- name: B-pinky01.R
parentName: B-hand.R
position: {x: 0.041580904, y: 0.119742304, z: -0.0024299922}
rotation: {x: -0.011731888, y: -0.016481936, z: -0.04421447, w: 0.9988172}
scale: {x: 1.0000002, y: 0.9999994, z: 0.99999917}
- name: B-pinky02.R
parentName: B-pinky01.R
position: {x: 0.0000007804244, y: 0.03832724, z: 0.00000044214514}
rotation: {x: 0.039002027, y: 0.011177708, z: 0.009234122, w: 0.99913394}
scale: {x: 1.0000002, y: 1.0000006, z: 1.0000002}
- name: B-pinky03.R
parentName: B-pinky02.R
position: {x: -0.000000269953, y: 0.03220071, z: -0.0000005856981}
rotation: {x: 0.022101695, y: -0.02182341, z: 0.009210792, w: 0.99947506}
scale: {x: 1.0000005, y: 0.99999994, z: 1.0000007}
- name: B-thumb01.R
parentName: B-hand.R
position: {x: -0.039809253, y: 0.048496302, z: 0.0130518135}
rotation: {x: -0.22471787, y: 0.63045275, z: 0.29821387, w: 0.6805144}
scale: {x: 0.99999946, y: 1.0000002, z: 1.0000005}
- name: B-thumb02.R
parentName: B-thumb01.R
position: {x: 0.00000020260806, y: 0.047178134, z: 0.000000160123}
rotation: {x: 0.038173996, y: 0.013301423, z: -0.008042345, w: 0.9991502}
scale: {x: 1.0000007, y: 0.9999997, z: 0.9999999}
- name: B-thumb03.R
parentName: B-thumb02.R
position: {x: -0.00000069069114, y: 0.03520854, z: 0.00000004046409}
rotation: {x: -0.060352694, y: 0.014396386, z: 0.0074255248, w: 0.9980457}
scale: {x: 0.9999995, y: 1.0000004, z: 1}
- name: B-neck
parentName: B-chest
position: {x: -0, y: 0.27081212, z: 0.0000007058524}
rotation: {x: 0.105346866, y: 0, z: -0, w: 0.99443555}
scale: {x: 1, y: 0.9999997, z: 1.0000007}
- name: B-head
parentName: B-neck
position: {x: -0, y: 0.07409704, z: 0.00000025054106}
rotation: {x: -0.069990024, y: 0, z: -0, w: 0.9975477}
scale: {x: 1, y: 1.0000006, z: 0.99999964}
- name: B-jaw
parentName: B-head
position: {x: -0, y: 0, z: 0}
rotation: {x: 0.70698464, y: 0.000007072379, z: -0.00000706994, w: 0.7072289}
scale: {x: 1, y: 1, z: 1}
- name: B-shoulder.L
parentName: B-chest
position: {x: -0, y: 0.19125995, z: -0.005656177}
rotation: {x: -0.5165571, y: 0.44464028, z: 0.47738382, w: 0.5545886}
scale: {x: 0.9999998, y: 0.9999995, z: 1.0000002}
- name: B-upperArm.L
parentName: B-shoulder.L
position: {x: 0.00000040656337, y: 0.16193385, z: -0.0000008664629}
rotation: {x: 0.033948872, y: -0.70908755, z: 0.08334149, w: 0.69935447}
scale: {x: 0.9999998, y: 1.0000002, z: 0.9999999}
- name: B-forearm.L
parentName: B-upperArm.L
position: {x: 0.000000097359035, y: 0.2341381, z: 0.00000030291466}
rotation: {x: 0.0017385628, y: 0.0004205673, z: -0.0032047313, w: 0.99999326}
scale: {x: 0.99999994, y: 1.0000004, z: 1.0000001}
- name: B-hand.L
parentName: B-forearm.L
position: {x: 0.00000052406216, y: 0.1959644, z: -0.0000011816531}
rotation: {x: 0.013386631, y: -0.70541465, z: -0.032826252, w: 0.7079078}
scale: {x: 0.99999994, y: 0.9999992, z: 0.9999996}
- name: B-handProp.L
parentName: B-hand.L
position: {x: -0.0029615294, y: 0.10533054, z: 0.02260892}
rotation: {x: 0.67608327, y: 0.73659164, z: -0.013668119, w: 0.012545332}
scale: {x: 1.0000006, y: 0.99999946, z: 1.0000006}
- name: B-indexFinger01.L
parentName: B-hand.L
position: {x: 0.03605161, y: 0.13202417, z: -0.0022375062}
rotation: {x: 0.019054513, y: 0.014957919, z: -0.03131587, w: 0.99921596}
scale: {x: 1.0000004, y: 0.9999998, z: 1.0000002}
- name: B-indexFinger02.L
parentName: B-indexFinger01.L
position: {x: 0.00000072554116, y: 0.04675823, z: -0.0000005109258}
rotation: {x: 0.04075494, y: -0.02876944, z: 0.0030826945, w: 0.9987502}
scale: {x: 1.0000001, y: 1.0000002, z: 1.0000002}
- name: B-indexFinger03.L
parentName: B-indexFinger02.L
position: {x: -0.00000009920999, y: 0.034652077, z: 0.00000023013986}
rotation: {x: -0.0062364372, y: -0.004023549, z: 0.010918792, w: 0.99991286}
scale: {x: 0.9999998, y: 1.0000008, z: 0.9999995}
- name: B-middleFinger01.L
parentName: B-hand.L
position: {x: 0.00928522, y: 0.13183793, z: -0.008938214}
rotation: {x: -0.004700207, y: 0.0032570793, z: 0.0018007505, w: 0.99998206}
scale: {x: 1.0000007, y: 0.9999999, z: 1.0000001}
- name: B-middleFinger02.L
parentName: B-middleFinger01.L
position: {x: 0.00000028786184, y: 0.048716314, z: -0.00000017087451}
rotation: {x: 0.039368037, y: -0.045739666, z: -0.0037847473, w: 0.9981702}
scale: {x: 0.99999976, y: 1.000001, z: 1.0000006}
- name: B-middleFinger03.L
parentName: B-middleFinger02.L
position: {x: -0.00000066842983, y: 0.035888, z: 0.00000028642995}
rotation: {x: 0.0049827034, y: 0.021227859, z: 0.0063241003, w: 0.99974227}
scale: {x: 0.9999996, y: 0.99999905, z: 0.99999934}
- name: B-ringFinger01.L
parentName: B-hand.L
position: {x: -0.016021809, y: 0.12835726, z: -0.005707858}
rotation: {x: -0.007116776, y: -0.0017729683, z: 0.036399588, w: 0.99931043}
scale: {x: 1.0000005, y: 1.0000002, z: 1.0000006}
- name: B-ringFinger02.L
parentName: B-ringFinger01.L
position: {x: 0.00000043795694, y: 0.04519233, z: 0.00000021050154}
rotation: {x: 0.037963506, y: 0.0021157071, z: -0.01252746, w: 0.9991984}
scale: {x: 0.9999995, y: 0.99999964, z: 0.9999996}
- name: B-ringFinger03.L
parentName: B-ringFinger02.L
position: {x: 0.00000034561023, y: 0.03469565, z: -0.00000007648653}
rotation: {x: 0.020911071, y: 0.04065225, z: 0.015794758, w: 0.99882966}
scale: {x: 1.0000001, y: 1.0000005, z: 0.9999997}
- name: B-pinky01.L
parentName: B-hand.L
position: {x: -0.041581903, y: 0.119742356, z: -0.0024299957}
rotation: {x: -0.01172906, y: 0.01648238, z: 0.0442254, w: 0.9988167}
scale: {x: 1.0000002, y: 1.0000004, z: 1.0000002}
- name: B-pinky02.L
parentName: B-pinky01.L
position: {x: 0.00000014151807, y: 0.03832722, z: 0.00000047056287}
rotation: {x: 0.039005004, y: -0.011177422, z: -0.009239738, w: 0.99913377}
scale: {x: 1.0000002, y: 0.99999946, z: 1.0000001}
- name: B-pinky03.L
parentName: B-pinky02.L
position: {x: 0.000000233103, y: 0.032200746, z: -0.00000055902217}
rotation: {x: 0.022101717, y: 0.02182328, z: -0.009211465, w: 0.99947506}
scale: {x: 0.9999995, y: 1, z: 0.99999964}
- name: B-thumb01.L
parentName: B-hand.L
position: {x: 0.03980834, y: 0.048495278, z: 0.013051865}
rotation: {x: -0.2247114, y: -0.6304557, z: -0.2982149, w: 0.6805132}
scale: {x: 1.0000005, y: 1, z: 1.0000005}
- name: B-thumb02.L
parentName: B-thumb01.L
position: {x: -0.0000007063521, y: 0.047179468, z: -0.00000013365789}
rotation: {x: 0.038171936, y: -0.013301728, z: 0.008042519, w: 0.9991503}
scale: {x: 1.0000004, y: 1, z: 0.9999994}
- name: B-thumb03.L
parentName: B-thumb02.L
position: {x: 0.0000007190916, y: 0.035208564, z: 0.00000017922088}
rotation: {x: -0.06035389, y: -0.014396597, z: -0.007425322, w: 0.9980456}
scale: {x: 0.9999992, y: 0.99999994, z: 1.0000001}
- name: B-thigh.L
parentName: B-hips
position: {x: -0.096950985, y: -0.05446949, z: 0.0020414153}
rotation: {x: 0.9977441, y: 0.011110197, z: -0.0039620763, w: 0.066088475}
scale: {x: 1.0000002, y: 0.9999997, z: 1.000001}
- name: B-shin.L
parentName: B-thigh.L
position: {x: 0.00000018468991, y: 0.41111633, z: 0.0000005281011}
rotation: {x: 0.067057244, y: -0.00057845906, z: 0.011617889, w: 0.9976813}
scale: {x: 0.9999997, y: 1.0000002, z: 0.99999964}
- name: B-foot.L
parentName: B-shin.L
position: {x: -0.00000017405802, y: 0.3880767, z: -0.00000019306846}
rotation: {x: -0.5354999, y: 0.004330197, z: 0.0016612022, w: 0.84452266}
scale: {x: 1.0000001, y: 0.9999997, z: 0.99999976}
- name: B-toe.L
parentName: B-foot.L
position: {x: -0.00000027025197, y: 0.17254004, z: -0.000000117418054}
rotation: {x: 0.000012936387, y: 0.9622731, z: -0.27208534, w: 0.00017343421}
scale: {x: 1, y: 1.0000018, z: 0.999999}
- name: B-thigh.R
parentName: B-hips
position: {x: 0.096950985, y: -0.05446959, z: 0.0020404202}
rotation: {x: 0.9977441, y: -0.011109428, z: 0.003967029, w: 0.066088304}
scale: {x: 1.0000004, y: 0.99999976, z: 1.000008}
- name: B-shin.R
parentName: B-thigh.R
position: {x: 0.0000005496826, y: 0.41111633, z: -0.00000065481464}
rotation: {x: 0.06705632, y: 0.0005783735, z: -0.011616509, w: 0.99768144}
scale: {x: 0.9999997, y: 1.0000002, z: 1.0000007}
- name: B-foot.R
parentName: B-shin.R
position: {x: -0.00000044263592, y: 0.3880767, z: 0.000000107811644}
rotation: {x: -0.53550065, y: -0.0043338453, z: -0.0016630876, w: 0.84452206}
scale: {x: 1, y: 0.9999993, z: 0.99999994}
- name: B-toe.R
parentName: B-foot.R
position: {x: 0.00000074386196, y: 0.17254034, z: 0.00000017937037}
rotation: {x: -0.000012542016, y: 0.96227294, z: -0.27208585, w: -0.00017487761}
scale: {x: 1, y: 1.0000029, z: 0.999997}
armTwist: 0.5
foreArmTwist: 0.5
upperLegTwist: 0.5
legTwist: 0.5
armStretch: 0.05
legStretch: 0.05
feetSpacing: 0
globalScale: 1
rootMotionBoneName:
hasTranslationDoF: 0
hasExtraRoot: 0
skeletonHasParents: 1
lastHumanDescriptionAvatarSource: {fileID: 9000000, guid: 1841c298173cdad4db8df8602c8f1c8d,
type: 3}
autoGenerateAvatarMappingIfUnspecified: 1
animationType: 3
humanoidOversampling: 1
avatarSetup: 2
addHumanoidExtraRootOnlyWhenUsingAvatar: 1
importBlendShapeDeformPercent: 1
remapMaterialsIfMaterialImportModeIsNone: 0
additionalBone: 0
userData:
assetBundleName:
assetBundleVariant:
AssetOrigin:
serializedVersion: 1
productId: 154271
packageName: Human Basic Motions FREE
packageVersion: 2.4.2
assetPath: Assets/Kevin Iglesias/Human Animations/Animations/Female/Movement/Sprint/HumanF@Sprint01_Forward.fbx
uploadId: 908942

View file

@ -1,973 +0,0 @@
fileFormatVersion: 2
guid: 62f242d2f9358a8429c9ea16bfc70c60
ModelImporter:
serializedVersion: 22200
internalIDToNameTable: []
externalObjects: {}
materials:
materialImportMode: 0
materialName: 0
materialSearch: 1
materialLocation: 1
animations:
legacyGenerateAnimations: 4
bakeSimulation: 0
resampleCurves: 1
optimizeGameObjects: 0
removeConstantScaleCurves: 0
motionNodeName:
animationImportErrors:
animationImportWarnings:
animationRetargetingWarnings:
animationDoRetargetingWarnings: 0
importAnimatedCustomProperties: 0
importConstraints: 0
animationCompression: 0
animationRotationError: 0.5
animationPositionError: 0.5
animationScaleError: 0.5
animationWrapMode: 0
extraExposedTransformPaths: []
extraUserProperties: []
clipAnimations:
- serializedVersion: 16
name: HumanF@Sprint01_ForwardLeft
takeName: Untitled
internalID: 3094330708855449807
firstFrame: 0
lastFrame: 16
wrapMode: 0
orientationOffsetY: 0
level: 0
cycleOffset: 0
loop: 0
hasAdditiveReferencePose: 0
loopTime: 1
loopBlend: 0
loopBlendOrientation: 1
loopBlendPositionY: 1
loopBlendPositionXZ: 1
keepOriginalOrientation: 1
keepOriginalPositionY: 1
keepOriginalPositionXZ: 1
heightFromFeet: 0
mirror: 0
bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
curves: []
events: []
transformMask:
- path:
weight: 1
- path: HumanF_BodyMesh
weight: 0
- path: Rig
weight: 1
- path: Rig/B-root
weight: 1
- path: Rig/B-root/B-hips
weight: 1
- path: Rig/B-root/B-hips/B-spine
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck/B-head
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck/B-head/B-jaw
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-handProp.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L/B-indexFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L/B-indexFinger02.L/B-indexFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L/B-middleFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L/B-middleFinger02.L/B-middleFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L/B-pinky02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L/B-pinky02.L/B-pinky03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L/B-ringFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L/B-ringFinger02.L/B-ringFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L/B-thumb02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L/B-thumb02.L/B-thumb03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-handProp.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R/B-indexFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R/B-indexFinger02.R/B-indexFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R/B-middleFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R/B-middleFinger02.R/B-middleFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R/B-pinky02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R/B-pinky02.R/B-pinky03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R/B-ringFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R/B-ringFinger02.R/B-ringFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R/B-thumb02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R/B-thumb02.R/B-thumb03.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L/B-foot.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L/B-foot.L/B-toe.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R/B-foot.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R/B-foot.R/B-toe.R
weight: 1
- path: Rig/B-root/B-spineProxy
weight: 1
maskType: 1
maskSource: {fileID: 31900000, guid: 89527f5525238ee44b3182458d85143a, type: 2}
additiveReferencePoseFrame: 0
isReadable: 0
meshes:
lODScreenPercentages: []
globalScale: 1
meshCompression: 0
addColliders: 0
useSRGBMaterialColor: 1
sortHierarchyByName: 1
importPhysicalCameras: 1
importVisibility: 1
importBlendShapes: 1
importCameras: 1
importLights: 1
nodeNameCollisionStrategy: 1
fileIdsGeneration: 2
swapUVChannels: 0
generateSecondaryUV: 0
useFileUnits: 1
keepQuads: 0
weldVertices: 1
bakeAxisConversion: 0
preserveHierarchy: 1
skinWeightsMode: 0
maxBonesPerVertex: 4
minBoneWeight: 0.001
optimizeBones: 1
meshOptimizationFlags: -1
indexFormat: 0
secondaryUVAngleDistortion: 8
secondaryUVAreaDistortion: 15.000001
secondaryUVHardAngle: 88
secondaryUVMarginMethod: 1
secondaryUVMinLightmapResolution: 40
secondaryUVMinObjectScale: 1
secondaryUVPackMargin: 4
useFileScale: 1
strictVertexDataChecks: 0
tangentSpace:
normalSmoothAngle: 60
normalImportMode: 0
tangentImportMode: 3
normalCalculationMode: 4
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0
blendShapeNormalImportMode: 1
normalSmoothingSource: 0
referencedClips: []
importAnimation: 1
humanDescription:
serializedVersion: 3
human:
- boneName: B-hips
humanName: Hips
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thigh.L
humanName: LeftUpperLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thigh.R
humanName: RightUpperLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shin.L
humanName: LeftLowerLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shin.R
humanName: RightLowerLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-foot.L
humanName: LeftFoot
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-foot.R
humanName: RightFoot
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-spine
humanName: Spine
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-chest
humanName: Chest
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-neck
humanName: Neck
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-head
humanName: Head
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shoulder.L
humanName: LeftShoulder
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shoulder.R
humanName: RightShoulder
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-upperArm.L
humanName: LeftUpperArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-upperArm.R
humanName: RightUpperArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-forearm.L
humanName: LeftLowerArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-forearm.R
humanName: RightLowerArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-hand.L
humanName: LeftHand
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-hand.R
humanName: RightHand
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-toe.L
humanName: LeftToes
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-toe.R
humanName: RightToes
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-jaw
humanName: Jaw
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb01.L
humanName: Left Thumb Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb02.L
humanName: Left Thumb Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb03.L
humanName: Left Thumb Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger01.L
humanName: Left Index Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger02.L
humanName: Left Index Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger03.L
humanName: Left Index Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger01.L
humanName: Left Middle Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger02.L
humanName: Left Middle Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger03.L
humanName: Left Middle Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger01.L
humanName: Left Ring Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger02.L
humanName: Left Ring Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger03.L
humanName: Left Ring Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky01.L
humanName: Left Little Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky02.L
humanName: Left Little Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky03.L
humanName: Left Little Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb01.R
humanName: Right Thumb Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb02.R
humanName: Right Thumb Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb03.R
humanName: Right Thumb Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger01.R
humanName: Right Index Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger02.R
humanName: Right Index Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger03.R
humanName: Right Index Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger01.R
humanName: Right Middle Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger02.R
humanName: Right Middle Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger03.R
humanName: Right Middle Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger01.R
humanName: Right Ring Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger02.R
humanName: Right Ring Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger03.R
humanName: Right Ring Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky01.R
humanName: Right Little Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky02.R
humanName: Right Little Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky03.R
humanName: Right Little Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
skeleton:
- name: Human_DummyModel_F(Clone)
parentName:
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: HumanF_BodyMesh
parentName: Human_DummyModel_F(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Rig
parentName: Human_DummyModel_F(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: B-root
parentName: Rig
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: B-spineProxy
parentName: B-root
position: {x: -0, y: 1.092844, z: 0.029147}
rotation: {x: -0.012905054, y: 0, z: -0, w: 0.99991673}
scale: {x: 1, y: 1.0000001, z: 1.0000001}
- name: B-hips
parentName: B-root
position: {x: -0, y: 0.967712, z: 0.016772}
rotation: {x: 0.04926631, y: 0, z: -0, w: 0.9987857}
scale: {x: 1, y: 1.0000004, z: 1.0000004}
- name: B-spine
parentName: B-hips
position: {x: -0, y: 0.12574437, z: 0.00000011940791}
rotation: {x: -0.062152267, y: 0, z: -0, w: 0.99806666}
scale: {x: 1, y: 0.99999976, z: 0.99999976}
- name: B-chest
parentName: B-spine
position: {x: -0, y: 0.13376056, z: -0.00000077390683}
rotation: {x: -0.02258696, y: 0, z: -0, w: 0.9997449}
scale: {x: 1, y: 0.9999996, z: 0.9999996}
- name: B-shoulder.R
parentName: B-chest
position: {x: -0, y: 0.19125995, z: -0.005656177}
rotation: {x: -0.5165573, y: -0.44464085, z: -0.47738376, w: 0.554588}
scale: {x: 1.0000008, y: 1.0000006, z: 1.0000002}
- name: B-upperArm.R
parentName: B-shoulder.R
position: {x: -0.00000043065853, y: 0.1619337, z: -0.000000866464}
rotation: {x: 0.03406315, y: 0.7090742, z: -0.08345674, w: 0.69934857}
scale: {x: 0.99999976, y: 1, z: 0.99999946}
- name: B-forearm.R
parentName: B-upperArm.R
position: {x: -0.0000005071642, y: 0.23413825, z: 0.0000019611641}
rotation: {x: 0.0013730773, y: -0.00042225965, z: 0.0032032696, w: 0.99999386}
scale: {x: 1.0000001, y: 0.99999964, z: 0.9999996}
- name: B-hand.R
parentName: B-forearm.R
position: {x: -0.000000328232, y: 0.19596381, z: -0.0000008355853}
rotation: {x: 0.013529134, y: 0.7054088, z: 0.032969795, w: 0.70790416}
scale: {x: 0.9999999, y: 1.0000002, z: 1.0000005}
- name: B-handProp.R
parentName: B-hand.R
position: {x: 0.0029605331, y: 0.10533051, z: 0.022608897}
rotation: {x: -0.67608327, y: 0.73659164, z: -0.013668106, w: -0.012545319}
scale: {x: 0.99999964, y: 1.0000005, z: 0.9999996}
- name: B-indexFinger01.R
parentName: B-hand.R
position: {x: -0.036052607, y: 0.13202412, z: -0.0022375023}
rotation: {x: 0.019054495, y: -0.0149580045, z: 0.031315368, w: 0.999216}
scale: {x: 1.0000002, y: 0.99999964, z: 0.9999993}
- name: B-indexFinger02.R
parentName: B-indexFinger01.R
position: {x: 0.00000021708313, y: 0.046758045, z: -0.0000005285747}
rotation: {x: 0.040758472, y: 0.02876925, z: -0.0030862393, w: 0.99875003}
scale: {x: 1, y: 1.0000004, z: 1.0000002}
- name: B-indexFinger03.R
parentName: B-indexFinger02.R
position: {x: 0.000000038075022, y: 0.034652043, z: 0.00000019983679}
rotation: {x: -0.006236443, y: 0.004024028, z: -0.0109188985, w: 0.99991286}
scale: {x: 0.9999999, y: 0.9999999, z: 0.99999964}
- name: B-middleFinger01.R
parentName: B-hand.R
position: {x: -0.00928522, y: 0.1318378, z: -0.0089382}
rotation: {x: -0.004700204, y: -0.0032572027, z: -0.001801642, w: 0.99998206}
scale: {x: 1.0000006, y: 0.9999997, z: 0.99999917}
- name: B-middleFinger02.R
parentName: B-middleFinger01.R
position: {x: -0.0000003849299, y: 0.048716273, z: -0.0000001691299}
rotation: {x: 0.039366316, y: 0.04573892, z: 0.00377753, w: 0.9981703}
scale: {x: 0.9999997, y: 1.0000004, z: 1}
- name: B-middleFinger03.R
parentName: B-middleFinger02.R
position: {x: -0.00000039262213, y: 0.035888083, z: 0.00000029152696}
rotation: {x: 0.0049846717, y: -0.02122791, z: -0.0063242065, w: 0.99974227}
scale: {x: 0.99999964, y: 0.99999994, z: 1.0000002}
- name: B-ringFinger01.R
parentName: B-hand.R
position: {x: 0.016020812, y: 0.1283572, z: -0.005707851}
rotation: {x: -0.0071167736, y: 0.0017728558, z: -0.036400504, w: 0.9993104}
scale: {x: 1.0000005, y: 0.9999992, z: 0.9999996}
- name: B-ringFinger02.R
parentName: B-ringFinger01.R
position: {x: 0.00000047158898, y: 0.045192316, z: 0.00000021597218}
rotation: {x: 0.037958622, y: -0.0021153935, z: 0.012520862, w: 0.9991986}
scale: {x: 0.99999946, y: 1.0000005, z: 0.9999997}
- name: B-ringFinger03.R
parentName: B-ringFinger02.R
position: {x: -0.0000004720245, y: 0.034694634, z: 0.00000008820079}
rotation: {x: 0.02091165, y: -0.04065229, z: -0.015794862, w: 0.99882966}
scale: {x: 1.0000002, y: 0.99999976, z: 0.9999997}
- name: B-pinky01.R
parentName: B-hand.R
position: {x: 0.041580904, y: 0.119742304, z: -0.0024299922}
rotation: {x: -0.011731888, y: -0.016481936, z: -0.04421447, w: 0.9988172}
scale: {x: 1.0000002, y: 0.9999994, z: 0.99999917}
- name: B-pinky02.R
parentName: B-pinky01.R
position: {x: 0.0000007804244, y: 0.03832724, z: 0.00000044214514}
rotation: {x: 0.039002027, y: 0.011177708, z: 0.009234122, w: 0.99913394}
scale: {x: 1.0000002, y: 1.0000006, z: 1.0000002}
- name: B-pinky03.R
parentName: B-pinky02.R
position: {x: -0.000000269953, y: 0.03220071, z: -0.0000005856981}
rotation: {x: 0.022101695, y: -0.02182341, z: 0.009210792, w: 0.99947506}
scale: {x: 1.0000005, y: 0.99999994, z: 1.0000007}
- name: B-thumb01.R
parentName: B-hand.R
position: {x: -0.039809253, y: 0.048496302, z: 0.0130518135}
rotation: {x: -0.22471787, y: 0.63045275, z: 0.29821387, w: 0.6805144}
scale: {x: 0.99999946, y: 1.0000002, z: 1.0000005}
- name: B-thumb02.R
parentName: B-thumb01.R
position: {x: 0.00000020260806, y: 0.047178134, z: 0.000000160123}
rotation: {x: 0.038173996, y: 0.013301423, z: -0.008042345, w: 0.9991502}
scale: {x: 1.0000007, y: 0.9999997, z: 0.9999999}
- name: B-thumb03.R
parentName: B-thumb02.R
position: {x: -0.00000069069114, y: 0.03520854, z: 0.00000004046409}
rotation: {x: -0.060352694, y: 0.014396386, z: 0.0074255248, w: 0.9980457}
scale: {x: 0.9999995, y: 1.0000004, z: 1}
- name: B-neck
parentName: B-chest
position: {x: -0, y: 0.27081212, z: 0.0000007058524}
rotation: {x: 0.105346866, y: 0, z: -0, w: 0.99443555}
scale: {x: 1, y: 0.9999997, z: 1.0000007}
- name: B-head
parentName: B-neck
position: {x: -0, y: 0.07409704, z: 0.00000025054106}
rotation: {x: -0.069990024, y: 0, z: -0, w: 0.9975477}
scale: {x: 1, y: 1.0000006, z: 0.99999964}
- name: B-jaw
parentName: B-head
position: {x: -0, y: 0, z: 0}
rotation: {x: 0.70698464, y: 0.000007072379, z: -0.00000706994, w: 0.7072289}
scale: {x: 1, y: 1, z: 1}
- name: B-shoulder.L
parentName: B-chest
position: {x: -0, y: 0.19125995, z: -0.005656177}
rotation: {x: -0.5165571, y: 0.44464028, z: 0.47738382, w: 0.5545886}
scale: {x: 0.9999998, y: 0.9999995, z: 1.0000002}
- name: B-upperArm.L
parentName: B-shoulder.L
position: {x: 0.00000040656337, y: 0.16193385, z: -0.0000008664629}
rotation: {x: 0.033948872, y: -0.70908755, z: 0.08334149, w: 0.69935447}
scale: {x: 0.9999998, y: 1.0000002, z: 0.9999999}
- name: B-forearm.L
parentName: B-upperArm.L
position: {x: 0.000000097359035, y: 0.2341381, z: 0.00000030291466}
rotation: {x: 0.0017385628, y: 0.0004205673, z: -0.0032047313, w: 0.99999326}
scale: {x: 0.99999994, y: 1.0000004, z: 1.0000001}
- name: B-hand.L
parentName: B-forearm.L
position: {x: 0.00000052406216, y: 0.1959644, z: -0.0000011816531}
rotation: {x: 0.013386631, y: -0.70541465, z: -0.032826252, w: 0.7079078}
scale: {x: 0.99999994, y: 0.9999992, z: 0.9999996}
- name: B-handProp.L
parentName: B-hand.L
position: {x: -0.0029615294, y: 0.10533054, z: 0.02260892}
rotation: {x: 0.67608327, y: 0.73659164, z: -0.013668119, w: 0.012545332}
scale: {x: 1.0000006, y: 0.99999946, z: 1.0000006}
- name: B-indexFinger01.L
parentName: B-hand.L
position: {x: 0.03605161, y: 0.13202417, z: -0.0022375062}
rotation: {x: 0.019054513, y: 0.014957919, z: -0.03131587, w: 0.99921596}
scale: {x: 1.0000004, y: 0.9999998, z: 1.0000002}
- name: B-indexFinger02.L
parentName: B-indexFinger01.L
position: {x: 0.00000072554116, y: 0.04675823, z: -0.0000005109258}
rotation: {x: 0.04075494, y: -0.02876944, z: 0.0030826945, w: 0.9987502}
scale: {x: 1.0000001, y: 1.0000002, z: 1.0000002}
- name: B-indexFinger03.L
parentName: B-indexFinger02.L
position: {x: -0.00000009920999, y: 0.034652077, z: 0.00000023013986}
rotation: {x: -0.0062364372, y: -0.004023549, z: 0.010918792, w: 0.99991286}
scale: {x: 0.9999998, y: 1.0000008, z: 0.9999995}
- name: B-middleFinger01.L
parentName: B-hand.L
position: {x: 0.00928522, y: 0.13183793, z: -0.008938214}
rotation: {x: -0.004700207, y: 0.0032570793, z: 0.0018007505, w: 0.99998206}
scale: {x: 1.0000007, y: 0.9999999, z: 1.0000001}
- name: B-middleFinger02.L
parentName: B-middleFinger01.L
position: {x: 0.00000028786184, y: 0.048716314, z: -0.00000017087451}
rotation: {x: 0.039368037, y: -0.045739666, z: -0.0037847473, w: 0.9981702}
scale: {x: 0.99999976, y: 1.000001, z: 1.0000006}
- name: B-middleFinger03.L
parentName: B-middleFinger02.L
position: {x: -0.00000066842983, y: 0.035888, z: 0.00000028642995}
rotation: {x: 0.0049827034, y: 0.021227859, z: 0.0063241003, w: 0.99974227}
scale: {x: 0.9999996, y: 0.99999905, z: 0.99999934}
- name: B-ringFinger01.L
parentName: B-hand.L
position: {x: -0.016021809, y: 0.12835726, z: -0.005707858}
rotation: {x: -0.007116776, y: -0.0017729683, z: 0.036399588, w: 0.99931043}
scale: {x: 1.0000005, y: 1.0000002, z: 1.0000006}
- name: B-ringFinger02.L
parentName: B-ringFinger01.L
position: {x: 0.00000043795694, y: 0.04519233, z: 0.00000021050154}
rotation: {x: 0.037963506, y: 0.0021157071, z: -0.01252746, w: 0.9991984}
scale: {x: 0.9999995, y: 0.99999964, z: 0.9999996}
- name: B-ringFinger03.L
parentName: B-ringFinger02.L
position: {x: 0.00000034561023, y: 0.03469565, z: -0.00000007648653}
rotation: {x: 0.020911071, y: 0.04065225, z: 0.015794758, w: 0.99882966}
scale: {x: 1.0000001, y: 1.0000005, z: 0.9999997}
- name: B-pinky01.L
parentName: B-hand.L
position: {x: -0.041581903, y: 0.119742356, z: -0.0024299957}
rotation: {x: -0.01172906, y: 0.01648238, z: 0.0442254, w: 0.9988167}
scale: {x: 1.0000002, y: 1.0000004, z: 1.0000002}
- name: B-pinky02.L
parentName: B-pinky01.L
position: {x: 0.00000014151807, y: 0.03832722, z: 0.00000047056287}
rotation: {x: 0.039005004, y: -0.011177422, z: -0.009239738, w: 0.99913377}
scale: {x: 1.0000002, y: 0.99999946, z: 1.0000001}
- name: B-pinky03.L
parentName: B-pinky02.L
position: {x: 0.000000233103, y: 0.032200746, z: -0.00000055902217}
rotation: {x: 0.022101717, y: 0.02182328, z: -0.009211465, w: 0.99947506}
scale: {x: 0.9999995, y: 1, z: 0.99999964}
- name: B-thumb01.L
parentName: B-hand.L
position: {x: 0.03980834, y: 0.048495278, z: 0.013051865}
rotation: {x: -0.2247114, y: -0.6304557, z: -0.2982149, w: 0.6805132}
scale: {x: 1.0000005, y: 1, z: 1.0000005}
- name: B-thumb02.L
parentName: B-thumb01.L
position: {x: -0.0000007063521, y: 0.047179468, z: -0.00000013365789}
rotation: {x: 0.038171936, y: -0.013301728, z: 0.008042519, w: 0.9991503}
scale: {x: 1.0000004, y: 1, z: 0.9999994}
- name: B-thumb03.L
parentName: B-thumb02.L
position: {x: 0.0000007190916, y: 0.035208564, z: 0.00000017922088}
rotation: {x: -0.06035389, y: -0.014396597, z: -0.007425322, w: 0.9980456}
scale: {x: 0.9999992, y: 0.99999994, z: 1.0000001}
- name: B-thigh.L
parentName: B-hips
position: {x: -0.096950985, y: -0.05446949, z: 0.0020414153}
rotation: {x: 0.9977441, y: 0.011110197, z: -0.0039620763, w: 0.066088475}
scale: {x: 1.0000002, y: 0.9999997, z: 1.000001}
- name: B-shin.L
parentName: B-thigh.L
position: {x: 0.00000018468991, y: 0.41111633, z: 0.0000005281011}
rotation: {x: 0.067057244, y: -0.00057845906, z: 0.011617889, w: 0.9976813}
scale: {x: 0.9999997, y: 1.0000002, z: 0.99999964}
- name: B-foot.L
parentName: B-shin.L
position: {x: -0.00000017405802, y: 0.3880767, z: -0.00000019306846}
rotation: {x: -0.5354999, y: 0.004330197, z: 0.0016612022, w: 0.84452266}
scale: {x: 1.0000001, y: 0.9999997, z: 0.99999976}
- name: B-toe.L
parentName: B-foot.L
position: {x: -0.00000027025197, y: 0.17254004, z: -0.000000117418054}
rotation: {x: 0.000012936387, y: 0.9622731, z: -0.27208534, w: 0.00017343421}
scale: {x: 1, y: 1.0000018, z: 0.999999}
- name: B-thigh.R
parentName: B-hips
position: {x: 0.096950985, y: -0.05446959, z: 0.0020404202}
rotation: {x: 0.9977441, y: -0.011109428, z: 0.003967029, w: 0.066088304}
scale: {x: 1.0000004, y: 0.99999976, z: 1.000008}
- name: B-shin.R
parentName: B-thigh.R
position: {x: 0.0000005496826, y: 0.41111633, z: -0.00000065481464}
rotation: {x: 0.06705632, y: 0.0005783735, z: -0.011616509, w: 0.99768144}
scale: {x: 0.9999997, y: 1.0000002, z: 1.0000007}
- name: B-foot.R
parentName: B-shin.R
position: {x: -0.00000044263592, y: 0.3880767, z: 0.000000107811644}
rotation: {x: -0.53550065, y: -0.0043338453, z: -0.0016630876, w: 0.84452206}
scale: {x: 1, y: 0.9999993, z: 0.99999994}
- name: B-toe.R
parentName: B-foot.R
position: {x: 0.00000074386196, y: 0.17254034, z: 0.00000017937037}
rotation: {x: -0.000012542016, y: 0.96227294, z: -0.27208585, w: -0.00017487761}
scale: {x: 1, y: 1.0000029, z: 0.999997}
armTwist: 0.5
foreArmTwist: 0.5
upperLegTwist: 0.5
legTwist: 0.5
armStretch: 0.05
legStretch: 0.05
feetSpacing: 0
globalScale: 1
rootMotionBoneName:
hasTranslationDoF: 0
hasExtraRoot: 0
skeletonHasParents: 1
lastHumanDescriptionAvatarSource: {fileID: 9000000, guid: 1841c298173cdad4db8df8602c8f1c8d,
type: 3}
autoGenerateAvatarMappingIfUnspecified: 1
animationType: 3
humanoidOversampling: 1
avatarSetup: 2
addHumanoidExtraRootOnlyWhenUsingAvatar: 1
importBlendShapeDeformPercent: 1
remapMaterialsIfMaterialImportModeIsNone: 0
additionalBone: 0
userData:
assetBundleName:
assetBundleVariant:
AssetOrigin:
serializedVersion: 1
productId: 154271
packageName: Human Basic Motions FREE
packageVersion: 2.4.2
assetPath: Assets/Kevin Iglesias/Human Animations/Animations/Female/Movement/Sprint/HumanF@Sprint01_ForwardLeft.fbx
uploadId: 908942

View file

@ -1,973 +0,0 @@
fileFormatVersion: 2
guid: eb3f1eb7170e5f747b4e1f47de1dbe5c
ModelImporter:
serializedVersion: 22200
internalIDToNameTable: []
externalObjects: {}
materials:
materialImportMode: 0
materialName: 0
materialSearch: 1
materialLocation: 1
animations:
legacyGenerateAnimations: 4
bakeSimulation: 0
resampleCurves: 1
optimizeGameObjects: 0
removeConstantScaleCurves: 0
motionNodeName:
animationImportErrors:
animationImportWarnings:
animationRetargetingWarnings:
animationDoRetargetingWarnings: 0
importAnimatedCustomProperties: 0
importConstraints: 0
animationCompression: 0
animationRotationError: 0.5
animationPositionError: 0.5
animationScaleError: 0.5
animationWrapMode: 0
extraExposedTransformPaths: []
extraUserProperties: []
clipAnimations:
- serializedVersion: 16
name: HumanF@Sprint01_ForwardRight
takeName: Untitled
internalID: 3094330708855449807
firstFrame: 0
lastFrame: 16
wrapMode: 0
orientationOffsetY: 0
level: 0
cycleOffset: 0
loop: 0
hasAdditiveReferencePose: 0
loopTime: 1
loopBlend: 0
loopBlendOrientation: 1
loopBlendPositionY: 1
loopBlendPositionXZ: 1
keepOriginalOrientation: 1
keepOriginalPositionY: 1
keepOriginalPositionXZ: 1
heightFromFeet: 0
mirror: 0
bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
curves: []
events: []
transformMask:
- path:
weight: 1
- path: HumanF_BodyMesh
weight: 0
- path: Rig
weight: 1
- path: Rig/B-root
weight: 1
- path: Rig/B-root/B-hips
weight: 1
- path: Rig/B-root/B-hips/B-spine
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck/B-head
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck/B-head/B-jaw
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-handProp.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L/B-indexFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L/B-indexFinger02.L/B-indexFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L/B-middleFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L/B-middleFinger02.L/B-middleFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L/B-pinky02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L/B-pinky02.L/B-pinky03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L/B-ringFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L/B-ringFinger02.L/B-ringFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L/B-thumb02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L/B-thumb02.L/B-thumb03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-handProp.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R/B-indexFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R/B-indexFinger02.R/B-indexFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R/B-middleFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R/B-middleFinger02.R/B-middleFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R/B-pinky02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R/B-pinky02.R/B-pinky03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R/B-ringFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R/B-ringFinger02.R/B-ringFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R/B-thumb02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R/B-thumb02.R/B-thumb03.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L/B-foot.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L/B-foot.L/B-toe.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R/B-foot.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R/B-foot.R/B-toe.R
weight: 1
- path: Rig/B-root/B-spineProxy
weight: 1
maskType: 1
maskSource: {fileID: 31900000, guid: 89527f5525238ee44b3182458d85143a, type: 2}
additiveReferencePoseFrame: 0
isReadable: 0
meshes:
lODScreenPercentages: []
globalScale: 1
meshCompression: 0
addColliders: 0
useSRGBMaterialColor: 1
sortHierarchyByName: 1
importPhysicalCameras: 1
importVisibility: 1
importBlendShapes: 1
importCameras: 1
importLights: 1
nodeNameCollisionStrategy: 1
fileIdsGeneration: 2
swapUVChannels: 0
generateSecondaryUV: 0
useFileUnits: 1
keepQuads: 0
weldVertices: 1
bakeAxisConversion: 0
preserveHierarchy: 1
skinWeightsMode: 0
maxBonesPerVertex: 4
minBoneWeight: 0.001
optimizeBones: 1
meshOptimizationFlags: -1
indexFormat: 0
secondaryUVAngleDistortion: 8
secondaryUVAreaDistortion: 15.000001
secondaryUVHardAngle: 88
secondaryUVMarginMethod: 1
secondaryUVMinLightmapResolution: 40
secondaryUVMinObjectScale: 1
secondaryUVPackMargin: 4
useFileScale: 1
strictVertexDataChecks: 0
tangentSpace:
normalSmoothAngle: 60
normalImportMode: 0
tangentImportMode: 3
normalCalculationMode: 4
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0
blendShapeNormalImportMode: 1
normalSmoothingSource: 0
referencedClips: []
importAnimation: 1
humanDescription:
serializedVersion: 3
human:
- boneName: B-hips
humanName: Hips
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thigh.L
humanName: LeftUpperLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thigh.R
humanName: RightUpperLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shin.L
humanName: LeftLowerLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shin.R
humanName: RightLowerLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-foot.L
humanName: LeftFoot
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-foot.R
humanName: RightFoot
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-spine
humanName: Spine
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-chest
humanName: Chest
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-neck
humanName: Neck
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-head
humanName: Head
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shoulder.L
humanName: LeftShoulder
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shoulder.R
humanName: RightShoulder
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-upperArm.L
humanName: LeftUpperArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-upperArm.R
humanName: RightUpperArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-forearm.L
humanName: LeftLowerArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-forearm.R
humanName: RightLowerArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-hand.L
humanName: LeftHand
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-hand.R
humanName: RightHand
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-toe.L
humanName: LeftToes
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-toe.R
humanName: RightToes
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-jaw
humanName: Jaw
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb01.L
humanName: Left Thumb Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb02.L
humanName: Left Thumb Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb03.L
humanName: Left Thumb Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger01.L
humanName: Left Index Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger02.L
humanName: Left Index Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger03.L
humanName: Left Index Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger01.L
humanName: Left Middle Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger02.L
humanName: Left Middle Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger03.L
humanName: Left Middle Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger01.L
humanName: Left Ring Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger02.L
humanName: Left Ring Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger03.L
humanName: Left Ring Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky01.L
humanName: Left Little Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky02.L
humanName: Left Little Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky03.L
humanName: Left Little Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb01.R
humanName: Right Thumb Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb02.R
humanName: Right Thumb Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb03.R
humanName: Right Thumb Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger01.R
humanName: Right Index Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger02.R
humanName: Right Index Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger03.R
humanName: Right Index Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger01.R
humanName: Right Middle Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger02.R
humanName: Right Middle Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger03.R
humanName: Right Middle Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger01.R
humanName: Right Ring Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger02.R
humanName: Right Ring Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger03.R
humanName: Right Ring Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky01.R
humanName: Right Little Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky02.R
humanName: Right Little Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky03.R
humanName: Right Little Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
skeleton:
- name: Human_DummyModel_F(Clone)
parentName:
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: HumanF_BodyMesh
parentName: Human_DummyModel_F(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Rig
parentName: Human_DummyModel_F(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: B-root
parentName: Rig
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: B-spineProxy
parentName: B-root
position: {x: -0, y: 1.092844, z: 0.029147}
rotation: {x: -0.012905054, y: 0, z: -0, w: 0.99991673}
scale: {x: 1, y: 1.0000001, z: 1.0000001}
- name: B-hips
parentName: B-root
position: {x: -0, y: 0.967712, z: 0.016772}
rotation: {x: 0.04926631, y: 0, z: -0, w: 0.9987857}
scale: {x: 1, y: 1.0000004, z: 1.0000004}
- name: B-spine
parentName: B-hips
position: {x: -0, y: 0.12574437, z: 0.00000011940791}
rotation: {x: -0.062152267, y: 0, z: -0, w: 0.99806666}
scale: {x: 1, y: 0.99999976, z: 0.99999976}
- name: B-chest
parentName: B-spine
position: {x: -0, y: 0.13376056, z: -0.00000077390683}
rotation: {x: -0.02258696, y: 0, z: -0, w: 0.9997449}
scale: {x: 1, y: 0.9999996, z: 0.9999996}
- name: B-shoulder.R
parentName: B-chest
position: {x: -0, y: 0.19125995, z: -0.005656177}
rotation: {x: -0.5165573, y: -0.44464085, z: -0.47738376, w: 0.554588}
scale: {x: 1.0000008, y: 1.0000006, z: 1.0000002}
- name: B-upperArm.R
parentName: B-shoulder.R
position: {x: -0.00000043065853, y: 0.1619337, z: -0.000000866464}
rotation: {x: 0.03406315, y: 0.7090742, z: -0.08345674, w: 0.69934857}
scale: {x: 0.99999976, y: 1, z: 0.99999946}
- name: B-forearm.R
parentName: B-upperArm.R
position: {x: -0.0000005071642, y: 0.23413825, z: 0.0000019611641}
rotation: {x: 0.0013730773, y: -0.00042225965, z: 0.0032032696, w: 0.99999386}
scale: {x: 1.0000001, y: 0.99999964, z: 0.9999996}
- name: B-hand.R
parentName: B-forearm.R
position: {x: -0.000000328232, y: 0.19596381, z: -0.0000008355853}
rotation: {x: 0.013529134, y: 0.7054088, z: 0.032969795, w: 0.70790416}
scale: {x: 0.9999999, y: 1.0000002, z: 1.0000005}
- name: B-handProp.R
parentName: B-hand.R
position: {x: 0.0029605331, y: 0.10533051, z: 0.022608897}
rotation: {x: -0.67608327, y: 0.73659164, z: -0.013668106, w: -0.012545319}
scale: {x: 0.99999964, y: 1.0000005, z: 0.9999996}
- name: B-indexFinger01.R
parentName: B-hand.R
position: {x: -0.036052607, y: 0.13202412, z: -0.0022375023}
rotation: {x: 0.019054495, y: -0.0149580045, z: 0.031315368, w: 0.999216}
scale: {x: 1.0000002, y: 0.99999964, z: 0.9999993}
- name: B-indexFinger02.R
parentName: B-indexFinger01.R
position: {x: 0.00000021708313, y: 0.046758045, z: -0.0000005285747}
rotation: {x: 0.040758472, y: 0.02876925, z: -0.0030862393, w: 0.99875003}
scale: {x: 1, y: 1.0000004, z: 1.0000002}
- name: B-indexFinger03.R
parentName: B-indexFinger02.R
position: {x: 0.000000038075022, y: 0.034652043, z: 0.00000019983679}
rotation: {x: -0.006236443, y: 0.004024028, z: -0.0109188985, w: 0.99991286}
scale: {x: 0.9999999, y: 0.9999999, z: 0.99999964}
- name: B-middleFinger01.R
parentName: B-hand.R
position: {x: -0.00928522, y: 0.1318378, z: -0.0089382}
rotation: {x: -0.004700204, y: -0.0032572027, z: -0.001801642, w: 0.99998206}
scale: {x: 1.0000006, y: 0.9999997, z: 0.99999917}
- name: B-middleFinger02.R
parentName: B-middleFinger01.R
position: {x: -0.0000003849299, y: 0.048716273, z: -0.0000001691299}
rotation: {x: 0.039366316, y: 0.04573892, z: 0.00377753, w: 0.9981703}
scale: {x: 0.9999997, y: 1.0000004, z: 1}
- name: B-middleFinger03.R
parentName: B-middleFinger02.R
position: {x: -0.00000039262213, y: 0.035888083, z: 0.00000029152696}
rotation: {x: 0.0049846717, y: -0.02122791, z: -0.0063242065, w: 0.99974227}
scale: {x: 0.99999964, y: 0.99999994, z: 1.0000002}
- name: B-ringFinger01.R
parentName: B-hand.R
position: {x: 0.016020812, y: 0.1283572, z: -0.005707851}
rotation: {x: -0.0071167736, y: 0.0017728558, z: -0.036400504, w: 0.9993104}
scale: {x: 1.0000005, y: 0.9999992, z: 0.9999996}
- name: B-ringFinger02.R
parentName: B-ringFinger01.R
position: {x: 0.00000047158898, y: 0.045192316, z: 0.00000021597218}
rotation: {x: 0.037958622, y: -0.0021153935, z: 0.012520862, w: 0.9991986}
scale: {x: 0.99999946, y: 1.0000005, z: 0.9999997}
- name: B-ringFinger03.R
parentName: B-ringFinger02.R
position: {x: -0.0000004720245, y: 0.034694634, z: 0.00000008820079}
rotation: {x: 0.02091165, y: -0.04065229, z: -0.015794862, w: 0.99882966}
scale: {x: 1.0000002, y: 0.99999976, z: 0.9999997}
- name: B-pinky01.R
parentName: B-hand.R
position: {x: 0.041580904, y: 0.119742304, z: -0.0024299922}
rotation: {x: -0.011731888, y: -0.016481936, z: -0.04421447, w: 0.9988172}
scale: {x: 1.0000002, y: 0.9999994, z: 0.99999917}
- name: B-pinky02.R
parentName: B-pinky01.R
position: {x: 0.0000007804244, y: 0.03832724, z: 0.00000044214514}
rotation: {x: 0.039002027, y: 0.011177708, z: 0.009234122, w: 0.99913394}
scale: {x: 1.0000002, y: 1.0000006, z: 1.0000002}
- name: B-pinky03.R
parentName: B-pinky02.R
position: {x: -0.000000269953, y: 0.03220071, z: -0.0000005856981}
rotation: {x: 0.022101695, y: -0.02182341, z: 0.009210792, w: 0.99947506}
scale: {x: 1.0000005, y: 0.99999994, z: 1.0000007}
- name: B-thumb01.R
parentName: B-hand.R
position: {x: -0.039809253, y: 0.048496302, z: 0.0130518135}
rotation: {x: -0.22471787, y: 0.63045275, z: 0.29821387, w: 0.6805144}
scale: {x: 0.99999946, y: 1.0000002, z: 1.0000005}
- name: B-thumb02.R
parentName: B-thumb01.R
position: {x: 0.00000020260806, y: 0.047178134, z: 0.000000160123}
rotation: {x: 0.038173996, y: 0.013301423, z: -0.008042345, w: 0.9991502}
scale: {x: 1.0000007, y: 0.9999997, z: 0.9999999}
- name: B-thumb03.R
parentName: B-thumb02.R
position: {x: -0.00000069069114, y: 0.03520854, z: 0.00000004046409}
rotation: {x: -0.060352694, y: 0.014396386, z: 0.0074255248, w: 0.9980457}
scale: {x: 0.9999995, y: 1.0000004, z: 1}
- name: B-neck
parentName: B-chest
position: {x: -0, y: 0.27081212, z: 0.0000007058524}
rotation: {x: 0.105346866, y: 0, z: -0, w: 0.99443555}
scale: {x: 1, y: 0.9999997, z: 1.0000007}
- name: B-head
parentName: B-neck
position: {x: -0, y: 0.07409704, z: 0.00000025054106}
rotation: {x: -0.069990024, y: 0, z: -0, w: 0.9975477}
scale: {x: 1, y: 1.0000006, z: 0.99999964}
- name: B-jaw
parentName: B-head
position: {x: -0, y: 0, z: 0}
rotation: {x: 0.70698464, y: 0.000007072379, z: -0.00000706994, w: 0.7072289}
scale: {x: 1, y: 1, z: 1}
- name: B-shoulder.L
parentName: B-chest
position: {x: -0, y: 0.19125995, z: -0.005656177}
rotation: {x: -0.5165571, y: 0.44464028, z: 0.47738382, w: 0.5545886}
scale: {x: 0.9999998, y: 0.9999995, z: 1.0000002}
- name: B-upperArm.L
parentName: B-shoulder.L
position: {x: 0.00000040656337, y: 0.16193385, z: -0.0000008664629}
rotation: {x: 0.033948872, y: -0.70908755, z: 0.08334149, w: 0.69935447}
scale: {x: 0.9999998, y: 1.0000002, z: 0.9999999}
- name: B-forearm.L
parentName: B-upperArm.L
position: {x: 0.000000097359035, y: 0.2341381, z: 0.00000030291466}
rotation: {x: 0.0017385628, y: 0.0004205673, z: -0.0032047313, w: 0.99999326}
scale: {x: 0.99999994, y: 1.0000004, z: 1.0000001}
- name: B-hand.L
parentName: B-forearm.L
position: {x: 0.00000052406216, y: 0.1959644, z: -0.0000011816531}
rotation: {x: 0.013386631, y: -0.70541465, z: -0.032826252, w: 0.7079078}
scale: {x: 0.99999994, y: 0.9999992, z: 0.9999996}
- name: B-handProp.L
parentName: B-hand.L
position: {x: -0.0029615294, y: 0.10533054, z: 0.02260892}
rotation: {x: 0.67608327, y: 0.73659164, z: -0.013668119, w: 0.012545332}
scale: {x: 1.0000006, y: 0.99999946, z: 1.0000006}
- name: B-indexFinger01.L
parentName: B-hand.L
position: {x: 0.03605161, y: 0.13202417, z: -0.0022375062}
rotation: {x: 0.019054513, y: 0.014957919, z: -0.03131587, w: 0.99921596}
scale: {x: 1.0000004, y: 0.9999998, z: 1.0000002}
- name: B-indexFinger02.L
parentName: B-indexFinger01.L
position: {x: 0.00000072554116, y: 0.04675823, z: -0.0000005109258}
rotation: {x: 0.04075494, y: -0.02876944, z: 0.0030826945, w: 0.9987502}
scale: {x: 1.0000001, y: 1.0000002, z: 1.0000002}
- name: B-indexFinger03.L
parentName: B-indexFinger02.L
position: {x: -0.00000009920999, y: 0.034652077, z: 0.00000023013986}
rotation: {x: -0.0062364372, y: -0.004023549, z: 0.010918792, w: 0.99991286}
scale: {x: 0.9999998, y: 1.0000008, z: 0.9999995}
- name: B-middleFinger01.L
parentName: B-hand.L
position: {x: 0.00928522, y: 0.13183793, z: -0.008938214}
rotation: {x: -0.004700207, y: 0.0032570793, z: 0.0018007505, w: 0.99998206}
scale: {x: 1.0000007, y: 0.9999999, z: 1.0000001}
- name: B-middleFinger02.L
parentName: B-middleFinger01.L
position: {x: 0.00000028786184, y: 0.048716314, z: -0.00000017087451}
rotation: {x: 0.039368037, y: -0.045739666, z: -0.0037847473, w: 0.9981702}
scale: {x: 0.99999976, y: 1.000001, z: 1.0000006}
- name: B-middleFinger03.L
parentName: B-middleFinger02.L
position: {x: -0.00000066842983, y: 0.035888, z: 0.00000028642995}
rotation: {x: 0.0049827034, y: 0.021227859, z: 0.0063241003, w: 0.99974227}
scale: {x: 0.9999996, y: 0.99999905, z: 0.99999934}
- name: B-ringFinger01.L
parentName: B-hand.L
position: {x: -0.016021809, y: 0.12835726, z: -0.005707858}
rotation: {x: -0.007116776, y: -0.0017729683, z: 0.036399588, w: 0.99931043}
scale: {x: 1.0000005, y: 1.0000002, z: 1.0000006}
- name: B-ringFinger02.L
parentName: B-ringFinger01.L
position: {x: 0.00000043795694, y: 0.04519233, z: 0.00000021050154}
rotation: {x: 0.037963506, y: 0.0021157071, z: -0.01252746, w: 0.9991984}
scale: {x: 0.9999995, y: 0.99999964, z: 0.9999996}
- name: B-ringFinger03.L
parentName: B-ringFinger02.L
position: {x: 0.00000034561023, y: 0.03469565, z: -0.00000007648653}
rotation: {x: 0.020911071, y: 0.04065225, z: 0.015794758, w: 0.99882966}
scale: {x: 1.0000001, y: 1.0000005, z: 0.9999997}
- name: B-pinky01.L
parentName: B-hand.L
position: {x: -0.041581903, y: 0.119742356, z: -0.0024299957}
rotation: {x: -0.01172906, y: 0.01648238, z: 0.0442254, w: 0.9988167}
scale: {x: 1.0000002, y: 1.0000004, z: 1.0000002}
- name: B-pinky02.L
parentName: B-pinky01.L
position: {x: 0.00000014151807, y: 0.03832722, z: 0.00000047056287}
rotation: {x: 0.039005004, y: -0.011177422, z: -0.009239738, w: 0.99913377}
scale: {x: 1.0000002, y: 0.99999946, z: 1.0000001}
- name: B-pinky03.L
parentName: B-pinky02.L
position: {x: 0.000000233103, y: 0.032200746, z: -0.00000055902217}
rotation: {x: 0.022101717, y: 0.02182328, z: -0.009211465, w: 0.99947506}
scale: {x: 0.9999995, y: 1, z: 0.99999964}
- name: B-thumb01.L
parentName: B-hand.L
position: {x: 0.03980834, y: 0.048495278, z: 0.013051865}
rotation: {x: -0.2247114, y: -0.6304557, z: -0.2982149, w: 0.6805132}
scale: {x: 1.0000005, y: 1, z: 1.0000005}
- name: B-thumb02.L
parentName: B-thumb01.L
position: {x: -0.0000007063521, y: 0.047179468, z: -0.00000013365789}
rotation: {x: 0.038171936, y: -0.013301728, z: 0.008042519, w: 0.9991503}
scale: {x: 1.0000004, y: 1, z: 0.9999994}
- name: B-thumb03.L
parentName: B-thumb02.L
position: {x: 0.0000007190916, y: 0.035208564, z: 0.00000017922088}
rotation: {x: -0.06035389, y: -0.014396597, z: -0.007425322, w: 0.9980456}
scale: {x: 0.9999992, y: 0.99999994, z: 1.0000001}
- name: B-thigh.L
parentName: B-hips
position: {x: -0.096950985, y: -0.05446949, z: 0.0020414153}
rotation: {x: 0.9977441, y: 0.011110197, z: -0.0039620763, w: 0.066088475}
scale: {x: 1.0000002, y: 0.9999997, z: 1.000001}
- name: B-shin.L
parentName: B-thigh.L
position: {x: 0.00000018468991, y: 0.41111633, z: 0.0000005281011}
rotation: {x: 0.067057244, y: -0.00057845906, z: 0.011617889, w: 0.9976813}
scale: {x: 0.9999997, y: 1.0000002, z: 0.99999964}
- name: B-foot.L
parentName: B-shin.L
position: {x: -0.00000017405802, y: 0.3880767, z: -0.00000019306846}
rotation: {x: -0.5354999, y: 0.004330197, z: 0.0016612022, w: 0.84452266}
scale: {x: 1.0000001, y: 0.9999997, z: 0.99999976}
- name: B-toe.L
parentName: B-foot.L
position: {x: -0.00000027025197, y: 0.17254004, z: -0.000000117418054}
rotation: {x: 0.000012936387, y: 0.9622731, z: -0.27208534, w: 0.00017343421}
scale: {x: 1, y: 1.0000018, z: 0.999999}
- name: B-thigh.R
parentName: B-hips
position: {x: 0.096950985, y: -0.05446959, z: 0.0020404202}
rotation: {x: 0.9977441, y: -0.011109428, z: 0.003967029, w: 0.066088304}
scale: {x: 1.0000004, y: 0.99999976, z: 1.000008}
- name: B-shin.R
parentName: B-thigh.R
position: {x: 0.0000005496826, y: 0.41111633, z: -0.00000065481464}
rotation: {x: 0.06705632, y: 0.0005783735, z: -0.011616509, w: 0.99768144}
scale: {x: 0.9999997, y: 1.0000002, z: 1.0000007}
- name: B-foot.R
parentName: B-shin.R
position: {x: -0.00000044263592, y: 0.3880767, z: 0.000000107811644}
rotation: {x: -0.53550065, y: -0.0043338453, z: -0.0016630876, w: 0.84452206}
scale: {x: 1, y: 0.9999993, z: 0.99999994}
- name: B-toe.R
parentName: B-foot.R
position: {x: 0.00000074386196, y: 0.17254034, z: 0.00000017937037}
rotation: {x: -0.000012542016, y: 0.96227294, z: -0.27208585, w: -0.00017487761}
scale: {x: 1, y: 1.0000029, z: 0.999997}
armTwist: 0.5
foreArmTwist: 0.5
upperLegTwist: 0.5
legTwist: 0.5
armStretch: 0.05
legStretch: 0.05
feetSpacing: 0
globalScale: 1
rootMotionBoneName:
hasTranslationDoF: 0
hasExtraRoot: 0
skeletonHasParents: 1
lastHumanDescriptionAvatarSource: {fileID: 9000000, guid: 1841c298173cdad4db8df8602c8f1c8d,
type: 3}
autoGenerateAvatarMappingIfUnspecified: 1
animationType: 3
humanoidOversampling: 1
avatarSetup: 2
addHumanoidExtraRootOnlyWhenUsingAvatar: 1
importBlendShapeDeformPercent: 1
remapMaterialsIfMaterialImportModeIsNone: 0
additionalBone: 0
userData:
assetBundleName:
assetBundleVariant:
AssetOrigin:
serializedVersion: 1
productId: 154271
packageName: Human Basic Motions FREE
packageVersion: 2.4.2
assetPath: Assets/Kevin Iglesias/Human Animations/Animations/Female/Movement/Sprint/HumanF@Sprint01_ForwardRight.fbx
uploadId: 908942

View file

@ -1,973 +0,0 @@
fileFormatVersion: 2
guid: c0a52d9cd6720ec40813f0232613e371
ModelImporter:
serializedVersion: 22200
internalIDToNameTable: []
externalObjects: {}
materials:
materialImportMode: 0
materialName: 0
materialSearch: 1
materialLocation: 1
animations:
legacyGenerateAnimations: 4
bakeSimulation: 0
resampleCurves: 1
optimizeGameObjects: 0
removeConstantScaleCurves: 0
motionNodeName:
animationImportErrors:
animationImportWarnings:
animationRetargetingWarnings:
animationDoRetargetingWarnings: 0
importAnimatedCustomProperties: 0
importConstraints: 0
animationCompression: 0
animationRotationError: 0.5
animationPositionError: 0.5
animationScaleError: 0.5
animationWrapMode: 0
extraExposedTransformPaths: []
extraUserProperties: []
clipAnimations:
- serializedVersion: 16
name: HumanF@Sprint01_Left
takeName: Untitled
internalID: 3094330708855449807
firstFrame: 0
lastFrame: 16
wrapMode: 0
orientationOffsetY: 0
level: 0
cycleOffset: 0
loop: 0
hasAdditiveReferencePose: 0
loopTime: 1
loopBlend: 0
loopBlendOrientation: 1
loopBlendPositionY: 1
loopBlendPositionXZ: 1
keepOriginalOrientation: 1
keepOriginalPositionY: 1
keepOriginalPositionXZ: 1
heightFromFeet: 0
mirror: 0
bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
curves: []
events: []
transformMask:
- path:
weight: 1
- path: HumanF_BodyMesh
weight: 0
- path: Rig
weight: 1
- path: Rig/B-root
weight: 1
- path: Rig/B-root/B-hips
weight: 1
- path: Rig/B-root/B-hips/B-spine
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck/B-head
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck/B-head/B-jaw
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-handProp.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L/B-indexFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L/B-indexFinger02.L/B-indexFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L/B-middleFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L/B-middleFinger02.L/B-middleFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L/B-pinky02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L/B-pinky02.L/B-pinky03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L/B-ringFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L/B-ringFinger02.L/B-ringFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L/B-thumb02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L/B-thumb02.L/B-thumb03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-handProp.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R/B-indexFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R/B-indexFinger02.R/B-indexFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R/B-middleFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R/B-middleFinger02.R/B-middleFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R/B-pinky02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R/B-pinky02.R/B-pinky03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R/B-ringFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R/B-ringFinger02.R/B-ringFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R/B-thumb02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R/B-thumb02.R/B-thumb03.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L/B-foot.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L/B-foot.L/B-toe.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R/B-foot.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R/B-foot.R/B-toe.R
weight: 1
- path: Rig/B-root/B-spineProxy
weight: 1
maskType: 1
maskSource: {fileID: 31900000, guid: 89527f5525238ee44b3182458d85143a, type: 2}
additiveReferencePoseFrame: 0
isReadable: 0
meshes:
lODScreenPercentages: []
globalScale: 1
meshCompression: 0
addColliders: 0
useSRGBMaterialColor: 1
sortHierarchyByName: 1
importPhysicalCameras: 1
importVisibility: 1
importBlendShapes: 1
importCameras: 1
importLights: 1
nodeNameCollisionStrategy: 1
fileIdsGeneration: 2
swapUVChannels: 0
generateSecondaryUV: 0
useFileUnits: 1
keepQuads: 0
weldVertices: 1
bakeAxisConversion: 0
preserveHierarchy: 1
skinWeightsMode: 0
maxBonesPerVertex: 4
minBoneWeight: 0.001
optimizeBones: 1
meshOptimizationFlags: -1
indexFormat: 0
secondaryUVAngleDistortion: 8
secondaryUVAreaDistortion: 15.000001
secondaryUVHardAngle: 88
secondaryUVMarginMethod: 1
secondaryUVMinLightmapResolution: 40
secondaryUVMinObjectScale: 1
secondaryUVPackMargin: 4
useFileScale: 1
strictVertexDataChecks: 0
tangentSpace:
normalSmoothAngle: 60
normalImportMode: 0
tangentImportMode: 3
normalCalculationMode: 4
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0
blendShapeNormalImportMode: 1
normalSmoothingSource: 0
referencedClips: []
importAnimation: 1
humanDescription:
serializedVersion: 3
human:
- boneName: B-hips
humanName: Hips
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thigh.L
humanName: LeftUpperLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thigh.R
humanName: RightUpperLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shin.L
humanName: LeftLowerLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shin.R
humanName: RightLowerLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-foot.L
humanName: LeftFoot
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-foot.R
humanName: RightFoot
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-spine
humanName: Spine
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-chest
humanName: Chest
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-neck
humanName: Neck
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-head
humanName: Head
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shoulder.L
humanName: LeftShoulder
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shoulder.R
humanName: RightShoulder
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-upperArm.L
humanName: LeftUpperArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-upperArm.R
humanName: RightUpperArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-forearm.L
humanName: LeftLowerArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-forearm.R
humanName: RightLowerArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-hand.L
humanName: LeftHand
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-hand.R
humanName: RightHand
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-toe.L
humanName: LeftToes
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-toe.R
humanName: RightToes
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-jaw
humanName: Jaw
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb01.L
humanName: Left Thumb Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb02.L
humanName: Left Thumb Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb03.L
humanName: Left Thumb Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger01.L
humanName: Left Index Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger02.L
humanName: Left Index Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger03.L
humanName: Left Index Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger01.L
humanName: Left Middle Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger02.L
humanName: Left Middle Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger03.L
humanName: Left Middle Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger01.L
humanName: Left Ring Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger02.L
humanName: Left Ring Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger03.L
humanName: Left Ring Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky01.L
humanName: Left Little Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky02.L
humanName: Left Little Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky03.L
humanName: Left Little Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb01.R
humanName: Right Thumb Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb02.R
humanName: Right Thumb Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb03.R
humanName: Right Thumb Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger01.R
humanName: Right Index Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger02.R
humanName: Right Index Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger03.R
humanName: Right Index Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger01.R
humanName: Right Middle Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger02.R
humanName: Right Middle Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger03.R
humanName: Right Middle Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger01.R
humanName: Right Ring Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger02.R
humanName: Right Ring Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger03.R
humanName: Right Ring Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky01.R
humanName: Right Little Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky02.R
humanName: Right Little Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky03.R
humanName: Right Little Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
skeleton:
- name: Human_DummyModel_F(Clone)
parentName:
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: HumanF_BodyMesh
parentName: Human_DummyModel_F(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Rig
parentName: Human_DummyModel_F(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: B-root
parentName: Rig
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: B-spineProxy
parentName: B-root
position: {x: -0, y: 1.092844, z: 0.029147}
rotation: {x: -0.012905054, y: 0, z: -0, w: 0.99991673}
scale: {x: 1, y: 1.0000001, z: 1.0000001}
- name: B-hips
parentName: B-root
position: {x: -0, y: 0.967712, z: 0.016772}
rotation: {x: 0.04926631, y: 0, z: -0, w: 0.9987857}
scale: {x: 1, y: 1.0000004, z: 1.0000004}
- name: B-spine
parentName: B-hips
position: {x: -0, y: 0.12574437, z: 0.00000011940791}
rotation: {x: -0.062152267, y: 0, z: -0, w: 0.99806666}
scale: {x: 1, y: 0.99999976, z: 0.99999976}
- name: B-chest
parentName: B-spine
position: {x: -0, y: 0.13376056, z: -0.00000077390683}
rotation: {x: -0.02258696, y: 0, z: -0, w: 0.9997449}
scale: {x: 1, y: 0.9999996, z: 0.9999996}
- name: B-shoulder.R
parentName: B-chest
position: {x: -0, y: 0.19125995, z: -0.005656177}
rotation: {x: -0.5165573, y: -0.44464085, z: -0.47738376, w: 0.554588}
scale: {x: 1.0000008, y: 1.0000006, z: 1.0000002}
- name: B-upperArm.R
parentName: B-shoulder.R
position: {x: -0.00000043065853, y: 0.1619337, z: -0.000000866464}
rotation: {x: 0.03406315, y: 0.7090742, z: -0.08345674, w: 0.69934857}
scale: {x: 0.99999976, y: 1, z: 0.99999946}
- name: B-forearm.R
parentName: B-upperArm.R
position: {x: -0.0000005071642, y: 0.23413825, z: 0.0000019611641}
rotation: {x: 0.0013730773, y: -0.00042225965, z: 0.0032032696, w: 0.99999386}
scale: {x: 1.0000001, y: 0.99999964, z: 0.9999996}
- name: B-hand.R
parentName: B-forearm.R
position: {x: -0.000000328232, y: 0.19596381, z: -0.0000008355853}
rotation: {x: 0.013529134, y: 0.7054088, z: 0.032969795, w: 0.70790416}
scale: {x: 0.9999999, y: 1.0000002, z: 1.0000005}
- name: B-handProp.R
parentName: B-hand.R
position: {x: 0.0029605331, y: 0.10533051, z: 0.022608897}
rotation: {x: -0.67608327, y: 0.73659164, z: -0.013668106, w: -0.012545319}
scale: {x: 0.99999964, y: 1.0000005, z: 0.9999996}
- name: B-indexFinger01.R
parentName: B-hand.R
position: {x: -0.036052607, y: 0.13202412, z: -0.0022375023}
rotation: {x: 0.019054495, y: -0.0149580045, z: 0.031315368, w: 0.999216}
scale: {x: 1.0000002, y: 0.99999964, z: 0.9999993}
- name: B-indexFinger02.R
parentName: B-indexFinger01.R
position: {x: 0.00000021708313, y: 0.046758045, z: -0.0000005285747}
rotation: {x: 0.040758472, y: 0.02876925, z: -0.0030862393, w: 0.99875003}
scale: {x: 1, y: 1.0000004, z: 1.0000002}
- name: B-indexFinger03.R
parentName: B-indexFinger02.R
position: {x: 0.000000038075022, y: 0.034652043, z: 0.00000019983679}
rotation: {x: -0.006236443, y: 0.004024028, z: -0.0109188985, w: 0.99991286}
scale: {x: 0.9999999, y: 0.9999999, z: 0.99999964}
- name: B-middleFinger01.R
parentName: B-hand.R
position: {x: -0.00928522, y: 0.1318378, z: -0.0089382}
rotation: {x: -0.004700204, y: -0.0032572027, z: -0.001801642, w: 0.99998206}
scale: {x: 1.0000006, y: 0.9999997, z: 0.99999917}
- name: B-middleFinger02.R
parentName: B-middleFinger01.R
position: {x: -0.0000003849299, y: 0.048716273, z: -0.0000001691299}
rotation: {x: 0.039366316, y: 0.04573892, z: 0.00377753, w: 0.9981703}
scale: {x: 0.9999997, y: 1.0000004, z: 1}
- name: B-middleFinger03.R
parentName: B-middleFinger02.R
position: {x: -0.00000039262213, y: 0.035888083, z: 0.00000029152696}
rotation: {x: 0.0049846717, y: -0.02122791, z: -0.0063242065, w: 0.99974227}
scale: {x: 0.99999964, y: 0.99999994, z: 1.0000002}
- name: B-ringFinger01.R
parentName: B-hand.R
position: {x: 0.016020812, y: 0.1283572, z: -0.005707851}
rotation: {x: -0.0071167736, y: 0.0017728558, z: -0.036400504, w: 0.9993104}
scale: {x: 1.0000005, y: 0.9999992, z: 0.9999996}
- name: B-ringFinger02.R
parentName: B-ringFinger01.R
position: {x: 0.00000047158898, y: 0.045192316, z: 0.00000021597218}
rotation: {x: 0.037958622, y: -0.0021153935, z: 0.012520862, w: 0.9991986}
scale: {x: 0.99999946, y: 1.0000005, z: 0.9999997}
- name: B-ringFinger03.R
parentName: B-ringFinger02.R
position: {x: -0.0000004720245, y: 0.034694634, z: 0.00000008820079}
rotation: {x: 0.02091165, y: -0.04065229, z: -0.015794862, w: 0.99882966}
scale: {x: 1.0000002, y: 0.99999976, z: 0.9999997}
- name: B-pinky01.R
parentName: B-hand.R
position: {x: 0.041580904, y: 0.119742304, z: -0.0024299922}
rotation: {x: -0.011731888, y: -0.016481936, z: -0.04421447, w: 0.9988172}
scale: {x: 1.0000002, y: 0.9999994, z: 0.99999917}
- name: B-pinky02.R
parentName: B-pinky01.R
position: {x: 0.0000007804244, y: 0.03832724, z: 0.00000044214514}
rotation: {x: 0.039002027, y: 0.011177708, z: 0.009234122, w: 0.99913394}
scale: {x: 1.0000002, y: 1.0000006, z: 1.0000002}
- name: B-pinky03.R
parentName: B-pinky02.R
position: {x: -0.000000269953, y: 0.03220071, z: -0.0000005856981}
rotation: {x: 0.022101695, y: -0.02182341, z: 0.009210792, w: 0.99947506}
scale: {x: 1.0000005, y: 0.99999994, z: 1.0000007}
- name: B-thumb01.R
parentName: B-hand.R
position: {x: -0.039809253, y: 0.048496302, z: 0.0130518135}
rotation: {x: -0.22471787, y: 0.63045275, z: 0.29821387, w: 0.6805144}
scale: {x: 0.99999946, y: 1.0000002, z: 1.0000005}
- name: B-thumb02.R
parentName: B-thumb01.R
position: {x: 0.00000020260806, y: 0.047178134, z: 0.000000160123}
rotation: {x: 0.038173996, y: 0.013301423, z: -0.008042345, w: 0.9991502}
scale: {x: 1.0000007, y: 0.9999997, z: 0.9999999}
- name: B-thumb03.R
parentName: B-thumb02.R
position: {x: -0.00000069069114, y: 0.03520854, z: 0.00000004046409}
rotation: {x: -0.060352694, y: 0.014396386, z: 0.0074255248, w: 0.9980457}
scale: {x: 0.9999995, y: 1.0000004, z: 1}
- name: B-neck
parentName: B-chest
position: {x: -0, y: 0.27081212, z: 0.0000007058524}
rotation: {x: 0.105346866, y: 0, z: -0, w: 0.99443555}
scale: {x: 1, y: 0.9999997, z: 1.0000007}
- name: B-head
parentName: B-neck
position: {x: -0, y: 0.07409704, z: 0.00000025054106}
rotation: {x: -0.069990024, y: 0, z: -0, w: 0.9975477}
scale: {x: 1, y: 1.0000006, z: 0.99999964}
- name: B-jaw
parentName: B-head
position: {x: -0, y: 0, z: 0}
rotation: {x: 0.70698464, y: 0.000007072379, z: -0.00000706994, w: 0.7072289}
scale: {x: 1, y: 1, z: 1}
- name: B-shoulder.L
parentName: B-chest
position: {x: -0, y: 0.19125995, z: -0.005656177}
rotation: {x: -0.5165571, y: 0.44464028, z: 0.47738382, w: 0.5545886}
scale: {x: 0.9999998, y: 0.9999995, z: 1.0000002}
- name: B-upperArm.L
parentName: B-shoulder.L
position: {x: 0.00000040656337, y: 0.16193385, z: -0.0000008664629}
rotation: {x: 0.033948872, y: -0.70908755, z: 0.08334149, w: 0.69935447}
scale: {x: 0.9999998, y: 1.0000002, z: 0.9999999}
- name: B-forearm.L
parentName: B-upperArm.L
position: {x: 0.000000097359035, y: 0.2341381, z: 0.00000030291466}
rotation: {x: 0.0017385628, y: 0.0004205673, z: -0.0032047313, w: 0.99999326}
scale: {x: 0.99999994, y: 1.0000004, z: 1.0000001}
- name: B-hand.L
parentName: B-forearm.L
position: {x: 0.00000052406216, y: 0.1959644, z: -0.0000011816531}
rotation: {x: 0.013386631, y: -0.70541465, z: -0.032826252, w: 0.7079078}
scale: {x: 0.99999994, y: 0.9999992, z: 0.9999996}
- name: B-handProp.L
parentName: B-hand.L
position: {x: -0.0029615294, y: 0.10533054, z: 0.02260892}
rotation: {x: 0.67608327, y: 0.73659164, z: -0.013668119, w: 0.012545332}
scale: {x: 1.0000006, y: 0.99999946, z: 1.0000006}
- name: B-indexFinger01.L
parentName: B-hand.L
position: {x: 0.03605161, y: 0.13202417, z: -0.0022375062}
rotation: {x: 0.019054513, y: 0.014957919, z: -0.03131587, w: 0.99921596}
scale: {x: 1.0000004, y: 0.9999998, z: 1.0000002}
- name: B-indexFinger02.L
parentName: B-indexFinger01.L
position: {x: 0.00000072554116, y: 0.04675823, z: -0.0000005109258}
rotation: {x: 0.04075494, y: -0.02876944, z: 0.0030826945, w: 0.9987502}
scale: {x: 1.0000001, y: 1.0000002, z: 1.0000002}
- name: B-indexFinger03.L
parentName: B-indexFinger02.L
position: {x: -0.00000009920999, y: 0.034652077, z: 0.00000023013986}
rotation: {x: -0.0062364372, y: -0.004023549, z: 0.010918792, w: 0.99991286}
scale: {x: 0.9999998, y: 1.0000008, z: 0.9999995}
- name: B-middleFinger01.L
parentName: B-hand.L
position: {x: 0.00928522, y: 0.13183793, z: -0.008938214}
rotation: {x: -0.004700207, y: 0.0032570793, z: 0.0018007505, w: 0.99998206}
scale: {x: 1.0000007, y: 0.9999999, z: 1.0000001}
- name: B-middleFinger02.L
parentName: B-middleFinger01.L
position: {x: 0.00000028786184, y: 0.048716314, z: -0.00000017087451}
rotation: {x: 0.039368037, y: -0.045739666, z: -0.0037847473, w: 0.9981702}
scale: {x: 0.99999976, y: 1.000001, z: 1.0000006}
- name: B-middleFinger03.L
parentName: B-middleFinger02.L
position: {x: -0.00000066842983, y: 0.035888, z: 0.00000028642995}
rotation: {x: 0.0049827034, y: 0.021227859, z: 0.0063241003, w: 0.99974227}
scale: {x: 0.9999996, y: 0.99999905, z: 0.99999934}
- name: B-ringFinger01.L
parentName: B-hand.L
position: {x: -0.016021809, y: 0.12835726, z: -0.005707858}
rotation: {x: -0.007116776, y: -0.0017729683, z: 0.036399588, w: 0.99931043}
scale: {x: 1.0000005, y: 1.0000002, z: 1.0000006}
- name: B-ringFinger02.L
parentName: B-ringFinger01.L
position: {x: 0.00000043795694, y: 0.04519233, z: 0.00000021050154}
rotation: {x: 0.037963506, y: 0.0021157071, z: -0.01252746, w: 0.9991984}
scale: {x: 0.9999995, y: 0.99999964, z: 0.9999996}
- name: B-ringFinger03.L
parentName: B-ringFinger02.L
position: {x: 0.00000034561023, y: 0.03469565, z: -0.00000007648653}
rotation: {x: 0.020911071, y: 0.04065225, z: 0.015794758, w: 0.99882966}
scale: {x: 1.0000001, y: 1.0000005, z: 0.9999997}
- name: B-pinky01.L
parentName: B-hand.L
position: {x: -0.041581903, y: 0.119742356, z: -0.0024299957}
rotation: {x: -0.01172906, y: 0.01648238, z: 0.0442254, w: 0.9988167}
scale: {x: 1.0000002, y: 1.0000004, z: 1.0000002}
- name: B-pinky02.L
parentName: B-pinky01.L
position: {x: 0.00000014151807, y: 0.03832722, z: 0.00000047056287}
rotation: {x: 0.039005004, y: -0.011177422, z: -0.009239738, w: 0.99913377}
scale: {x: 1.0000002, y: 0.99999946, z: 1.0000001}
- name: B-pinky03.L
parentName: B-pinky02.L
position: {x: 0.000000233103, y: 0.032200746, z: -0.00000055902217}
rotation: {x: 0.022101717, y: 0.02182328, z: -0.009211465, w: 0.99947506}
scale: {x: 0.9999995, y: 1, z: 0.99999964}
- name: B-thumb01.L
parentName: B-hand.L
position: {x: 0.03980834, y: 0.048495278, z: 0.013051865}
rotation: {x: -0.2247114, y: -0.6304557, z: -0.2982149, w: 0.6805132}
scale: {x: 1.0000005, y: 1, z: 1.0000005}
- name: B-thumb02.L
parentName: B-thumb01.L
position: {x: -0.0000007063521, y: 0.047179468, z: -0.00000013365789}
rotation: {x: 0.038171936, y: -0.013301728, z: 0.008042519, w: 0.9991503}
scale: {x: 1.0000004, y: 1, z: 0.9999994}
- name: B-thumb03.L
parentName: B-thumb02.L
position: {x: 0.0000007190916, y: 0.035208564, z: 0.00000017922088}
rotation: {x: -0.06035389, y: -0.014396597, z: -0.007425322, w: 0.9980456}
scale: {x: 0.9999992, y: 0.99999994, z: 1.0000001}
- name: B-thigh.L
parentName: B-hips
position: {x: -0.096950985, y: -0.05446949, z: 0.0020414153}
rotation: {x: 0.9977441, y: 0.011110197, z: -0.0039620763, w: 0.066088475}
scale: {x: 1.0000002, y: 0.9999997, z: 1.000001}
- name: B-shin.L
parentName: B-thigh.L
position: {x: 0.00000018468991, y: 0.41111633, z: 0.0000005281011}
rotation: {x: 0.067057244, y: -0.00057845906, z: 0.011617889, w: 0.9976813}
scale: {x: 0.9999997, y: 1.0000002, z: 0.99999964}
- name: B-foot.L
parentName: B-shin.L
position: {x: -0.00000017405802, y: 0.3880767, z: -0.00000019306846}
rotation: {x: -0.5354999, y: 0.004330197, z: 0.0016612022, w: 0.84452266}
scale: {x: 1.0000001, y: 0.9999997, z: 0.99999976}
- name: B-toe.L
parentName: B-foot.L
position: {x: -0.00000027025197, y: 0.17254004, z: -0.000000117418054}
rotation: {x: 0.000012936387, y: 0.9622731, z: -0.27208534, w: 0.00017343421}
scale: {x: 1, y: 1.0000018, z: 0.999999}
- name: B-thigh.R
parentName: B-hips
position: {x: 0.096950985, y: -0.05446959, z: 0.0020404202}
rotation: {x: 0.9977441, y: -0.011109428, z: 0.003967029, w: 0.066088304}
scale: {x: 1.0000004, y: 0.99999976, z: 1.000008}
- name: B-shin.R
parentName: B-thigh.R
position: {x: 0.0000005496826, y: 0.41111633, z: -0.00000065481464}
rotation: {x: 0.06705632, y: 0.0005783735, z: -0.011616509, w: 0.99768144}
scale: {x: 0.9999997, y: 1.0000002, z: 1.0000007}
- name: B-foot.R
parentName: B-shin.R
position: {x: -0.00000044263592, y: 0.3880767, z: 0.000000107811644}
rotation: {x: -0.53550065, y: -0.0043338453, z: -0.0016630876, w: 0.84452206}
scale: {x: 1, y: 0.9999993, z: 0.99999994}
- name: B-toe.R
parentName: B-foot.R
position: {x: 0.00000074386196, y: 0.17254034, z: 0.00000017937037}
rotation: {x: -0.000012542016, y: 0.96227294, z: -0.27208585, w: -0.00017487761}
scale: {x: 1, y: 1.0000029, z: 0.999997}
armTwist: 0.5
foreArmTwist: 0.5
upperLegTwist: 0.5
legTwist: 0.5
armStretch: 0.05
legStretch: 0.05
feetSpacing: 0
globalScale: 1
rootMotionBoneName:
hasTranslationDoF: 0
hasExtraRoot: 0
skeletonHasParents: 1
lastHumanDescriptionAvatarSource: {fileID: 9000000, guid: 1841c298173cdad4db8df8602c8f1c8d,
type: 3}
autoGenerateAvatarMappingIfUnspecified: 1
animationType: 3
humanoidOversampling: 1
avatarSetup: 2
addHumanoidExtraRootOnlyWhenUsingAvatar: 1
importBlendShapeDeformPercent: 1
remapMaterialsIfMaterialImportModeIsNone: 0
additionalBone: 0
userData:
assetBundleName:
assetBundleVariant:
AssetOrigin:
serializedVersion: 1
productId: 154271
packageName: Human Basic Motions FREE
packageVersion: 2.4.2
assetPath: Assets/Kevin Iglesias/Human Animations/Animations/Female/Movement/Sprint/HumanF@Sprint01_Left.fbx
uploadId: 908942

View file

@ -1,973 +0,0 @@
fileFormatVersion: 2
guid: 31b250fe2fe55ed4c8daa545b042f886
ModelImporter:
serializedVersion: 22200
internalIDToNameTable: []
externalObjects: {}
materials:
materialImportMode: 0
materialName: 0
materialSearch: 1
materialLocation: 1
animations:
legacyGenerateAnimations: 4
bakeSimulation: 0
resampleCurves: 1
optimizeGameObjects: 0
removeConstantScaleCurves: 0
motionNodeName:
animationImportErrors:
animationImportWarnings:
animationRetargetingWarnings:
animationDoRetargetingWarnings: 0
importAnimatedCustomProperties: 0
importConstraints: 0
animationCompression: 0
animationRotationError: 0.5
animationPositionError: 0.5
animationScaleError: 0.5
animationWrapMode: 0
extraExposedTransformPaths: []
extraUserProperties: []
clipAnimations:
- serializedVersion: 16
name: HumanF@Sprint01_Right
takeName: Untitled
internalID: 3094330708855449807
firstFrame: 0
lastFrame: 16
wrapMode: 0
orientationOffsetY: 0
level: 0
cycleOffset: 0
loop: 0
hasAdditiveReferencePose: 0
loopTime: 1
loopBlend: 0
loopBlendOrientation: 1
loopBlendPositionY: 1
loopBlendPositionXZ: 1
keepOriginalOrientation: 1
keepOriginalPositionY: 1
keepOriginalPositionXZ: 1
heightFromFeet: 0
mirror: 0
bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
curves: []
events: []
transformMask:
- path:
weight: 1
- path: HumanF_BodyMesh
weight: 0
- path: Rig
weight: 1
- path: Rig/B-root
weight: 1
- path: Rig/B-root/B-hips
weight: 1
- path: Rig/B-root/B-hips/B-spine
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck/B-head
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck/B-head/B-jaw
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-handProp.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L/B-indexFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L/B-indexFinger02.L/B-indexFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L/B-middleFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L/B-middleFinger02.L/B-middleFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L/B-pinky02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L/B-pinky02.L/B-pinky03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L/B-ringFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L/B-ringFinger02.L/B-ringFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L/B-thumb02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L/B-thumb02.L/B-thumb03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-handProp.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R/B-indexFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R/B-indexFinger02.R/B-indexFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R/B-middleFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R/B-middleFinger02.R/B-middleFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R/B-pinky02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R/B-pinky02.R/B-pinky03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R/B-ringFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R/B-ringFinger02.R/B-ringFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R/B-thumb02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R/B-thumb02.R/B-thumb03.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L/B-foot.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L/B-foot.L/B-toe.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R/B-foot.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R/B-foot.R/B-toe.R
weight: 1
- path: Rig/B-root/B-spineProxy
weight: 1
maskType: 1
maskSource: {fileID: 31900000, guid: 89527f5525238ee44b3182458d85143a, type: 2}
additiveReferencePoseFrame: 0
isReadable: 0
meshes:
lODScreenPercentages: []
globalScale: 1
meshCompression: 0
addColliders: 0
useSRGBMaterialColor: 1
sortHierarchyByName: 1
importPhysicalCameras: 1
importVisibility: 1
importBlendShapes: 1
importCameras: 1
importLights: 1
nodeNameCollisionStrategy: 1
fileIdsGeneration: 2
swapUVChannels: 0
generateSecondaryUV: 0
useFileUnits: 1
keepQuads: 0
weldVertices: 1
bakeAxisConversion: 0
preserveHierarchy: 1
skinWeightsMode: 0
maxBonesPerVertex: 4
minBoneWeight: 0.001
optimizeBones: 1
meshOptimizationFlags: -1
indexFormat: 0
secondaryUVAngleDistortion: 8
secondaryUVAreaDistortion: 15.000001
secondaryUVHardAngle: 88
secondaryUVMarginMethod: 1
secondaryUVMinLightmapResolution: 40
secondaryUVMinObjectScale: 1
secondaryUVPackMargin: 4
useFileScale: 1
strictVertexDataChecks: 0
tangentSpace:
normalSmoothAngle: 60
normalImportMode: 0
tangentImportMode: 3
normalCalculationMode: 4
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0
blendShapeNormalImportMode: 1
normalSmoothingSource: 0
referencedClips: []
importAnimation: 1
humanDescription:
serializedVersion: 3
human:
- boneName: B-hips
humanName: Hips
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thigh.L
humanName: LeftUpperLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thigh.R
humanName: RightUpperLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shin.L
humanName: LeftLowerLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shin.R
humanName: RightLowerLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-foot.L
humanName: LeftFoot
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-foot.R
humanName: RightFoot
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-spine
humanName: Spine
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-chest
humanName: Chest
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-neck
humanName: Neck
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-head
humanName: Head
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shoulder.L
humanName: LeftShoulder
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shoulder.R
humanName: RightShoulder
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-upperArm.L
humanName: LeftUpperArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-upperArm.R
humanName: RightUpperArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-forearm.L
humanName: LeftLowerArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-forearm.R
humanName: RightLowerArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-hand.L
humanName: LeftHand
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-hand.R
humanName: RightHand
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-toe.L
humanName: LeftToes
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-toe.R
humanName: RightToes
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-jaw
humanName: Jaw
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb01.L
humanName: Left Thumb Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb02.L
humanName: Left Thumb Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb03.L
humanName: Left Thumb Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger01.L
humanName: Left Index Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger02.L
humanName: Left Index Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger03.L
humanName: Left Index Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger01.L
humanName: Left Middle Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger02.L
humanName: Left Middle Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger03.L
humanName: Left Middle Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger01.L
humanName: Left Ring Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger02.L
humanName: Left Ring Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger03.L
humanName: Left Ring Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky01.L
humanName: Left Little Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky02.L
humanName: Left Little Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky03.L
humanName: Left Little Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb01.R
humanName: Right Thumb Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb02.R
humanName: Right Thumb Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb03.R
humanName: Right Thumb Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger01.R
humanName: Right Index Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger02.R
humanName: Right Index Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger03.R
humanName: Right Index Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger01.R
humanName: Right Middle Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger02.R
humanName: Right Middle Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger03.R
humanName: Right Middle Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger01.R
humanName: Right Ring Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger02.R
humanName: Right Ring Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger03.R
humanName: Right Ring Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky01.R
humanName: Right Little Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky02.R
humanName: Right Little Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky03.R
humanName: Right Little Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
skeleton:
- name: Human_DummyModel_F(Clone)
parentName:
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: HumanF_BodyMesh
parentName: Human_DummyModel_F(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Rig
parentName: Human_DummyModel_F(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: B-root
parentName: Rig
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: B-spineProxy
parentName: B-root
position: {x: -0, y: 1.092844, z: 0.029147}
rotation: {x: -0.012905054, y: 0, z: -0, w: 0.99991673}
scale: {x: 1, y: 1.0000001, z: 1.0000001}
- name: B-hips
parentName: B-root
position: {x: -0, y: 0.967712, z: 0.016772}
rotation: {x: 0.04926631, y: 0, z: -0, w: 0.9987857}
scale: {x: 1, y: 1.0000004, z: 1.0000004}
- name: B-spine
parentName: B-hips
position: {x: -0, y: 0.12574437, z: 0.00000011940791}
rotation: {x: -0.062152267, y: 0, z: -0, w: 0.99806666}
scale: {x: 1, y: 0.99999976, z: 0.99999976}
- name: B-chest
parentName: B-spine
position: {x: -0, y: 0.13376056, z: -0.00000077390683}
rotation: {x: -0.02258696, y: 0, z: -0, w: 0.9997449}
scale: {x: 1, y: 0.9999996, z: 0.9999996}
- name: B-shoulder.R
parentName: B-chest
position: {x: -0, y: 0.19125995, z: -0.005656177}
rotation: {x: -0.5165573, y: -0.44464085, z: -0.47738376, w: 0.554588}
scale: {x: 1.0000008, y: 1.0000006, z: 1.0000002}
- name: B-upperArm.R
parentName: B-shoulder.R
position: {x: -0.00000043065853, y: 0.1619337, z: -0.000000866464}
rotation: {x: 0.03406315, y: 0.7090742, z: -0.08345674, w: 0.69934857}
scale: {x: 0.99999976, y: 1, z: 0.99999946}
- name: B-forearm.R
parentName: B-upperArm.R
position: {x: -0.0000005071642, y: 0.23413825, z: 0.0000019611641}
rotation: {x: 0.0013730773, y: -0.00042225965, z: 0.0032032696, w: 0.99999386}
scale: {x: 1.0000001, y: 0.99999964, z: 0.9999996}
- name: B-hand.R
parentName: B-forearm.R
position: {x: -0.000000328232, y: 0.19596381, z: -0.0000008355853}
rotation: {x: 0.013529134, y: 0.7054088, z: 0.032969795, w: 0.70790416}
scale: {x: 0.9999999, y: 1.0000002, z: 1.0000005}
- name: B-handProp.R
parentName: B-hand.R
position: {x: 0.0029605331, y: 0.10533051, z: 0.022608897}
rotation: {x: -0.67608327, y: 0.73659164, z: -0.013668106, w: -0.012545319}
scale: {x: 0.99999964, y: 1.0000005, z: 0.9999996}
- name: B-indexFinger01.R
parentName: B-hand.R
position: {x: -0.036052607, y: 0.13202412, z: -0.0022375023}
rotation: {x: 0.019054495, y: -0.0149580045, z: 0.031315368, w: 0.999216}
scale: {x: 1.0000002, y: 0.99999964, z: 0.9999993}
- name: B-indexFinger02.R
parentName: B-indexFinger01.R
position: {x: 0.00000021708313, y: 0.046758045, z: -0.0000005285747}
rotation: {x: 0.040758472, y: 0.02876925, z: -0.0030862393, w: 0.99875003}
scale: {x: 1, y: 1.0000004, z: 1.0000002}
- name: B-indexFinger03.R
parentName: B-indexFinger02.R
position: {x: 0.000000038075022, y: 0.034652043, z: 0.00000019983679}
rotation: {x: -0.006236443, y: 0.004024028, z: -0.0109188985, w: 0.99991286}
scale: {x: 0.9999999, y: 0.9999999, z: 0.99999964}
- name: B-middleFinger01.R
parentName: B-hand.R
position: {x: -0.00928522, y: 0.1318378, z: -0.0089382}
rotation: {x: -0.004700204, y: -0.0032572027, z: -0.001801642, w: 0.99998206}
scale: {x: 1.0000006, y: 0.9999997, z: 0.99999917}
- name: B-middleFinger02.R
parentName: B-middleFinger01.R
position: {x: -0.0000003849299, y: 0.048716273, z: -0.0000001691299}
rotation: {x: 0.039366316, y: 0.04573892, z: 0.00377753, w: 0.9981703}
scale: {x: 0.9999997, y: 1.0000004, z: 1}
- name: B-middleFinger03.R
parentName: B-middleFinger02.R
position: {x: -0.00000039262213, y: 0.035888083, z: 0.00000029152696}
rotation: {x: 0.0049846717, y: -0.02122791, z: -0.0063242065, w: 0.99974227}
scale: {x: 0.99999964, y: 0.99999994, z: 1.0000002}
- name: B-ringFinger01.R
parentName: B-hand.R
position: {x: 0.016020812, y: 0.1283572, z: -0.005707851}
rotation: {x: -0.0071167736, y: 0.0017728558, z: -0.036400504, w: 0.9993104}
scale: {x: 1.0000005, y: 0.9999992, z: 0.9999996}
- name: B-ringFinger02.R
parentName: B-ringFinger01.R
position: {x: 0.00000047158898, y: 0.045192316, z: 0.00000021597218}
rotation: {x: 0.037958622, y: -0.0021153935, z: 0.012520862, w: 0.9991986}
scale: {x: 0.99999946, y: 1.0000005, z: 0.9999997}
- name: B-ringFinger03.R
parentName: B-ringFinger02.R
position: {x: -0.0000004720245, y: 0.034694634, z: 0.00000008820079}
rotation: {x: 0.02091165, y: -0.04065229, z: -0.015794862, w: 0.99882966}
scale: {x: 1.0000002, y: 0.99999976, z: 0.9999997}
- name: B-pinky01.R
parentName: B-hand.R
position: {x: 0.041580904, y: 0.119742304, z: -0.0024299922}
rotation: {x: -0.011731888, y: -0.016481936, z: -0.04421447, w: 0.9988172}
scale: {x: 1.0000002, y: 0.9999994, z: 0.99999917}
- name: B-pinky02.R
parentName: B-pinky01.R
position: {x: 0.0000007804244, y: 0.03832724, z: 0.00000044214514}
rotation: {x: 0.039002027, y: 0.011177708, z: 0.009234122, w: 0.99913394}
scale: {x: 1.0000002, y: 1.0000006, z: 1.0000002}
- name: B-pinky03.R
parentName: B-pinky02.R
position: {x: -0.000000269953, y: 0.03220071, z: -0.0000005856981}
rotation: {x: 0.022101695, y: -0.02182341, z: 0.009210792, w: 0.99947506}
scale: {x: 1.0000005, y: 0.99999994, z: 1.0000007}
- name: B-thumb01.R
parentName: B-hand.R
position: {x: -0.039809253, y: 0.048496302, z: 0.0130518135}
rotation: {x: -0.22471787, y: 0.63045275, z: 0.29821387, w: 0.6805144}
scale: {x: 0.99999946, y: 1.0000002, z: 1.0000005}
- name: B-thumb02.R
parentName: B-thumb01.R
position: {x: 0.00000020260806, y: 0.047178134, z: 0.000000160123}
rotation: {x: 0.038173996, y: 0.013301423, z: -0.008042345, w: 0.9991502}
scale: {x: 1.0000007, y: 0.9999997, z: 0.9999999}
- name: B-thumb03.R
parentName: B-thumb02.R
position: {x: -0.00000069069114, y: 0.03520854, z: 0.00000004046409}
rotation: {x: -0.060352694, y: 0.014396386, z: 0.0074255248, w: 0.9980457}
scale: {x: 0.9999995, y: 1.0000004, z: 1}
- name: B-neck
parentName: B-chest
position: {x: -0, y: 0.27081212, z: 0.0000007058524}
rotation: {x: 0.105346866, y: 0, z: -0, w: 0.99443555}
scale: {x: 1, y: 0.9999997, z: 1.0000007}
- name: B-head
parentName: B-neck
position: {x: -0, y: 0.07409704, z: 0.00000025054106}
rotation: {x: -0.069990024, y: 0, z: -0, w: 0.9975477}
scale: {x: 1, y: 1.0000006, z: 0.99999964}
- name: B-jaw
parentName: B-head
position: {x: -0, y: 0, z: 0}
rotation: {x: 0.70698464, y: 0.000007072379, z: -0.00000706994, w: 0.7072289}
scale: {x: 1, y: 1, z: 1}
- name: B-shoulder.L
parentName: B-chest
position: {x: -0, y: 0.19125995, z: -0.005656177}
rotation: {x: -0.5165571, y: 0.44464028, z: 0.47738382, w: 0.5545886}
scale: {x: 0.9999998, y: 0.9999995, z: 1.0000002}
- name: B-upperArm.L
parentName: B-shoulder.L
position: {x: 0.00000040656337, y: 0.16193385, z: -0.0000008664629}
rotation: {x: 0.033948872, y: -0.70908755, z: 0.08334149, w: 0.69935447}
scale: {x: 0.9999998, y: 1.0000002, z: 0.9999999}
- name: B-forearm.L
parentName: B-upperArm.L
position: {x: 0.000000097359035, y: 0.2341381, z: 0.00000030291466}
rotation: {x: 0.0017385628, y: 0.0004205673, z: -0.0032047313, w: 0.99999326}
scale: {x: 0.99999994, y: 1.0000004, z: 1.0000001}
- name: B-hand.L
parentName: B-forearm.L
position: {x: 0.00000052406216, y: 0.1959644, z: -0.0000011816531}
rotation: {x: 0.013386631, y: -0.70541465, z: -0.032826252, w: 0.7079078}
scale: {x: 0.99999994, y: 0.9999992, z: 0.9999996}
- name: B-handProp.L
parentName: B-hand.L
position: {x: -0.0029615294, y: 0.10533054, z: 0.02260892}
rotation: {x: 0.67608327, y: 0.73659164, z: -0.013668119, w: 0.012545332}
scale: {x: 1.0000006, y: 0.99999946, z: 1.0000006}
- name: B-indexFinger01.L
parentName: B-hand.L
position: {x: 0.03605161, y: 0.13202417, z: -0.0022375062}
rotation: {x: 0.019054513, y: 0.014957919, z: -0.03131587, w: 0.99921596}
scale: {x: 1.0000004, y: 0.9999998, z: 1.0000002}
- name: B-indexFinger02.L
parentName: B-indexFinger01.L
position: {x: 0.00000072554116, y: 0.04675823, z: -0.0000005109258}
rotation: {x: 0.04075494, y: -0.02876944, z: 0.0030826945, w: 0.9987502}
scale: {x: 1.0000001, y: 1.0000002, z: 1.0000002}
- name: B-indexFinger03.L
parentName: B-indexFinger02.L
position: {x: -0.00000009920999, y: 0.034652077, z: 0.00000023013986}
rotation: {x: -0.0062364372, y: -0.004023549, z: 0.010918792, w: 0.99991286}
scale: {x: 0.9999998, y: 1.0000008, z: 0.9999995}
- name: B-middleFinger01.L
parentName: B-hand.L
position: {x: 0.00928522, y: 0.13183793, z: -0.008938214}
rotation: {x: -0.004700207, y: 0.0032570793, z: 0.0018007505, w: 0.99998206}
scale: {x: 1.0000007, y: 0.9999999, z: 1.0000001}
- name: B-middleFinger02.L
parentName: B-middleFinger01.L
position: {x: 0.00000028786184, y: 0.048716314, z: -0.00000017087451}
rotation: {x: 0.039368037, y: -0.045739666, z: -0.0037847473, w: 0.9981702}
scale: {x: 0.99999976, y: 1.000001, z: 1.0000006}
- name: B-middleFinger03.L
parentName: B-middleFinger02.L
position: {x: -0.00000066842983, y: 0.035888, z: 0.00000028642995}
rotation: {x: 0.0049827034, y: 0.021227859, z: 0.0063241003, w: 0.99974227}
scale: {x: 0.9999996, y: 0.99999905, z: 0.99999934}
- name: B-ringFinger01.L
parentName: B-hand.L
position: {x: -0.016021809, y: 0.12835726, z: -0.005707858}
rotation: {x: -0.007116776, y: -0.0017729683, z: 0.036399588, w: 0.99931043}
scale: {x: 1.0000005, y: 1.0000002, z: 1.0000006}
- name: B-ringFinger02.L
parentName: B-ringFinger01.L
position: {x: 0.00000043795694, y: 0.04519233, z: 0.00000021050154}
rotation: {x: 0.037963506, y: 0.0021157071, z: -0.01252746, w: 0.9991984}
scale: {x: 0.9999995, y: 0.99999964, z: 0.9999996}
- name: B-ringFinger03.L
parentName: B-ringFinger02.L
position: {x: 0.00000034561023, y: 0.03469565, z: -0.00000007648653}
rotation: {x: 0.020911071, y: 0.04065225, z: 0.015794758, w: 0.99882966}
scale: {x: 1.0000001, y: 1.0000005, z: 0.9999997}
- name: B-pinky01.L
parentName: B-hand.L
position: {x: -0.041581903, y: 0.119742356, z: -0.0024299957}
rotation: {x: -0.01172906, y: 0.01648238, z: 0.0442254, w: 0.9988167}
scale: {x: 1.0000002, y: 1.0000004, z: 1.0000002}
- name: B-pinky02.L
parentName: B-pinky01.L
position: {x: 0.00000014151807, y: 0.03832722, z: 0.00000047056287}
rotation: {x: 0.039005004, y: -0.011177422, z: -0.009239738, w: 0.99913377}
scale: {x: 1.0000002, y: 0.99999946, z: 1.0000001}
- name: B-pinky03.L
parentName: B-pinky02.L
position: {x: 0.000000233103, y: 0.032200746, z: -0.00000055902217}
rotation: {x: 0.022101717, y: 0.02182328, z: -0.009211465, w: 0.99947506}
scale: {x: 0.9999995, y: 1, z: 0.99999964}
- name: B-thumb01.L
parentName: B-hand.L
position: {x: 0.03980834, y: 0.048495278, z: 0.013051865}
rotation: {x: -0.2247114, y: -0.6304557, z: -0.2982149, w: 0.6805132}
scale: {x: 1.0000005, y: 1, z: 1.0000005}
- name: B-thumb02.L
parentName: B-thumb01.L
position: {x: -0.0000007063521, y: 0.047179468, z: -0.00000013365789}
rotation: {x: 0.038171936, y: -0.013301728, z: 0.008042519, w: 0.9991503}
scale: {x: 1.0000004, y: 1, z: 0.9999994}
- name: B-thumb03.L
parentName: B-thumb02.L
position: {x: 0.0000007190916, y: 0.035208564, z: 0.00000017922088}
rotation: {x: -0.06035389, y: -0.014396597, z: -0.007425322, w: 0.9980456}
scale: {x: 0.9999992, y: 0.99999994, z: 1.0000001}
- name: B-thigh.L
parentName: B-hips
position: {x: -0.096950985, y: -0.05446949, z: 0.0020414153}
rotation: {x: 0.9977441, y: 0.011110197, z: -0.0039620763, w: 0.066088475}
scale: {x: 1.0000002, y: 0.9999997, z: 1.000001}
- name: B-shin.L
parentName: B-thigh.L
position: {x: 0.00000018468991, y: 0.41111633, z: 0.0000005281011}
rotation: {x: 0.067057244, y: -0.00057845906, z: 0.011617889, w: 0.9976813}
scale: {x: 0.9999997, y: 1.0000002, z: 0.99999964}
- name: B-foot.L
parentName: B-shin.L
position: {x: -0.00000017405802, y: 0.3880767, z: -0.00000019306846}
rotation: {x: -0.5354999, y: 0.004330197, z: 0.0016612022, w: 0.84452266}
scale: {x: 1.0000001, y: 0.9999997, z: 0.99999976}
- name: B-toe.L
parentName: B-foot.L
position: {x: -0.00000027025197, y: 0.17254004, z: -0.000000117418054}
rotation: {x: 0.000012936387, y: 0.9622731, z: -0.27208534, w: 0.00017343421}
scale: {x: 1, y: 1.0000018, z: 0.999999}
- name: B-thigh.R
parentName: B-hips
position: {x: 0.096950985, y: -0.05446959, z: 0.0020404202}
rotation: {x: 0.9977441, y: -0.011109428, z: 0.003967029, w: 0.066088304}
scale: {x: 1.0000004, y: 0.99999976, z: 1.000008}
- name: B-shin.R
parentName: B-thigh.R
position: {x: 0.0000005496826, y: 0.41111633, z: -0.00000065481464}
rotation: {x: 0.06705632, y: 0.0005783735, z: -0.011616509, w: 0.99768144}
scale: {x: 0.9999997, y: 1.0000002, z: 1.0000007}
- name: B-foot.R
parentName: B-shin.R
position: {x: -0.00000044263592, y: 0.3880767, z: 0.000000107811644}
rotation: {x: -0.53550065, y: -0.0043338453, z: -0.0016630876, w: 0.84452206}
scale: {x: 1, y: 0.9999993, z: 0.99999994}
- name: B-toe.R
parentName: B-foot.R
position: {x: 0.00000074386196, y: 0.17254034, z: 0.00000017937037}
rotation: {x: -0.000012542016, y: 0.96227294, z: -0.27208585, w: -0.00017487761}
scale: {x: 1, y: 1.0000029, z: 0.999997}
armTwist: 0.5
foreArmTwist: 0.5
upperLegTwist: 0.5
legTwist: 0.5
armStretch: 0.05
legStretch: 0.05
feetSpacing: 0
globalScale: 1
rootMotionBoneName:
hasTranslationDoF: 0
hasExtraRoot: 0
skeletonHasParents: 1
lastHumanDescriptionAvatarSource: {fileID: 9000000, guid: 1841c298173cdad4db8df8602c8f1c8d,
type: 3}
autoGenerateAvatarMappingIfUnspecified: 1
animationType: 3
humanoidOversampling: 1
avatarSetup: 2
addHumanoidExtraRootOnlyWhenUsingAvatar: 1
importBlendShapeDeformPercent: 1
remapMaterialsIfMaterialImportModeIsNone: 0
additionalBone: 0
userData:
assetBundleName:
assetBundleVariant:
AssetOrigin:
serializedVersion: 1
productId: 154271
packageName: Human Basic Motions FREE
packageVersion: 2.4.2
assetPath: Assets/Kevin Iglesias/Human Animations/Animations/Female/Movement/Sprint/HumanF@Sprint01_Right.fbx
uploadId: 908942

View file

@ -1,8 +0,0 @@
fileFormatVersion: 2
guid: bcdb509f068fd7542b32d60ce2a04255
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View file

@ -1,974 +0,0 @@
fileFormatVersion: 2
guid: ece8783ced0147a47bd91b75de63ffc4
ModelImporter:
serializedVersion: 22200
internalIDToNameTable: []
externalObjects: {}
materials:
materialImportMode: 0
materialName: 0
materialSearch: 1
materialLocation: 1
animations:
legacyGenerateAnimations: 4
bakeSimulation: 0
resampleCurves: 1
optimizeGameObjects: 0
removeConstantScaleCurves: 0
motionNodeName: Rig/B-root
animationImportErrors:
animationImportWarnings:
animationRetargetingWarnings:
animationDoRetargetingWarnings: 0
importAnimatedCustomProperties: 0
importConstraints: 0
animationCompression: 0
animationRotationError: 0.5
animationPositionError: 0.5
animationScaleError: 0.5
animationWrapMode: 0
extraExposedTransformPaths: []
extraUserProperties: []
clipAnimations:
- serializedVersion: 16
name: 'HumanF@Sprint01_Forward [RM]'
takeName: Untitled
internalID: 3094330708855449807
firstFrame: 0
lastFrame: 16
wrapMode: 0
orientationOffsetY: 0
level: 0
cycleOffset: 0
loop: 0
hasAdditiveReferencePose: 0
loopTime: 1
loopBlend: 0
loopBlendOrientation: 1
loopBlendPositionY: 1
loopBlendPositionXZ: 0
keepOriginalOrientation: 1
keepOriginalPositionY: 1
keepOriginalPositionXZ: 1
heightFromFeet: 0
mirror: 0
bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
curves: []
events: []
transformMask:
- path:
weight: 1
- path: HumanF_BodyMesh
weight: 0
- path: Rig
weight: 1
- path: Rig/B-root
weight: 1
- path: Rig/B-root/B-hips
weight: 1
- path: Rig/B-root/B-hips/B-spine
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck/B-head
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck/B-head/B-jaw
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-handProp.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L/B-indexFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L/B-indexFinger02.L/B-indexFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L/B-middleFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L/B-middleFinger02.L/B-middleFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L/B-pinky02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L/B-pinky02.L/B-pinky03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L/B-ringFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L/B-ringFinger02.L/B-ringFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L/B-thumb02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L/B-thumb02.L/B-thumb03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-handProp.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R/B-indexFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R/B-indexFinger02.R/B-indexFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R/B-middleFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R/B-middleFinger02.R/B-middleFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R/B-pinky02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R/B-pinky02.R/B-pinky03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R/B-ringFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R/B-ringFinger02.R/B-ringFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R/B-thumb02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R/B-thumb02.R/B-thumb03.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L/B-foot.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L/B-foot.L/B-toe.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R/B-foot.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R/B-foot.R/B-toe.R
weight: 1
- path: Rig/B-root/B-spineProxy
weight: 1
maskType: 1
maskSource: {fileID: 31900000, guid: 89527f5525238ee44b3182458d85143a, type: 2}
additiveReferencePoseFrame: 0
isReadable: 0
meshes:
lODScreenPercentages: []
globalScale: 1
meshCompression: 0
addColliders: 0
useSRGBMaterialColor: 1
sortHierarchyByName: 1
importPhysicalCameras: 1
importVisibility: 1
importBlendShapes: 1
importCameras: 1
importLights: 1
nodeNameCollisionStrategy: 1
fileIdsGeneration: 2
swapUVChannels: 0
generateSecondaryUV: 0
useFileUnits: 1
keepQuads: 0
weldVertices: 1
bakeAxisConversion: 0
preserveHierarchy: 1
skinWeightsMode: 0
maxBonesPerVertex: 4
minBoneWeight: 0.001
optimizeBones: 1
meshOptimizationFlags: -1
indexFormat: 0
secondaryUVAngleDistortion: 8
secondaryUVAreaDistortion: 15.000001
secondaryUVHardAngle: 88
secondaryUVMarginMethod: 1
secondaryUVMinLightmapResolution: 40
secondaryUVMinObjectScale: 1
secondaryUVPackMargin: 4
useFileScale: 1
strictVertexDataChecks: 0
tangentSpace:
normalSmoothAngle: 60
normalImportMode: 0
tangentImportMode: 3
normalCalculationMode: 4
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0
blendShapeNormalImportMode: 1
normalSmoothingSource: 0
referencedClips: []
importAnimation: 1
humanDescription:
serializedVersion: 3
human:
- boneName: B-hips
humanName: Hips
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thigh.L
humanName: LeftUpperLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thigh.R
humanName: RightUpperLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shin.L
humanName: LeftLowerLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shin.R
humanName: RightLowerLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-foot.L
humanName: LeftFoot
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-foot.R
humanName: RightFoot
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-spine
humanName: Spine
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-chest
humanName: Chest
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-neck
humanName: Neck
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-head
humanName: Head
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shoulder.L
humanName: LeftShoulder
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shoulder.R
humanName: RightShoulder
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-upperArm.L
humanName: LeftUpperArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-upperArm.R
humanName: RightUpperArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-forearm.L
humanName: LeftLowerArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-forearm.R
humanName: RightLowerArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-hand.L
humanName: LeftHand
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-hand.R
humanName: RightHand
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-toe.L
humanName: LeftToes
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-toe.R
humanName: RightToes
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-jaw
humanName: Jaw
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb01.L
humanName: Left Thumb Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb02.L
humanName: Left Thumb Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb03.L
humanName: Left Thumb Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger01.L
humanName: Left Index Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger02.L
humanName: Left Index Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger03.L
humanName: Left Index Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger01.L
humanName: Left Middle Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger02.L
humanName: Left Middle Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger03.L
humanName: Left Middle Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger01.L
humanName: Left Ring Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger02.L
humanName: Left Ring Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger03.L
humanName: Left Ring Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky01.L
humanName: Left Little Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky02.L
humanName: Left Little Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky03.L
humanName: Left Little Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb01.R
humanName: Right Thumb Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb02.R
humanName: Right Thumb Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb03.R
humanName: Right Thumb Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger01.R
humanName: Right Index Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger02.R
humanName: Right Index Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger03.R
humanName: Right Index Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger01.R
humanName: Right Middle Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger02.R
humanName: Right Middle Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger03.R
humanName: Right Middle Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger01.R
humanName: Right Ring Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger02.R
humanName: Right Ring Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger03.R
humanName: Right Ring Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky01.R
humanName: Right Little Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky02.R
humanName: Right Little Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky03.R
humanName: Right Little Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
skeleton:
- name: Human_DummyModel_F(Clone)
parentName:
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: HumanF_BodyMesh
parentName: Human_DummyModel_F(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Rig
parentName: Human_DummyModel_F(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: B-root
parentName: Rig
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: B-spineProxy
parentName: B-root
position: {x: -0, y: 1.092844, z: 0.029147}
rotation: {x: -0.012905054, y: 0, z: -0, w: 0.99991673}
scale: {x: 1, y: 1.0000001, z: 1.0000001}
- name: B-hips
parentName: B-root
position: {x: -0, y: 0.967712, z: 0.016772}
rotation: {x: 0.04926631, y: 0, z: -0, w: 0.9987857}
scale: {x: 1, y: 1.0000004, z: 1.0000004}
- name: B-spine
parentName: B-hips
position: {x: -0, y: 0.12574437, z: 0.00000011940791}
rotation: {x: -0.062152267, y: 0, z: -0, w: 0.99806666}
scale: {x: 1, y: 0.99999976, z: 0.99999976}
- name: B-chest
parentName: B-spine
position: {x: -0, y: 0.13376056, z: -0.00000077390683}
rotation: {x: -0.02258696, y: 0, z: -0, w: 0.9997449}
scale: {x: 1, y: 0.9999996, z: 0.9999996}
- name: B-shoulder.R
parentName: B-chest
position: {x: -0, y: 0.19125995, z: -0.005656177}
rotation: {x: -0.5165573, y: -0.44464085, z: -0.47738376, w: 0.554588}
scale: {x: 1.0000008, y: 1.0000006, z: 1.0000002}
- name: B-upperArm.R
parentName: B-shoulder.R
position: {x: -0.00000043065853, y: 0.1619337, z: -0.000000866464}
rotation: {x: 0.03406315, y: 0.7090742, z: -0.08345674, w: 0.69934857}
scale: {x: 0.99999976, y: 1, z: 0.99999946}
- name: B-forearm.R
parentName: B-upperArm.R
position: {x: -0.0000005071642, y: 0.23413825, z: 0.0000019611641}
rotation: {x: 0.0013730773, y: -0.00042225965, z: 0.0032032696, w: 0.99999386}
scale: {x: 1.0000001, y: 0.99999964, z: 0.9999996}
- name: B-hand.R
parentName: B-forearm.R
position: {x: -0.000000328232, y: 0.19596381, z: -0.0000008355853}
rotation: {x: 0.013529134, y: 0.7054088, z: 0.032969795, w: 0.70790416}
scale: {x: 0.9999999, y: 1.0000002, z: 1.0000005}
- name: B-handProp.R
parentName: B-hand.R
position: {x: 0.0029605331, y: 0.10533051, z: 0.022608897}
rotation: {x: -0.67608327, y: 0.73659164, z: -0.013668106, w: -0.012545319}
scale: {x: 0.99999964, y: 1.0000005, z: 0.9999996}
- name: B-indexFinger01.R
parentName: B-hand.R
position: {x: -0.036052607, y: 0.13202412, z: -0.0022375023}
rotation: {x: 0.019054495, y: -0.0149580045, z: 0.031315368, w: 0.999216}
scale: {x: 1.0000002, y: 0.99999964, z: 0.9999993}
- name: B-indexFinger02.R
parentName: B-indexFinger01.R
position: {x: 0.00000021708313, y: 0.046758045, z: -0.0000005285747}
rotation: {x: 0.040758472, y: 0.02876925, z: -0.0030862393, w: 0.99875003}
scale: {x: 1, y: 1.0000004, z: 1.0000002}
- name: B-indexFinger03.R
parentName: B-indexFinger02.R
position: {x: 0.000000038075022, y: 0.034652043, z: 0.00000019983679}
rotation: {x: -0.006236443, y: 0.004024028, z: -0.0109188985, w: 0.99991286}
scale: {x: 0.9999999, y: 0.9999999, z: 0.99999964}
- name: B-middleFinger01.R
parentName: B-hand.R
position: {x: -0.00928522, y: 0.1318378, z: -0.0089382}
rotation: {x: -0.004700204, y: -0.0032572027, z: -0.001801642, w: 0.99998206}
scale: {x: 1.0000006, y: 0.9999997, z: 0.99999917}
- name: B-middleFinger02.R
parentName: B-middleFinger01.R
position: {x: -0.0000003849299, y: 0.048716273, z: -0.0000001691299}
rotation: {x: 0.039366316, y: 0.04573892, z: 0.00377753, w: 0.9981703}
scale: {x: 0.9999997, y: 1.0000004, z: 1}
- name: B-middleFinger03.R
parentName: B-middleFinger02.R
position: {x: -0.00000039262213, y: 0.035888083, z: 0.00000029152696}
rotation: {x: 0.0049846717, y: -0.02122791, z: -0.0063242065, w: 0.99974227}
scale: {x: 0.99999964, y: 0.99999994, z: 1.0000002}
- name: B-ringFinger01.R
parentName: B-hand.R
position: {x: 0.016020812, y: 0.1283572, z: -0.005707851}
rotation: {x: -0.0071167736, y: 0.0017728558, z: -0.036400504, w: 0.9993104}
scale: {x: 1.0000005, y: 0.9999992, z: 0.9999996}
- name: B-ringFinger02.R
parentName: B-ringFinger01.R
position: {x: 0.00000047158898, y: 0.045192316, z: 0.00000021597218}
rotation: {x: 0.037958622, y: -0.0021153935, z: 0.012520862, w: 0.9991986}
scale: {x: 0.99999946, y: 1.0000005, z: 0.9999997}
- name: B-ringFinger03.R
parentName: B-ringFinger02.R
position: {x: -0.0000004720245, y: 0.034694634, z: 0.00000008820079}
rotation: {x: 0.02091165, y: -0.04065229, z: -0.015794862, w: 0.99882966}
scale: {x: 1.0000002, y: 0.99999976, z: 0.9999997}
- name: B-pinky01.R
parentName: B-hand.R
position: {x: 0.041580904, y: 0.119742304, z: -0.0024299922}
rotation: {x: -0.011731888, y: -0.016481936, z: -0.04421447, w: 0.9988172}
scale: {x: 1.0000002, y: 0.9999994, z: 0.99999917}
- name: B-pinky02.R
parentName: B-pinky01.R
position: {x: 0.0000007804244, y: 0.03832724, z: 0.00000044214514}
rotation: {x: 0.039002027, y: 0.011177708, z: 0.009234122, w: 0.99913394}
scale: {x: 1.0000002, y: 1.0000006, z: 1.0000002}
- name: B-pinky03.R
parentName: B-pinky02.R
position: {x: -0.000000269953, y: 0.03220071, z: -0.0000005856981}
rotation: {x: 0.022101695, y: -0.02182341, z: 0.009210792, w: 0.99947506}
scale: {x: 1.0000005, y: 0.99999994, z: 1.0000007}
- name: B-thumb01.R
parentName: B-hand.R
position: {x: -0.039809253, y: 0.048496302, z: 0.0130518135}
rotation: {x: -0.22471787, y: 0.63045275, z: 0.29821387, w: 0.6805144}
scale: {x: 0.99999946, y: 1.0000002, z: 1.0000005}
- name: B-thumb02.R
parentName: B-thumb01.R
position: {x: 0.00000020260806, y: 0.047178134, z: 0.000000160123}
rotation: {x: 0.038173996, y: 0.013301423, z: -0.008042345, w: 0.9991502}
scale: {x: 1.0000007, y: 0.9999997, z: 0.9999999}
- name: B-thumb03.R
parentName: B-thumb02.R
position: {x: -0.00000069069114, y: 0.03520854, z: 0.00000004046409}
rotation: {x: -0.060352694, y: 0.014396386, z: 0.0074255248, w: 0.9980457}
scale: {x: 0.9999995, y: 1.0000004, z: 1}
- name: B-neck
parentName: B-chest
position: {x: -0, y: 0.27081212, z: 0.0000007058524}
rotation: {x: 0.105346866, y: 0, z: -0, w: 0.99443555}
scale: {x: 1, y: 0.9999997, z: 1.0000007}
- name: B-head
parentName: B-neck
position: {x: -0, y: 0.07409704, z: 0.00000025054106}
rotation: {x: -0.069990024, y: 0, z: -0, w: 0.9975477}
scale: {x: 1, y: 1.0000006, z: 0.99999964}
- name: B-jaw
parentName: B-head
position: {x: -0, y: 0, z: 0}
rotation: {x: 0.70698464, y: 0.000007072379, z: -0.00000706994, w: 0.7072289}
scale: {x: 1, y: 1, z: 1}
- name: B-shoulder.L
parentName: B-chest
position: {x: -0, y: 0.19125995, z: -0.005656177}
rotation: {x: -0.5165571, y: 0.44464028, z: 0.47738382, w: 0.5545886}
scale: {x: 0.9999998, y: 0.9999995, z: 1.0000002}
- name: B-upperArm.L
parentName: B-shoulder.L
position: {x: 0.00000040656337, y: 0.16193385, z: -0.0000008664629}
rotation: {x: 0.033948872, y: -0.70908755, z: 0.08334149, w: 0.69935447}
scale: {x: 0.9999998, y: 1.0000002, z: 0.9999999}
- name: B-forearm.L
parentName: B-upperArm.L
position: {x: 0.000000097359035, y: 0.2341381, z: 0.00000030291466}
rotation: {x: 0.0017385628, y: 0.0004205673, z: -0.0032047313, w: 0.99999326}
scale: {x: 0.99999994, y: 1.0000004, z: 1.0000001}
- name: B-hand.L
parentName: B-forearm.L
position: {x: 0.00000052406216, y: 0.1959644, z: -0.0000011816531}
rotation: {x: 0.013386631, y: -0.70541465, z: -0.032826252, w: 0.7079078}
scale: {x: 0.99999994, y: 0.9999992, z: 0.9999996}
- name: B-handProp.L
parentName: B-hand.L
position: {x: -0.0029615294, y: 0.10533054, z: 0.02260892}
rotation: {x: 0.67608327, y: 0.73659164, z: -0.013668119, w: 0.012545332}
scale: {x: 1.0000006, y: 0.99999946, z: 1.0000006}
- name: B-indexFinger01.L
parentName: B-hand.L
position: {x: 0.03605161, y: 0.13202417, z: -0.0022375062}
rotation: {x: 0.019054513, y: 0.014957919, z: -0.03131587, w: 0.99921596}
scale: {x: 1.0000004, y: 0.9999998, z: 1.0000002}
- name: B-indexFinger02.L
parentName: B-indexFinger01.L
position: {x: 0.00000072554116, y: 0.04675823, z: -0.0000005109258}
rotation: {x: 0.04075494, y: -0.02876944, z: 0.0030826945, w: 0.9987502}
scale: {x: 1.0000001, y: 1.0000002, z: 1.0000002}
- name: B-indexFinger03.L
parentName: B-indexFinger02.L
position: {x: -0.00000009920999, y: 0.034652077, z: 0.00000023013986}
rotation: {x: -0.0062364372, y: -0.004023549, z: 0.010918792, w: 0.99991286}
scale: {x: 0.9999998, y: 1.0000008, z: 0.9999995}
- name: B-middleFinger01.L
parentName: B-hand.L
position: {x: 0.00928522, y: 0.13183793, z: -0.008938214}
rotation: {x: -0.004700207, y: 0.0032570793, z: 0.0018007505, w: 0.99998206}
scale: {x: 1.0000007, y: 0.9999999, z: 1.0000001}
- name: B-middleFinger02.L
parentName: B-middleFinger01.L
position: {x: 0.00000028786184, y: 0.048716314, z: -0.00000017087451}
rotation: {x: 0.039368037, y: -0.045739666, z: -0.0037847473, w: 0.9981702}
scale: {x: 0.99999976, y: 1.000001, z: 1.0000006}
- name: B-middleFinger03.L
parentName: B-middleFinger02.L
position: {x: -0.00000066842983, y: 0.035888, z: 0.00000028642995}
rotation: {x: 0.0049827034, y: 0.021227859, z: 0.0063241003, w: 0.99974227}
scale: {x: 0.9999996, y: 0.99999905, z: 0.99999934}
- name: B-ringFinger01.L
parentName: B-hand.L
position: {x: -0.016021809, y: 0.12835726, z: -0.005707858}
rotation: {x: -0.007116776, y: -0.0017729683, z: 0.036399588, w: 0.99931043}
scale: {x: 1.0000005, y: 1.0000002, z: 1.0000006}
- name: B-ringFinger02.L
parentName: B-ringFinger01.L
position: {x: 0.00000043795694, y: 0.04519233, z: 0.00000021050154}
rotation: {x: 0.037963506, y: 0.0021157071, z: -0.01252746, w: 0.9991984}
scale: {x: 0.9999995, y: 0.99999964, z: 0.9999996}
- name: B-ringFinger03.L
parentName: B-ringFinger02.L
position: {x: 0.00000034561023, y: 0.03469565, z: -0.00000007648653}
rotation: {x: 0.020911071, y: 0.04065225, z: 0.015794758, w: 0.99882966}
scale: {x: 1.0000001, y: 1.0000005, z: 0.9999997}
- name: B-pinky01.L
parentName: B-hand.L
position: {x: -0.041581903, y: 0.119742356, z: -0.0024299957}
rotation: {x: -0.01172906, y: 0.01648238, z: 0.0442254, w: 0.9988167}
scale: {x: 1.0000002, y: 1.0000004, z: 1.0000002}
- name: B-pinky02.L
parentName: B-pinky01.L
position: {x: 0.00000014151807, y: 0.03832722, z: 0.00000047056287}
rotation: {x: 0.039005004, y: -0.011177422, z: -0.009239738, w: 0.99913377}
scale: {x: 1.0000002, y: 0.99999946, z: 1.0000001}
- name: B-pinky03.L
parentName: B-pinky02.L
position: {x: 0.000000233103, y: 0.032200746, z: -0.00000055902217}
rotation: {x: 0.022101717, y: 0.02182328, z: -0.009211465, w: 0.99947506}
scale: {x: 0.9999995, y: 1, z: 0.99999964}
- name: B-thumb01.L
parentName: B-hand.L
position: {x: 0.03980834, y: 0.048495278, z: 0.013051865}
rotation: {x: -0.2247114, y: -0.6304557, z: -0.2982149, w: 0.6805132}
scale: {x: 1.0000005, y: 1, z: 1.0000005}
- name: B-thumb02.L
parentName: B-thumb01.L
position: {x: -0.0000007063521, y: 0.047179468, z: -0.00000013365789}
rotation: {x: 0.038171936, y: -0.013301728, z: 0.008042519, w: 0.9991503}
scale: {x: 1.0000004, y: 1, z: 0.9999994}
- name: B-thumb03.L
parentName: B-thumb02.L
position: {x: 0.0000007190916, y: 0.035208564, z: 0.00000017922088}
rotation: {x: -0.06035389, y: -0.014396597, z: -0.007425322, w: 0.9980456}
scale: {x: 0.9999992, y: 0.99999994, z: 1.0000001}
- name: B-thigh.L
parentName: B-hips
position: {x: -0.096950985, y: -0.05446949, z: 0.0020414153}
rotation: {x: 0.9977441, y: 0.011110197, z: -0.0039620763, w: 0.066088475}
scale: {x: 1.0000002, y: 0.9999997, z: 1.000001}
- name: B-shin.L
parentName: B-thigh.L
position: {x: 0.00000018468991, y: 0.41111633, z: 0.0000005281011}
rotation: {x: 0.067057244, y: -0.00057845906, z: 0.011617889, w: 0.9976813}
scale: {x: 0.9999997, y: 1.0000002, z: 0.99999964}
- name: B-foot.L
parentName: B-shin.L
position: {x: -0.00000017405802, y: 0.3880767, z: -0.00000019306846}
rotation: {x: -0.5354999, y: 0.004330197, z: 0.0016612022, w: 0.84452266}
scale: {x: 1.0000001, y: 0.9999997, z: 0.99999976}
- name: B-toe.L
parentName: B-foot.L
position: {x: -0.00000027025197, y: 0.17254004, z: -0.000000117418054}
rotation: {x: 0.000012936387, y: 0.9622731, z: -0.27208534, w: 0.00017343421}
scale: {x: 1, y: 1.0000018, z: 0.999999}
- name: B-thigh.R
parentName: B-hips
position: {x: 0.096950985, y: -0.05446959, z: 0.0020404202}
rotation: {x: 0.9977441, y: -0.011109428, z: 0.003967029, w: 0.066088304}
scale: {x: 1.0000004, y: 0.99999976, z: 1.000008}
- name: B-shin.R
parentName: B-thigh.R
position: {x: 0.0000005496826, y: 0.41111633, z: -0.00000065481464}
rotation: {x: 0.06705632, y: 0.0005783735, z: -0.011616509, w: 0.99768144}
scale: {x: 0.9999997, y: 1.0000002, z: 1.0000007}
- name: B-foot.R
parentName: B-shin.R
position: {x: -0.00000044263592, y: 0.3880767, z: 0.000000107811644}
rotation: {x: -0.53550065, y: -0.0043338453, z: -0.0016630876, w: 0.84452206}
scale: {x: 1, y: 0.9999993, z: 0.99999994}
- name: B-toe.R
parentName: B-foot.R
position: {x: 0.00000074386196, y: 0.17254034, z: 0.00000017937037}
rotation: {x: -0.000012542016, y: 0.96227294, z: -0.27208585, w: -0.00017487761}
scale: {x: 1, y: 1.0000029, z: 0.999997}
armTwist: 0.5
foreArmTwist: 0.5
upperLegTwist: 0.5
legTwist: 0.5
armStretch: 0.05
legStretch: 0.05
feetSpacing: 0
globalScale: 1
rootMotionBoneName:
hasTranslationDoF: 0
hasExtraRoot: 0
skeletonHasParents: 1
lastHumanDescriptionAvatarSource: {fileID: 9000000, guid: 1841c298173cdad4db8df8602c8f1c8d,
type: 3}
autoGenerateAvatarMappingIfUnspecified: 1
animationType: 3
humanoidOversampling: 1
avatarSetup: 2
addHumanoidExtraRootOnlyWhenUsingAvatar: 1
importBlendShapeDeformPercent: 1
remapMaterialsIfMaterialImportModeIsNone: 0
additionalBone: 0
userData:
assetBundleName:
assetBundleVariant:
AssetOrigin:
serializedVersion: 1
productId: 154271
packageName: Human Basic Motions FREE
packageVersion: 2.4.2
assetPath: Assets/Kevin Iglesias/Human Animations/Animations/Female/Movement/Sprint/RootMotion/HumanF@Sprint01_Forward
[RM].fbx
uploadId: 908942

View file

@ -1,974 +0,0 @@
fileFormatVersion: 2
guid: e43888617a116f943a10e74301b8fed1
ModelImporter:
serializedVersion: 22200
internalIDToNameTable: []
externalObjects: {}
materials:
materialImportMode: 0
materialName: 0
materialSearch: 1
materialLocation: 1
animations:
legacyGenerateAnimations: 4
bakeSimulation: 0
resampleCurves: 1
optimizeGameObjects: 0
removeConstantScaleCurves: 0
motionNodeName: Rig/B-root
animationImportErrors:
animationImportWarnings:
animationRetargetingWarnings:
animationDoRetargetingWarnings: 0
importAnimatedCustomProperties: 0
importConstraints: 0
animationCompression: 0
animationRotationError: 0.5
animationPositionError: 0.5
animationScaleError: 0.5
animationWrapMode: 0
extraExposedTransformPaths: []
extraUserProperties: []
clipAnimations:
- serializedVersion: 16
name: 'HumanF@Sprint01_ForwardLeft [RM]'
takeName: Untitled
internalID: 3094330708855449807
firstFrame: 0
lastFrame: 16
wrapMode: 0
orientationOffsetY: 0
level: 0
cycleOffset: 0
loop: 0
hasAdditiveReferencePose: 0
loopTime: 1
loopBlend: 0
loopBlendOrientation: 1
loopBlendPositionY: 1
loopBlendPositionXZ: 0
keepOriginalOrientation: 1
keepOriginalPositionY: 1
keepOriginalPositionXZ: 1
heightFromFeet: 0
mirror: 0
bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
curves: []
events: []
transformMask:
- path:
weight: 1
- path: HumanF_BodyMesh
weight: 0
- path: Rig
weight: 1
- path: Rig/B-root
weight: 1
- path: Rig/B-root/B-hips
weight: 1
- path: Rig/B-root/B-hips/B-spine
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck/B-head
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck/B-head/B-jaw
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-handProp.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L/B-indexFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L/B-indexFinger02.L/B-indexFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L/B-middleFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L/B-middleFinger02.L/B-middleFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L/B-pinky02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L/B-pinky02.L/B-pinky03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L/B-ringFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L/B-ringFinger02.L/B-ringFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L/B-thumb02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L/B-thumb02.L/B-thumb03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-handProp.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R/B-indexFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R/B-indexFinger02.R/B-indexFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R/B-middleFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R/B-middleFinger02.R/B-middleFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R/B-pinky02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R/B-pinky02.R/B-pinky03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R/B-ringFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R/B-ringFinger02.R/B-ringFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R/B-thumb02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R/B-thumb02.R/B-thumb03.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L/B-foot.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L/B-foot.L/B-toe.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R/B-foot.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R/B-foot.R/B-toe.R
weight: 1
- path: Rig/B-root/B-spineProxy
weight: 1
maskType: 1
maskSource: {fileID: 31900000, guid: 89527f5525238ee44b3182458d85143a, type: 2}
additiveReferencePoseFrame: 0
isReadable: 0
meshes:
lODScreenPercentages: []
globalScale: 1
meshCompression: 0
addColliders: 0
useSRGBMaterialColor: 1
sortHierarchyByName: 1
importPhysicalCameras: 1
importVisibility: 1
importBlendShapes: 1
importCameras: 1
importLights: 1
nodeNameCollisionStrategy: 1
fileIdsGeneration: 2
swapUVChannels: 0
generateSecondaryUV: 0
useFileUnits: 1
keepQuads: 0
weldVertices: 1
bakeAxisConversion: 0
preserveHierarchy: 1
skinWeightsMode: 0
maxBonesPerVertex: 4
minBoneWeight: 0.001
optimizeBones: 1
meshOptimizationFlags: -1
indexFormat: 0
secondaryUVAngleDistortion: 8
secondaryUVAreaDistortion: 15.000001
secondaryUVHardAngle: 88
secondaryUVMarginMethod: 1
secondaryUVMinLightmapResolution: 40
secondaryUVMinObjectScale: 1
secondaryUVPackMargin: 4
useFileScale: 1
strictVertexDataChecks: 0
tangentSpace:
normalSmoothAngle: 60
normalImportMode: 0
tangentImportMode: 3
normalCalculationMode: 4
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0
blendShapeNormalImportMode: 1
normalSmoothingSource: 0
referencedClips: []
importAnimation: 1
humanDescription:
serializedVersion: 3
human:
- boneName: B-hips
humanName: Hips
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thigh.L
humanName: LeftUpperLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thigh.R
humanName: RightUpperLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shin.L
humanName: LeftLowerLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shin.R
humanName: RightLowerLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-foot.L
humanName: LeftFoot
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-foot.R
humanName: RightFoot
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-spine
humanName: Spine
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-chest
humanName: Chest
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-neck
humanName: Neck
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-head
humanName: Head
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shoulder.L
humanName: LeftShoulder
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shoulder.R
humanName: RightShoulder
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-upperArm.L
humanName: LeftUpperArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-upperArm.R
humanName: RightUpperArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-forearm.L
humanName: LeftLowerArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-forearm.R
humanName: RightLowerArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-hand.L
humanName: LeftHand
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-hand.R
humanName: RightHand
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-toe.L
humanName: LeftToes
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-toe.R
humanName: RightToes
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-jaw
humanName: Jaw
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb01.L
humanName: Left Thumb Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb02.L
humanName: Left Thumb Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb03.L
humanName: Left Thumb Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger01.L
humanName: Left Index Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger02.L
humanName: Left Index Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger03.L
humanName: Left Index Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger01.L
humanName: Left Middle Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger02.L
humanName: Left Middle Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger03.L
humanName: Left Middle Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger01.L
humanName: Left Ring Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger02.L
humanName: Left Ring Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger03.L
humanName: Left Ring Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky01.L
humanName: Left Little Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky02.L
humanName: Left Little Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky03.L
humanName: Left Little Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb01.R
humanName: Right Thumb Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb02.R
humanName: Right Thumb Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb03.R
humanName: Right Thumb Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger01.R
humanName: Right Index Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger02.R
humanName: Right Index Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger03.R
humanName: Right Index Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger01.R
humanName: Right Middle Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger02.R
humanName: Right Middle Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger03.R
humanName: Right Middle Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger01.R
humanName: Right Ring Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger02.R
humanName: Right Ring Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger03.R
humanName: Right Ring Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky01.R
humanName: Right Little Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky02.R
humanName: Right Little Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky03.R
humanName: Right Little Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
skeleton:
- name: Human_DummyModel_F(Clone)
parentName:
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: HumanF_BodyMesh
parentName: Human_DummyModel_F(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Rig
parentName: Human_DummyModel_F(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: B-root
parentName: Rig
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: B-spineProxy
parentName: B-root
position: {x: -0, y: 1.092844, z: 0.029147}
rotation: {x: -0.012905054, y: 0, z: -0, w: 0.99991673}
scale: {x: 1, y: 1.0000001, z: 1.0000001}
- name: B-hips
parentName: B-root
position: {x: -0, y: 0.967712, z: 0.016772}
rotation: {x: 0.04926631, y: 0, z: -0, w: 0.9987857}
scale: {x: 1, y: 1.0000004, z: 1.0000004}
- name: B-spine
parentName: B-hips
position: {x: -0, y: 0.12574437, z: 0.00000011940791}
rotation: {x: -0.062152267, y: 0, z: -0, w: 0.99806666}
scale: {x: 1, y: 0.99999976, z: 0.99999976}
- name: B-chest
parentName: B-spine
position: {x: -0, y: 0.13376056, z: -0.00000077390683}
rotation: {x: -0.02258696, y: 0, z: -0, w: 0.9997449}
scale: {x: 1, y: 0.9999996, z: 0.9999996}
- name: B-shoulder.R
parentName: B-chest
position: {x: -0, y: 0.19125995, z: -0.005656177}
rotation: {x: -0.5165573, y: -0.44464085, z: -0.47738376, w: 0.554588}
scale: {x: 1.0000008, y: 1.0000006, z: 1.0000002}
- name: B-upperArm.R
parentName: B-shoulder.R
position: {x: -0.00000043065853, y: 0.1619337, z: -0.000000866464}
rotation: {x: 0.03406315, y: 0.7090742, z: -0.08345674, w: 0.69934857}
scale: {x: 0.99999976, y: 1, z: 0.99999946}
- name: B-forearm.R
parentName: B-upperArm.R
position: {x: -0.0000005071642, y: 0.23413825, z: 0.0000019611641}
rotation: {x: 0.0013730773, y: -0.00042225965, z: 0.0032032696, w: 0.99999386}
scale: {x: 1.0000001, y: 0.99999964, z: 0.9999996}
- name: B-hand.R
parentName: B-forearm.R
position: {x: -0.000000328232, y: 0.19596381, z: -0.0000008355853}
rotation: {x: 0.013529134, y: 0.7054088, z: 0.032969795, w: 0.70790416}
scale: {x: 0.9999999, y: 1.0000002, z: 1.0000005}
- name: B-handProp.R
parentName: B-hand.R
position: {x: 0.0029605331, y: 0.10533051, z: 0.022608897}
rotation: {x: -0.67608327, y: 0.73659164, z: -0.013668106, w: -0.012545319}
scale: {x: 0.99999964, y: 1.0000005, z: 0.9999996}
- name: B-indexFinger01.R
parentName: B-hand.R
position: {x: -0.036052607, y: 0.13202412, z: -0.0022375023}
rotation: {x: 0.019054495, y: -0.0149580045, z: 0.031315368, w: 0.999216}
scale: {x: 1.0000002, y: 0.99999964, z: 0.9999993}
- name: B-indexFinger02.R
parentName: B-indexFinger01.R
position: {x: 0.00000021708313, y: 0.046758045, z: -0.0000005285747}
rotation: {x: 0.040758472, y: 0.02876925, z: -0.0030862393, w: 0.99875003}
scale: {x: 1, y: 1.0000004, z: 1.0000002}
- name: B-indexFinger03.R
parentName: B-indexFinger02.R
position: {x: 0.000000038075022, y: 0.034652043, z: 0.00000019983679}
rotation: {x: -0.006236443, y: 0.004024028, z: -0.0109188985, w: 0.99991286}
scale: {x: 0.9999999, y: 0.9999999, z: 0.99999964}
- name: B-middleFinger01.R
parentName: B-hand.R
position: {x: -0.00928522, y: 0.1318378, z: -0.0089382}
rotation: {x: -0.004700204, y: -0.0032572027, z: -0.001801642, w: 0.99998206}
scale: {x: 1.0000006, y: 0.9999997, z: 0.99999917}
- name: B-middleFinger02.R
parentName: B-middleFinger01.R
position: {x: -0.0000003849299, y: 0.048716273, z: -0.0000001691299}
rotation: {x: 0.039366316, y: 0.04573892, z: 0.00377753, w: 0.9981703}
scale: {x: 0.9999997, y: 1.0000004, z: 1}
- name: B-middleFinger03.R
parentName: B-middleFinger02.R
position: {x: -0.00000039262213, y: 0.035888083, z: 0.00000029152696}
rotation: {x: 0.0049846717, y: -0.02122791, z: -0.0063242065, w: 0.99974227}
scale: {x: 0.99999964, y: 0.99999994, z: 1.0000002}
- name: B-ringFinger01.R
parentName: B-hand.R
position: {x: 0.016020812, y: 0.1283572, z: -0.005707851}
rotation: {x: -0.0071167736, y: 0.0017728558, z: -0.036400504, w: 0.9993104}
scale: {x: 1.0000005, y: 0.9999992, z: 0.9999996}
- name: B-ringFinger02.R
parentName: B-ringFinger01.R
position: {x: 0.00000047158898, y: 0.045192316, z: 0.00000021597218}
rotation: {x: 0.037958622, y: -0.0021153935, z: 0.012520862, w: 0.9991986}
scale: {x: 0.99999946, y: 1.0000005, z: 0.9999997}
- name: B-ringFinger03.R
parentName: B-ringFinger02.R
position: {x: -0.0000004720245, y: 0.034694634, z: 0.00000008820079}
rotation: {x: 0.02091165, y: -0.04065229, z: -0.015794862, w: 0.99882966}
scale: {x: 1.0000002, y: 0.99999976, z: 0.9999997}
- name: B-pinky01.R
parentName: B-hand.R
position: {x: 0.041580904, y: 0.119742304, z: -0.0024299922}
rotation: {x: -0.011731888, y: -0.016481936, z: -0.04421447, w: 0.9988172}
scale: {x: 1.0000002, y: 0.9999994, z: 0.99999917}
- name: B-pinky02.R
parentName: B-pinky01.R
position: {x: 0.0000007804244, y: 0.03832724, z: 0.00000044214514}
rotation: {x: 0.039002027, y: 0.011177708, z: 0.009234122, w: 0.99913394}
scale: {x: 1.0000002, y: 1.0000006, z: 1.0000002}
- name: B-pinky03.R
parentName: B-pinky02.R
position: {x: -0.000000269953, y: 0.03220071, z: -0.0000005856981}
rotation: {x: 0.022101695, y: -0.02182341, z: 0.009210792, w: 0.99947506}
scale: {x: 1.0000005, y: 0.99999994, z: 1.0000007}
- name: B-thumb01.R
parentName: B-hand.R
position: {x: -0.039809253, y: 0.048496302, z: 0.0130518135}
rotation: {x: -0.22471787, y: 0.63045275, z: 0.29821387, w: 0.6805144}
scale: {x: 0.99999946, y: 1.0000002, z: 1.0000005}
- name: B-thumb02.R
parentName: B-thumb01.R
position: {x: 0.00000020260806, y: 0.047178134, z: 0.000000160123}
rotation: {x: 0.038173996, y: 0.013301423, z: -0.008042345, w: 0.9991502}
scale: {x: 1.0000007, y: 0.9999997, z: 0.9999999}
- name: B-thumb03.R
parentName: B-thumb02.R
position: {x: -0.00000069069114, y: 0.03520854, z: 0.00000004046409}
rotation: {x: -0.060352694, y: 0.014396386, z: 0.0074255248, w: 0.9980457}
scale: {x: 0.9999995, y: 1.0000004, z: 1}
- name: B-neck
parentName: B-chest
position: {x: -0, y: 0.27081212, z: 0.0000007058524}
rotation: {x: 0.105346866, y: 0, z: -0, w: 0.99443555}
scale: {x: 1, y: 0.9999997, z: 1.0000007}
- name: B-head
parentName: B-neck
position: {x: -0, y: 0.07409704, z: 0.00000025054106}
rotation: {x: -0.069990024, y: 0, z: -0, w: 0.9975477}
scale: {x: 1, y: 1.0000006, z: 0.99999964}
- name: B-jaw
parentName: B-head
position: {x: -0, y: 0, z: 0}
rotation: {x: 0.70698464, y: 0.000007072379, z: -0.00000706994, w: 0.7072289}
scale: {x: 1, y: 1, z: 1}
- name: B-shoulder.L
parentName: B-chest
position: {x: -0, y: 0.19125995, z: -0.005656177}
rotation: {x: -0.5165571, y: 0.44464028, z: 0.47738382, w: 0.5545886}
scale: {x: 0.9999998, y: 0.9999995, z: 1.0000002}
- name: B-upperArm.L
parentName: B-shoulder.L
position: {x: 0.00000040656337, y: 0.16193385, z: -0.0000008664629}
rotation: {x: 0.033948872, y: -0.70908755, z: 0.08334149, w: 0.69935447}
scale: {x: 0.9999998, y: 1.0000002, z: 0.9999999}
- name: B-forearm.L
parentName: B-upperArm.L
position: {x: 0.000000097359035, y: 0.2341381, z: 0.00000030291466}
rotation: {x: 0.0017385628, y: 0.0004205673, z: -0.0032047313, w: 0.99999326}
scale: {x: 0.99999994, y: 1.0000004, z: 1.0000001}
- name: B-hand.L
parentName: B-forearm.L
position: {x: 0.00000052406216, y: 0.1959644, z: -0.0000011816531}
rotation: {x: 0.013386631, y: -0.70541465, z: -0.032826252, w: 0.7079078}
scale: {x: 0.99999994, y: 0.9999992, z: 0.9999996}
- name: B-handProp.L
parentName: B-hand.L
position: {x: -0.0029615294, y: 0.10533054, z: 0.02260892}
rotation: {x: 0.67608327, y: 0.73659164, z: -0.013668119, w: 0.012545332}
scale: {x: 1.0000006, y: 0.99999946, z: 1.0000006}
- name: B-indexFinger01.L
parentName: B-hand.L
position: {x: 0.03605161, y: 0.13202417, z: -0.0022375062}
rotation: {x: 0.019054513, y: 0.014957919, z: -0.03131587, w: 0.99921596}
scale: {x: 1.0000004, y: 0.9999998, z: 1.0000002}
- name: B-indexFinger02.L
parentName: B-indexFinger01.L
position: {x: 0.00000072554116, y: 0.04675823, z: -0.0000005109258}
rotation: {x: 0.04075494, y: -0.02876944, z: 0.0030826945, w: 0.9987502}
scale: {x: 1.0000001, y: 1.0000002, z: 1.0000002}
- name: B-indexFinger03.L
parentName: B-indexFinger02.L
position: {x: -0.00000009920999, y: 0.034652077, z: 0.00000023013986}
rotation: {x: -0.0062364372, y: -0.004023549, z: 0.010918792, w: 0.99991286}
scale: {x: 0.9999998, y: 1.0000008, z: 0.9999995}
- name: B-middleFinger01.L
parentName: B-hand.L
position: {x: 0.00928522, y: 0.13183793, z: -0.008938214}
rotation: {x: -0.004700207, y: 0.0032570793, z: 0.0018007505, w: 0.99998206}
scale: {x: 1.0000007, y: 0.9999999, z: 1.0000001}
- name: B-middleFinger02.L
parentName: B-middleFinger01.L
position: {x: 0.00000028786184, y: 0.048716314, z: -0.00000017087451}
rotation: {x: 0.039368037, y: -0.045739666, z: -0.0037847473, w: 0.9981702}
scale: {x: 0.99999976, y: 1.000001, z: 1.0000006}
- name: B-middleFinger03.L
parentName: B-middleFinger02.L
position: {x: -0.00000066842983, y: 0.035888, z: 0.00000028642995}
rotation: {x: 0.0049827034, y: 0.021227859, z: 0.0063241003, w: 0.99974227}
scale: {x: 0.9999996, y: 0.99999905, z: 0.99999934}
- name: B-ringFinger01.L
parentName: B-hand.L
position: {x: -0.016021809, y: 0.12835726, z: -0.005707858}
rotation: {x: -0.007116776, y: -0.0017729683, z: 0.036399588, w: 0.99931043}
scale: {x: 1.0000005, y: 1.0000002, z: 1.0000006}
- name: B-ringFinger02.L
parentName: B-ringFinger01.L
position: {x: 0.00000043795694, y: 0.04519233, z: 0.00000021050154}
rotation: {x: 0.037963506, y: 0.0021157071, z: -0.01252746, w: 0.9991984}
scale: {x: 0.9999995, y: 0.99999964, z: 0.9999996}
- name: B-ringFinger03.L
parentName: B-ringFinger02.L
position: {x: 0.00000034561023, y: 0.03469565, z: -0.00000007648653}
rotation: {x: 0.020911071, y: 0.04065225, z: 0.015794758, w: 0.99882966}
scale: {x: 1.0000001, y: 1.0000005, z: 0.9999997}
- name: B-pinky01.L
parentName: B-hand.L
position: {x: -0.041581903, y: 0.119742356, z: -0.0024299957}
rotation: {x: -0.01172906, y: 0.01648238, z: 0.0442254, w: 0.9988167}
scale: {x: 1.0000002, y: 1.0000004, z: 1.0000002}
- name: B-pinky02.L
parentName: B-pinky01.L
position: {x: 0.00000014151807, y: 0.03832722, z: 0.00000047056287}
rotation: {x: 0.039005004, y: -0.011177422, z: -0.009239738, w: 0.99913377}
scale: {x: 1.0000002, y: 0.99999946, z: 1.0000001}
- name: B-pinky03.L
parentName: B-pinky02.L
position: {x: 0.000000233103, y: 0.032200746, z: -0.00000055902217}
rotation: {x: 0.022101717, y: 0.02182328, z: -0.009211465, w: 0.99947506}
scale: {x: 0.9999995, y: 1, z: 0.99999964}
- name: B-thumb01.L
parentName: B-hand.L
position: {x: 0.03980834, y: 0.048495278, z: 0.013051865}
rotation: {x: -0.2247114, y: -0.6304557, z: -0.2982149, w: 0.6805132}
scale: {x: 1.0000005, y: 1, z: 1.0000005}
- name: B-thumb02.L
parentName: B-thumb01.L
position: {x: -0.0000007063521, y: 0.047179468, z: -0.00000013365789}
rotation: {x: 0.038171936, y: -0.013301728, z: 0.008042519, w: 0.9991503}
scale: {x: 1.0000004, y: 1, z: 0.9999994}
- name: B-thumb03.L
parentName: B-thumb02.L
position: {x: 0.0000007190916, y: 0.035208564, z: 0.00000017922088}
rotation: {x: -0.06035389, y: -0.014396597, z: -0.007425322, w: 0.9980456}
scale: {x: 0.9999992, y: 0.99999994, z: 1.0000001}
- name: B-thigh.L
parentName: B-hips
position: {x: -0.096950985, y: -0.05446949, z: 0.0020414153}
rotation: {x: 0.9977441, y: 0.011110197, z: -0.0039620763, w: 0.066088475}
scale: {x: 1.0000002, y: 0.9999997, z: 1.000001}
- name: B-shin.L
parentName: B-thigh.L
position: {x: 0.00000018468991, y: 0.41111633, z: 0.0000005281011}
rotation: {x: 0.067057244, y: -0.00057845906, z: 0.011617889, w: 0.9976813}
scale: {x: 0.9999997, y: 1.0000002, z: 0.99999964}
- name: B-foot.L
parentName: B-shin.L
position: {x: -0.00000017405802, y: 0.3880767, z: -0.00000019306846}
rotation: {x: -0.5354999, y: 0.004330197, z: 0.0016612022, w: 0.84452266}
scale: {x: 1.0000001, y: 0.9999997, z: 0.99999976}
- name: B-toe.L
parentName: B-foot.L
position: {x: -0.00000027025197, y: 0.17254004, z: -0.000000117418054}
rotation: {x: 0.000012936387, y: 0.9622731, z: -0.27208534, w: 0.00017343421}
scale: {x: 1, y: 1.0000018, z: 0.999999}
- name: B-thigh.R
parentName: B-hips
position: {x: 0.096950985, y: -0.05446959, z: 0.0020404202}
rotation: {x: 0.9977441, y: -0.011109428, z: 0.003967029, w: 0.066088304}
scale: {x: 1.0000004, y: 0.99999976, z: 1.000008}
- name: B-shin.R
parentName: B-thigh.R
position: {x: 0.0000005496826, y: 0.41111633, z: -0.00000065481464}
rotation: {x: 0.06705632, y: 0.0005783735, z: -0.011616509, w: 0.99768144}
scale: {x: 0.9999997, y: 1.0000002, z: 1.0000007}
- name: B-foot.R
parentName: B-shin.R
position: {x: -0.00000044263592, y: 0.3880767, z: 0.000000107811644}
rotation: {x: -0.53550065, y: -0.0043338453, z: -0.0016630876, w: 0.84452206}
scale: {x: 1, y: 0.9999993, z: 0.99999994}
- name: B-toe.R
parentName: B-foot.R
position: {x: 0.00000074386196, y: 0.17254034, z: 0.00000017937037}
rotation: {x: -0.000012542016, y: 0.96227294, z: -0.27208585, w: -0.00017487761}
scale: {x: 1, y: 1.0000029, z: 0.999997}
armTwist: 0.5
foreArmTwist: 0.5
upperLegTwist: 0.5
legTwist: 0.5
armStretch: 0.05
legStretch: 0.05
feetSpacing: 0
globalScale: 1
rootMotionBoneName:
hasTranslationDoF: 0
hasExtraRoot: 0
skeletonHasParents: 1
lastHumanDescriptionAvatarSource: {fileID: 9000000, guid: 1841c298173cdad4db8df8602c8f1c8d,
type: 3}
autoGenerateAvatarMappingIfUnspecified: 1
animationType: 3
humanoidOversampling: 1
avatarSetup: 2
addHumanoidExtraRootOnlyWhenUsingAvatar: 1
importBlendShapeDeformPercent: 1
remapMaterialsIfMaterialImportModeIsNone: 0
additionalBone: 0
userData:
assetBundleName:
assetBundleVariant:
AssetOrigin:
serializedVersion: 1
productId: 154271
packageName: Human Basic Motions FREE
packageVersion: 2.4.2
assetPath: Assets/Kevin Iglesias/Human Animations/Animations/Female/Movement/Sprint/RootMotion/HumanF@Sprint01_ForwardLeft
[RM].fbx
uploadId: 908942

View file

@ -1,974 +0,0 @@
fileFormatVersion: 2
guid: 82bf8a2b215c9d7408d4dcf081f8f622
ModelImporter:
serializedVersion: 22200
internalIDToNameTable: []
externalObjects: {}
materials:
materialImportMode: 0
materialName: 0
materialSearch: 1
materialLocation: 1
animations:
legacyGenerateAnimations: 4
bakeSimulation: 0
resampleCurves: 1
optimizeGameObjects: 0
removeConstantScaleCurves: 0
motionNodeName: Rig/B-root
animationImportErrors:
animationImportWarnings:
animationRetargetingWarnings:
animationDoRetargetingWarnings: 0
importAnimatedCustomProperties: 0
importConstraints: 0
animationCompression: 0
animationRotationError: 0.5
animationPositionError: 0.5
animationScaleError: 0.5
animationWrapMode: 0
extraExposedTransformPaths: []
extraUserProperties: []
clipAnimations:
- serializedVersion: 16
name: 'HumanF@Sprint01_ForwardRight [RM]'
takeName: Untitled
internalID: 3094330708855449807
firstFrame: 0
lastFrame: 16
wrapMode: 0
orientationOffsetY: 0
level: 0
cycleOffset: 0
loop: 0
hasAdditiveReferencePose: 0
loopTime: 1
loopBlend: 0
loopBlendOrientation: 1
loopBlendPositionY: 1
loopBlendPositionXZ: 0
keepOriginalOrientation: 1
keepOriginalPositionY: 1
keepOriginalPositionXZ: 1
heightFromFeet: 0
mirror: 0
bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
curves: []
events: []
transformMask:
- path:
weight: 1
- path: HumanF_BodyMesh
weight: 0
- path: Rig
weight: 1
- path: Rig/B-root
weight: 1
- path: Rig/B-root/B-hips
weight: 1
- path: Rig/B-root/B-hips/B-spine
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck/B-head
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck/B-head/B-jaw
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-handProp.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L/B-indexFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L/B-indexFinger02.L/B-indexFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L/B-middleFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L/B-middleFinger02.L/B-middleFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L/B-pinky02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L/B-pinky02.L/B-pinky03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L/B-ringFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L/B-ringFinger02.L/B-ringFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L/B-thumb02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L/B-thumb02.L/B-thumb03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-handProp.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R/B-indexFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R/B-indexFinger02.R/B-indexFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R/B-middleFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R/B-middleFinger02.R/B-middleFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R/B-pinky02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R/B-pinky02.R/B-pinky03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R/B-ringFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R/B-ringFinger02.R/B-ringFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R/B-thumb02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R/B-thumb02.R/B-thumb03.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L/B-foot.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L/B-foot.L/B-toe.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R/B-foot.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R/B-foot.R/B-toe.R
weight: 1
- path: Rig/B-root/B-spineProxy
weight: 1
maskType: 1
maskSource: {fileID: 31900000, guid: 89527f5525238ee44b3182458d85143a, type: 2}
additiveReferencePoseFrame: 0
isReadable: 0
meshes:
lODScreenPercentages: []
globalScale: 1
meshCompression: 0
addColliders: 0
useSRGBMaterialColor: 1
sortHierarchyByName: 1
importPhysicalCameras: 1
importVisibility: 1
importBlendShapes: 1
importCameras: 1
importLights: 1
nodeNameCollisionStrategy: 1
fileIdsGeneration: 2
swapUVChannels: 0
generateSecondaryUV: 0
useFileUnits: 1
keepQuads: 0
weldVertices: 1
bakeAxisConversion: 0
preserveHierarchy: 1
skinWeightsMode: 0
maxBonesPerVertex: 4
minBoneWeight: 0.001
optimizeBones: 1
meshOptimizationFlags: -1
indexFormat: 0
secondaryUVAngleDistortion: 8
secondaryUVAreaDistortion: 15.000001
secondaryUVHardAngle: 88
secondaryUVMarginMethod: 1
secondaryUVMinLightmapResolution: 40
secondaryUVMinObjectScale: 1
secondaryUVPackMargin: 4
useFileScale: 1
strictVertexDataChecks: 0
tangentSpace:
normalSmoothAngle: 60
normalImportMode: 0
tangentImportMode: 3
normalCalculationMode: 4
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0
blendShapeNormalImportMode: 1
normalSmoothingSource: 0
referencedClips: []
importAnimation: 1
humanDescription:
serializedVersion: 3
human:
- boneName: B-hips
humanName: Hips
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thigh.L
humanName: LeftUpperLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thigh.R
humanName: RightUpperLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shin.L
humanName: LeftLowerLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shin.R
humanName: RightLowerLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-foot.L
humanName: LeftFoot
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-foot.R
humanName: RightFoot
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-spine
humanName: Spine
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-chest
humanName: Chest
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-neck
humanName: Neck
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-head
humanName: Head
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shoulder.L
humanName: LeftShoulder
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shoulder.R
humanName: RightShoulder
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-upperArm.L
humanName: LeftUpperArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-upperArm.R
humanName: RightUpperArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-forearm.L
humanName: LeftLowerArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-forearm.R
humanName: RightLowerArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-hand.L
humanName: LeftHand
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-hand.R
humanName: RightHand
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-toe.L
humanName: LeftToes
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-toe.R
humanName: RightToes
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-jaw
humanName: Jaw
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb01.L
humanName: Left Thumb Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb02.L
humanName: Left Thumb Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb03.L
humanName: Left Thumb Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger01.L
humanName: Left Index Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger02.L
humanName: Left Index Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger03.L
humanName: Left Index Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger01.L
humanName: Left Middle Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger02.L
humanName: Left Middle Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger03.L
humanName: Left Middle Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger01.L
humanName: Left Ring Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger02.L
humanName: Left Ring Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger03.L
humanName: Left Ring Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky01.L
humanName: Left Little Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky02.L
humanName: Left Little Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky03.L
humanName: Left Little Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb01.R
humanName: Right Thumb Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb02.R
humanName: Right Thumb Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb03.R
humanName: Right Thumb Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger01.R
humanName: Right Index Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger02.R
humanName: Right Index Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger03.R
humanName: Right Index Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger01.R
humanName: Right Middle Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger02.R
humanName: Right Middle Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger03.R
humanName: Right Middle Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger01.R
humanName: Right Ring Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger02.R
humanName: Right Ring Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger03.R
humanName: Right Ring Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky01.R
humanName: Right Little Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky02.R
humanName: Right Little Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky03.R
humanName: Right Little Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
skeleton:
- name: Human_DummyModel_F(Clone)
parentName:
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: HumanF_BodyMesh
parentName: Human_DummyModel_F(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Rig
parentName: Human_DummyModel_F(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: B-root
parentName: Rig
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: B-spineProxy
parentName: B-root
position: {x: -0, y: 1.092844, z: 0.029147}
rotation: {x: -0.012905054, y: 0, z: -0, w: 0.99991673}
scale: {x: 1, y: 1.0000001, z: 1.0000001}
- name: B-hips
parentName: B-root
position: {x: -0, y: 0.967712, z: 0.016772}
rotation: {x: 0.04926631, y: 0, z: -0, w: 0.9987857}
scale: {x: 1, y: 1.0000004, z: 1.0000004}
- name: B-spine
parentName: B-hips
position: {x: -0, y: 0.12574437, z: 0.00000011940791}
rotation: {x: -0.062152267, y: 0, z: -0, w: 0.99806666}
scale: {x: 1, y: 0.99999976, z: 0.99999976}
- name: B-chest
parentName: B-spine
position: {x: -0, y: 0.13376056, z: -0.00000077390683}
rotation: {x: -0.02258696, y: 0, z: -0, w: 0.9997449}
scale: {x: 1, y: 0.9999996, z: 0.9999996}
- name: B-shoulder.R
parentName: B-chest
position: {x: -0, y: 0.19125995, z: -0.005656177}
rotation: {x: -0.5165573, y: -0.44464085, z: -0.47738376, w: 0.554588}
scale: {x: 1.0000008, y: 1.0000006, z: 1.0000002}
- name: B-upperArm.R
parentName: B-shoulder.R
position: {x: -0.00000043065853, y: 0.1619337, z: -0.000000866464}
rotation: {x: 0.03406315, y: 0.7090742, z: -0.08345674, w: 0.69934857}
scale: {x: 0.99999976, y: 1, z: 0.99999946}
- name: B-forearm.R
parentName: B-upperArm.R
position: {x: -0.0000005071642, y: 0.23413825, z: 0.0000019611641}
rotation: {x: 0.0013730773, y: -0.00042225965, z: 0.0032032696, w: 0.99999386}
scale: {x: 1.0000001, y: 0.99999964, z: 0.9999996}
- name: B-hand.R
parentName: B-forearm.R
position: {x: -0.000000328232, y: 0.19596381, z: -0.0000008355853}
rotation: {x: 0.013529134, y: 0.7054088, z: 0.032969795, w: 0.70790416}
scale: {x: 0.9999999, y: 1.0000002, z: 1.0000005}
- name: B-handProp.R
parentName: B-hand.R
position: {x: 0.0029605331, y: 0.10533051, z: 0.022608897}
rotation: {x: -0.67608327, y: 0.73659164, z: -0.013668106, w: -0.012545319}
scale: {x: 0.99999964, y: 1.0000005, z: 0.9999996}
- name: B-indexFinger01.R
parentName: B-hand.R
position: {x: -0.036052607, y: 0.13202412, z: -0.0022375023}
rotation: {x: 0.019054495, y: -0.0149580045, z: 0.031315368, w: 0.999216}
scale: {x: 1.0000002, y: 0.99999964, z: 0.9999993}
- name: B-indexFinger02.R
parentName: B-indexFinger01.R
position: {x: 0.00000021708313, y: 0.046758045, z: -0.0000005285747}
rotation: {x: 0.040758472, y: 0.02876925, z: -0.0030862393, w: 0.99875003}
scale: {x: 1, y: 1.0000004, z: 1.0000002}
- name: B-indexFinger03.R
parentName: B-indexFinger02.R
position: {x: 0.000000038075022, y: 0.034652043, z: 0.00000019983679}
rotation: {x: -0.006236443, y: 0.004024028, z: -0.0109188985, w: 0.99991286}
scale: {x: 0.9999999, y: 0.9999999, z: 0.99999964}
- name: B-middleFinger01.R
parentName: B-hand.R
position: {x: -0.00928522, y: 0.1318378, z: -0.0089382}
rotation: {x: -0.004700204, y: -0.0032572027, z: -0.001801642, w: 0.99998206}
scale: {x: 1.0000006, y: 0.9999997, z: 0.99999917}
- name: B-middleFinger02.R
parentName: B-middleFinger01.R
position: {x: -0.0000003849299, y: 0.048716273, z: -0.0000001691299}
rotation: {x: 0.039366316, y: 0.04573892, z: 0.00377753, w: 0.9981703}
scale: {x: 0.9999997, y: 1.0000004, z: 1}
- name: B-middleFinger03.R
parentName: B-middleFinger02.R
position: {x: -0.00000039262213, y: 0.035888083, z: 0.00000029152696}
rotation: {x: 0.0049846717, y: -0.02122791, z: -0.0063242065, w: 0.99974227}
scale: {x: 0.99999964, y: 0.99999994, z: 1.0000002}
- name: B-ringFinger01.R
parentName: B-hand.R
position: {x: 0.016020812, y: 0.1283572, z: -0.005707851}
rotation: {x: -0.0071167736, y: 0.0017728558, z: -0.036400504, w: 0.9993104}
scale: {x: 1.0000005, y: 0.9999992, z: 0.9999996}
- name: B-ringFinger02.R
parentName: B-ringFinger01.R
position: {x: 0.00000047158898, y: 0.045192316, z: 0.00000021597218}
rotation: {x: 0.037958622, y: -0.0021153935, z: 0.012520862, w: 0.9991986}
scale: {x: 0.99999946, y: 1.0000005, z: 0.9999997}
- name: B-ringFinger03.R
parentName: B-ringFinger02.R
position: {x: -0.0000004720245, y: 0.034694634, z: 0.00000008820079}
rotation: {x: 0.02091165, y: -0.04065229, z: -0.015794862, w: 0.99882966}
scale: {x: 1.0000002, y: 0.99999976, z: 0.9999997}
- name: B-pinky01.R
parentName: B-hand.R
position: {x: 0.041580904, y: 0.119742304, z: -0.0024299922}
rotation: {x: -0.011731888, y: -0.016481936, z: -0.04421447, w: 0.9988172}
scale: {x: 1.0000002, y: 0.9999994, z: 0.99999917}
- name: B-pinky02.R
parentName: B-pinky01.R
position: {x: 0.0000007804244, y: 0.03832724, z: 0.00000044214514}
rotation: {x: 0.039002027, y: 0.011177708, z: 0.009234122, w: 0.99913394}
scale: {x: 1.0000002, y: 1.0000006, z: 1.0000002}
- name: B-pinky03.R
parentName: B-pinky02.R
position: {x: -0.000000269953, y: 0.03220071, z: -0.0000005856981}
rotation: {x: 0.022101695, y: -0.02182341, z: 0.009210792, w: 0.99947506}
scale: {x: 1.0000005, y: 0.99999994, z: 1.0000007}
- name: B-thumb01.R
parentName: B-hand.R
position: {x: -0.039809253, y: 0.048496302, z: 0.0130518135}
rotation: {x: -0.22471787, y: 0.63045275, z: 0.29821387, w: 0.6805144}
scale: {x: 0.99999946, y: 1.0000002, z: 1.0000005}
- name: B-thumb02.R
parentName: B-thumb01.R
position: {x: 0.00000020260806, y: 0.047178134, z: 0.000000160123}
rotation: {x: 0.038173996, y: 0.013301423, z: -0.008042345, w: 0.9991502}
scale: {x: 1.0000007, y: 0.9999997, z: 0.9999999}
- name: B-thumb03.R
parentName: B-thumb02.R
position: {x: -0.00000069069114, y: 0.03520854, z: 0.00000004046409}
rotation: {x: -0.060352694, y: 0.014396386, z: 0.0074255248, w: 0.9980457}
scale: {x: 0.9999995, y: 1.0000004, z: 1}
- name: B-neck
parentName: B-chest
position: {x: -0, y: 0.27081212, z: 0.0000007058524}
rotation: {x: 0.105346866, y: 0, z: -0, w: 0.99443555}
scale: {x: 1, y: 0.9999997, z: 1.0000007}
- name: B-head
parentName: B-neck
position: {x: -0, y: 0.07409704, z: 0.00000025054106}
rotation: {x: -0.069990024, y: 0, z: -0, w: 0.9975477}
scale: {x: 1, y: 1.0000006, z: 0.99999964}
- name: B-jaw
parentName: B-head
position: {x: -0, y: 0, z: 0}
rotation: {x: 0.70698464, y: 0.000007072379, z: -0.00000706994, w: 0.7072289}
scale: {x: 1, y: 1, z: 1}
- name: B-shoulder.L
parentName: B-chest
position: {x: -0, y: 0.19125995, z: -0.005656177}
rotation: {x: -0.5165571, y: 0.44464028, z: 0.47738382, w: 0.5545886}
scale: {x: 0.9999998, y: 0.9999995, z: 1.0000002}
- name: B-upperArm.L
parentName: B-shoulder.L
position: {x: 0.00000040656337, y: 0.16193385, z: -0.0000008664629}
rotation: {x: 0.033948872, y: -0.70908755, z: 0.08334149, w: 0.69935447}
scale: {x: 0.9999998, y: 1.0000002, z: 0.9999999}
- name: B-forearm.L
parentName: B-upperArm.L
position: {x: 0.000000097359035, y: 0.2341381, z: 0.00000030291466}
rotation: {x: 0.0017385628, y: 0.0004205673, z: -0.0032047313, w: 0.99999326}
scale: {x: 0.99999994, y: 1.0000004, z: 1.0000001}
- name: B-hand.L
parentName: B-forearm.L
position: {x: 0.00000052406216, y: 0.1959644, z: -0.0000011816531}
rotation: {x: 0.013386631, y: -0.70541465, z: -0.032826252, w: 0.7079078}
scale: {x: 0.99999994, y: 0.9999992, z: 0.9999996}
- name: B-handProp.L
parentName: B-hand.L
position: {x: -0.0029615294, y: 0.10533054, z: 0.02260892}
rotation: {x: 0.67608327, y: 0.73659164, z: -0.013668119, w: 0.012545332}
scale: {x: 1.0000006, y: 0.99999946, z: 1.0000006}
- name: B-indexFinger01.L
parentName: B-hand.L
position: {x: 0.03605161, y: 0.13202417, z: -0.0022375062}
rotation: {x: 0.019054513, y: 0.014957919, z: -0.03131587, w: 0.99921596}
scale: {x: 1.0000004, y: 0.9999998, z: 1.0000002}
- name: B-indexFinger02.L
parentName: B-indexFinger01.L
position: {x: 0.00000072554116, y: 0.04675823, z: -0.0000005109258}
rotation: {x: 0.04075494, y: -0.02876944, z: 0.0030826945, w: 0.9987502}
scale: {x: 1.0000001, y: 1.0000002, z: 1.0000002}
- name: B-indexFinger03.L
parentName: B-indexFinger02.L
position: {x: -0.00000009920999, y: 0.034652077, z: 0.00000023013986}
rotation: {x: -0.0062364372, y: -0.004023549, z: 0.010918792, w: 0.99991286}
scale: {x: 0.9999998, y: 1.0000008, z: 0.9999995}
- name: B-middleFinger01.L
parentName: B-hand.L
position: {x: 0.00928522, y: 0.13183793, z: -0.008938214}
rotation: {x: -0.004700207, y: 0.0032570793, z: 0.0018007505, w: 0.99998206}
scale: {x: 1.0000007, y: 0.9999999, z: 1.0000001}
- name: B-middleFinger02.L
parentName: B-middleFinger01.L
position: {x: 0.00000028786184, y: 0.048716314, z: -0.00000017087451}
rotation: {x: 0.039368037, y: -0.045739666, z: -0.0037847473, w: 0.9981702}
scale: {x: 0.99999976, y: 1.000001, z: 1.0000006}
- name: B-middleFinger03.L
parentName: B-middleFinger02.L
position: {x: -0.00000066842983, y: 0.035888, z: 0.00000028642995}
rotation: {x: 0.0049827034, y: 0.021227859, z: 0.0063241003, w: 0.99974227}
scale: {x: 0.9999996, y: 0.99999905, z: 0.99999934}
- name: B-ringFinger01.L
parentName: B-hand.L
position: {x: -0.016021809, y: 0.12835726, z: -0.005707858}
rotation: {x: -0.007116776, y: -0.0017729683, z: 0.036399588, w: 0.99931043}
scale: {x: 1.0000005, y: 1.0000002, z: 1.0000006}
- name: B-ringFinger02.L
parentName: B-ringFinger01.L
position: {x: 0.00000043795694, y: 0.04519233, z: 0.00000021050154}
rotation: {x: 0.037963506, y: 0.0021157071, z: -0.01252746, w: 0.9991984}
scale: {x: 0.9999995, y: 0.99999964, z: 0.9999996}
- name: B-ringFinger03.L
parentName: B-ringFinger02.L
position: {x: 0.00000034561023, y: 0.03469565, z: -0.00000007648653}
rotation: {x: 0.020911071, y: 0.04065225, z: 0.015794758, w: 0.99882966}
scale: {x: 1.0000001, y: 1.0000005, z: 0.9999997}
- name: B-pinky01.L
parentName: B-hand.L
position: {x: -0.041581903, y: 0.119742356, z: -0.0024299957}
rotation: {x: -0.01172906, y: 0.01648238, z: 0.0442254, w: 0.9988167}
scale: {x: 1.0000002, y: 1.0000004, z: 1.0000002}
- name: B-pinky02.L
parentName: B-pinky01.L
position: {x: 0.00000014151807, y: 0.03832722, z: 0.00000047056287}
rotation: {x: 0.039005004, y: -0.011177422, z: -0.009239738, w: 0.99913377}
scale: {x: 1.0000002, y: 0.99999946, z: 1.0000001}
- name: B-pinky03.L
parentName: B-pinky02.L
position: {x: 0.000000233103, y: 0.032200746, z: -0.00000055902217}
rotation: {x: 0.022101717, y: 0.02182328, z: -0.009211465, w: 0.99947506}
scale: {x: 0.9999995, y: 1, z: 0.99999964}
- name: B-thumb01.L
parentName: B-hand.L
position: {x: 0.03980834, y: 0.048495278, z: 0.013051865}
rotation: {x: -0.2247114, y: -0.6304557, z: -0.2982149, w: 0.6805132}
scale: {x: 1.0000005, y: 1, z: 1.0000005}
- name: B-thumb02.L
parentName: B-thumb01.L
position: {x: -0.0000007063521, y: 0.047179468, z: -0.00000013365789}
rotation: {x: 0.038171936, y: -0.013301728, z: 0.008042519, w: 0.9991503}
scale: {x: 1.0000004, y: 1, z: 0.9999994}
- name: B-thumb03.L
parentName: B-thumb02.L
position: {x: 0.0000007190916, y: 0.035208564, z: 0.00000017922088}
rotation: {x: -0.06035389, y: -0.014396597, z: -0.007425322, w: 0.9980456}
scale: {x: 0.9999992, y: 0.99999994, z: 1.0000001}
- name: B-thigh.L
parentName: B-hips
position: {x: -0.096950985, y: -0.05446949, z: 0.0020414153}
rotation: {x: 0.9977441, y: 0.011110197, z: -0.0039620763, w: 0.066088475}
scale: {x: 1.0000002, y: 0.9999997, z: 1.000001}
- name: B-shin.L
parentName: B-thigh.L
position: {x: 0.00000018468991, y: 0.41111633, z: 0.0000005281011}
rotation: {x: 0.067057244, y: -0.00057845906, z: 0.011617889, w: 0.9976813}
scale: {x: 0.9999997, y: 1.0000002, z: 0.99999964}
- name: B-foot.L
parentName: B-shin.L
position: {x: -0.00000017405802, y: 0.3880767, z: -0.00000019306846}
rotation: {x: -0.5354999, y: 0.004330197, z: 0.0016612022, w: 0.84452266}
scale: {x: 1.0000001, y: 0.9999997, z: 0.99999976}
- name: B-toe.L
parentName: B-foot.L
position: {x: -0.00000027025197, y: 0.17254004, z: -0.000000117418054}
rotation: {x: 0.000012936387, y: 0.9622731, z: -0.27208534, w: 0.00017343421}
scale: {x: 1, y: 1.0000018, z: 0.999999}
- name: B-thigh.R
parentName: B-hips
position: {x: 0.096950985, y: -0.05446959, z: 0.0020404202}
rotation: {x: 0.9977441, y: -0.011109428, z: 0.003967029, w: 0.066088304}
scale: {x: 1.0000004, y: 0.99999976, z: 1.000008}
- name: B-shin.R
parentName: B-thigh.R
position: {x: 0.0000005496826, y: 0.41111633, z: -0.00000065481464}
rotation: {x: 0.06705632, y: 0.0005783735, z: -0.011616509, w: 0.99768144}
scale: {x: 0.9999997, y: 1.0000002, z: 1.0000007}
- name: B-foot.R
parentName: B-shin.R
position: {x: -0.00000044263592, y: 0.3880767, z: 0.000000107811644}
rotation: {x: -0.53550065, y: -0.0043338453, z: -0.0016630876, w: 0.84452206}
scale: {x: 1, y: 0.9999993, z: 0.99999994}
- name: B-toe.R
parentName: B-foot.R
position: {x: 0.00000074386196, y: 0.17254034, z: 0.00000017937037}
rotation: {x: -0.000012542016, y: 0.96227294, z: -0.27208585, w: -0.00017487761}
scale: {x: 1, y: 1.0000029, z: 0.999997}
armTwist: 0.5
foreArmTwist: 0.5
upperLegTwist: 0.5
legTwist: 0.5
armStretch: 0.05
legStretch: 0.05
feetSpacing: 0
globalScale: 1
rootMotionBoneName:
hasTranslationDoF: 0
hasExtraRoot: 0
skeletonHasParents: 1
lastHumanDescriptionAvatarSource: {fileID: 9000000, guid: 1841c298173cdad4db8df8602c8f1c8d,
type: 3}
autoGenerateAvatarMappingIfUnspecified: 1
animationType: 3
humanoidOversampling: 1
avatarSetup: 2
addHumanoidExtraRootOnlyWhenUsingAvatar: 1
importBlendShapeDeformPercent: 1
remapMaterialsIfMaterialImportModeIsNone: 0
additionalBone: 0
userData:
assetBundleName:
assetBundleVariant:
AssetOrigin:
serializedVersion: 1
productId: 154271
packageName: Human Basic Motions FREE
packageVersion: 2.4.2
assetPath: Assets/Kevin Iglesias/Human Animations/Animations/Female/Movement/Sprint/RootMotion/HumanF@Sprint01_ForwardRight
[RM].fbx
uploadId: 908942

View file

@ -1,974 +0,0 @@
fileFormatVersion: 2
guid: 837c8bc570ba0e24e9f7110924f142df
ModelImporter:
serializedVersion: 22200
internalIDToNameTable: []
externalObjects: {}
materials:
materialImportMode: 0
materialName: 0
materialSearch: 1
materialLocation: 1
animations:
legacyGenerateAnimations: 4
bakeSimulation: 0
resampleCurves: 1
optimizeGameObjects: 0
removeConstantScaleCurves: 0
motionNodeName: Rig/B-root
animationImportErrors:
animationImportWarnings:
animationRetargetingWarnings:
animationDoRetargetingWarnings: 0
importAnimatedCustomProperties: 0
importConstraints: 0
animationCompression: 0
animationRotationError: 0.5
animationPositionError: 0.5
animationScaleError: 0.5
animationWrapMode: 0
extraExposedTransformPaths: []
extraUserProperties: []
clipAnimations:
- serializedVersion: 16
name: 'HumanF@Sprint01_Left [RM]'
takeName: Untitled
internalID: 3094330708855449807
firstFrame: 0
lastFrame: 16
wrapMode: 0
orientationOffsetY: 0
level: 0
cycleOffset: 0
loop: 0
hasAdditiveReferencePose: 0
loopTime: 1
loopBlend: 0
loopBlendOrientation: 1
loopBlendPositionY: 1
loopBlendPositionXZ: 0
keepOriginalOrientation: 1
keepOriginalPositionY: 1
keepOriginalPositionXZ: 1
heightFromFeet: 0
mirror: 0
bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
curves: []
events: []
transformMask:
- path:
weight: 1
- path: HumanF_BodyMesh
weight: 0
- path: Rig
weight: 1
- path: Rig/B-root
weight: 1
- path: Rig/B-root/B-hips
weight: 1
- path: Rig/B-root/B-hips/B-spine
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck/B-head
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck/B-head/B-jaw
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-handProp.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L/B-indexFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L/B-indexFinger02.L/B-indexFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L/B-middleFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L/B-middleFinger02.L/B-middleFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L/B-pinky02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L/B-pinky02.L/B-pinky03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L/B-ringFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L/B-ringFinger02.L/B-ringFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L/B-thumb02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L/B-thumb02.L/B-thumb03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-handProp.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R/B-indexFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R/B-indexFinger02.R/B-indexFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R/B-middleFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R/B-middleFinger02.R/B-middleFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R/B-pinky02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R/B-pinky02.R/B-pinky03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R/B-ringFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R/B-ringFinger02.R/B-ringFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R/B-thumb02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R/B-thumb02.R/B-thumb03.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L/B-foot.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L/B-foot.L/B-toe.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R/B-foot.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R/B-foot.R/B-toe.R
weight: 1
- path: Rig/B-root/B-spineProxy
weight: 1
maskType: 1
maskSource: {fileID: 31900000, guid: 89527f5525238ee44b3182458d85143a, type: 2}
additiveReferencePoseFrame: 0
isReadable: 0
meshes:
lODScreenPercentages: []
globalScale: 1
meshCompression: 0
addColliders: 0
useSRGBMaterialColor: 1
sortHierarchyByName: 1
importPhysicalCameras: 1
importVisibility: 1
importBlendShapes: 1
importCameras: 1
importLights: 1
nodeNameCollisionStrategy: 1
fileIdsGeneration: 2
swapUVChannels: 0
generateSecondaryUV: 0
useFileUnits: 1
keepQuads: 0
weldVertices: 1
bakeAxisConversion: 0
preserveHierarchy: 1
skinWeightsMode: 0
maxBonesPerVertex: 4
minBoneWeight: 0.001
optimizeBones: 1
meshOptimizationFlags: -1
indexFormat: 0
secondaryUVAngleDistortion: 8
secondaryUVAreaDistortion: 15.000001
secondaryUVHardAngle: 88
secondaryUVMarginMethod: 1
secondaryUVMinLightmapResolution: 40
secondaryUVMinObjectScale: 1
secondaryUVPackMargin: 4
useFileScale: 1
strictVertexDataChecks: 0
tangentSpace:
normalSmoothAngle: 60
normalImportMode: 0
tangentImportMode: 3
normalCalculationMode: 4
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0
blendShapeNormalImportMode: 1
normalSmoothingSource: 0
referencedClips: []
importAnimation: 1
humanDescription:
serializedVersion: 3
human:
- boneName: B-hips
humanName: Hips
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thigh.L
humanName: LeftUpperLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thigh.R
humanName: RightUpperLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shin.L
humanName: LeftLowerLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shin.R
humanName: RightLowerLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-foot.L
humanName: LeftFoot
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-foot.R
humanName: RightFoot
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-spine
humanName: Spine
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-chest
humanName: Chest
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-neck
humanName: Neck
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-head
humanName: Head
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shoulder.L
humanName: LeftShoulder
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shoulder.R
humanName: RightShoulder
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-upperArm.L
humanName: LeftUpperArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-upperArm.R
humanName: RightUpperArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-forearm.L
humanName: LeftLowerArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-forearm.R
humanName: RightLowerArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-hand.L
humanName: LeftHand
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-hand.R
humanName: RightHand
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-toe.L
humanName: LeftToes
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-toe.R
humanName: RightToes
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-jaw
humanName: Jaw
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb01.L
humanName: Left Thumb Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb02.L
humanName: Left Thumb Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb03.L
humanName: Left Thumb Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger01.L
humanName: Left Index Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger02.L
humanName: Left Index Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger03.L
humanName: Left Index Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger01.L
humanName: Left Middle Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger02.L
humanName: Left Middle Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger03.L
humanName: Left Middle Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger01.L
humanName: Left Ring Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger02.L
humanName: Left Ring Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger03.L
humanName: Left Ring Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky01.L
humanName: Left Little Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky02.L
humanName: Left Little Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky03.L
humanName: Left Little Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb01.R
humanName: Right Thumb Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb02.R
humanName: Right Thumb Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb03.R
humanName: Right Thumb Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger01.R
humanName: Right Index Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger02.R
humanName: Right Index Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger03.R
humanName: Right Index Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger01.R
humanName: Right Middle Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger02.R
humanName: Right Middle Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger03.R
humanName: Right Middle Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger01.R
humanName: Right Ring Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger02.R
humanName: Right Ring Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger03.R
humanName: Right Ring Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky01.R
humanName: Right Little Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky02.R
humanName: Right Little Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky03.R
humanName: Right Little Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
skeleton:
- name: Human_DummyModel_F(Clone)
parentName:
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: HumanF_BodyMesh
parentName: Human_DummyModel_F(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Rig
parentName: Human_DummyModel_F(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: B-root
parentName: Rig
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: B-spineProxy
parentName: B-root
position: {x: -0, y: 1.092844, z: 0.029147}
rotation: {x: -0.012905054, y: 0, z: -0, w: 0.99991673}
scale: {x: 1, y: 1.0000001, z: 1.0000001}
- name: B-hips
parentName: B-root
position: {x: -0, y: 0.967712, z: 0.016772}
rotation: {x: 0.04926631, y: 0, z: -0, w: 0.9987857}
scale: {x: 1, y: 1.0000004, z: 1.0000004}
- name: B-spine
parentName: B-hips
position: {x: -0, y: 0.12574437, z: 0.00000011940791}
rotation: {x: -0.062152267, y: 0, z: -0, w: 0.99806666}
scale: {x: 1, y: 0.99999976, z: 0.99999976}
- name: B-chest
parentName: B-spine
position: {x: -0, y: 0.13376056, z: -0.00000077390683}
rotation: {x: -0.02258696, y: 0, z: -0, w: 0.9997449}
scale: {x: 1, y: 0.9999996, z: 0.9999996}
- name: B-shoulder.R
parentName: B-chest
position: {x: -0, y: 0.19125995, z: -0.005656177}
rotation: {x: -0.5165573, y: -0.44464085, z: -0.47738376, w: 0.554588}
scale: {x: 1.0000008, y: 1.0000006, z: 1.0000002}
- name: B-upperArm.R
parentName: B-shoulder.R
position: {x: -0.00000043065853, y: 0.1619337, z: -0.000000866464}
rotation: {x: 0.03406315, y: 0.7090742, z: -0.08345674, w: 0.69934857}
scale: {x: 0.99999976, y: 1, z: 0.99999946}
- name: B-forearm.R
parentName: B-upperArm.R
position: {x: -0.0000005071642, y: 0.23413825, z: 0.0000019611641}
rotation: {x: 0.0013730773, y: -0.00042225965, z: 0.0032032696, w: 0.99999386}
scale: {x: 1.0000001, y: 0.99999964, z: 0.9999996}
- name: B-hand.R
parentName: B-forearm.R
position: {x: -0.000000328232, y: 0.19596381, z: -0.0000008355853}
rotation: {x: 0.013529134, y: 0.7054088, z: 0.032969795, w: 0.70790416}
scale: {x: 0.9999999, y: 1.0000002, z: 1.0000005}
- name: B-handProp.R
parentName: B-hand.R
position: {x: 0.0029605331, y: 0.10533051, z: 0.022608897}
rotation: {x: -0.67608327, y: 0.73659164, z: -0.013668106, w: -0.012545319}
scale: {x: 0.99999964, y: 1.0000005, z: 0.9999996}
- name: B-indexFinger01.R
parentName: B-hand.R
position: {x: -0.036052607, y: 0.13202412, z: -0.0022375023}
rotation: {x: 0.019054495, y: -0.0149580045, z: 0.031315368, w: 0.999216}
scale: {x: 1.0000002, y: 0.99999964, z: 0.9999993}
- name: B-indexFinger02.R
parentName: B-indexFinger01.R
position: {x: 0.00000021708313, y: 0.046758045, z: -0.0000005285747}
rotation: {x: 0.040758472, y: 0.02876925, z: -0.0030862393, w: 0.99875003}
scale: {x: 1, y: 1.0000004, z: 1.0000002}
- name: B-indexFinger03.R
parentName: B-indexFinger02.R
position: {x: 0.000000038075022, y: 0.034652043, z: 0.00000019983679}
rotation: {x: -0.006236443, y: 0.004024028, z: -0.0109188985, w: 0.99991286}
scale: {x: 0.9999999, y: 0.9999999, z: 0.99999964}
- name: B-middleFinger01.R
parentName: B-hand.R
position: {x: -0.00928522, y: 0.1318378, z: -0.0089382}
rotation: {x: -0.004700204, y: -0.0032572027, z: -0.001801642, w: 0.99998206}
scale: {x: 1.0000006, y: 0.9999997, z: 0.99999917}
- name: B-middleFinger02.R
parentName: B-middleFinger01.R
position: {x: -0.0000003849299, y: 0.048716273, z: -0.0000001691299}
rotation: {x: 0.039366316, y: 0.04573892, z: 0.00377753, w: 0.9981703}
scale: {x: 0.9999997, y: 1.0000004, z: 1}
- name: B-middleFinger03.R
parentName: B-middleFinger02.R
position: {x: -0.00000039262213, y: 0.035888083, z: 0.00000029152696}
rotation: {x: 0.0049846717, y: -0.02122791, z: -0.0063242065, w: 0.99974227}
scale: {x: 0.99999964, y: 0.99999994, z: 1.0000002}
- name: B-ringFinger01.R
parentName: B-hand.R
position: {x: 0.016020812, y: 0.1283572, z: -0.005707851}
rotation: {x: -0.0071167736, y: 0.0017728558, z: -0.036400504, w: 0.9993104}
scale: {x: 1.0000005, y: 0.9999992, z: 0.9999996}
- name: B-ringFinger02.R
parentName: B-ringFinger01.R
position: {x: 0.00000047158898, y: 0.045192316, z: 0.00000021597218}
rotation: {x: 0.037958622, y: -0.0021153935, z: 0.012520862, w: 0.9991986}
scale: {x: 0.99999946, y: 1.0000005, z: 0.9999997}
- name: B-ringFinger03.R
parentName: B-ringFinger02.R
position: {x: -0.0000004720245, y: 0.034694634, z: 0.00000008820079}
rotation: {x: 0.02091165, y: -0.04065229, z: -0.015794862, w: 0.99882966}
scale: {x: 1.0000002, y: 0.99999976, z: 0.9999997}
- name: B-pinky01.R
parentName: B-hand.R
position: {x: 0.041580904, y: 0.119742304, z: -0.0024299922}
rotation: {x: -0.011731888, y: -0.016481936, z: -0.04421447, w: 0.9988172}
scale: {x: 1.0000002, y: 0.9999994, z: 0.99999917}
- name: B-pinky02.R
parentName: B-pinky01.R
position: {x: 0.0000007804244, y: 0.03832724, z: 0.00000044214514}
rotation: {x: 0.039002027, y: 0.011177708, z: 0.009234122, w: 0.99913394}
scale: {x: 1.0000002, y: 1.0000006, z: 1.0000002}
- name: B-pinky03.R
parentName: B-pinky02.R
position: {x: -0.000000269953, y: 0.03220071, z: -0.0000005856981}
rotation: {x: 0.022101695, y: -0.02182341, z: 0.009210792, w: 0.99947506}
scale: {x: 1.0000005, y: 0.99999994, z: 1.0000007}
- name: B-thumb01.R
parentName: B-hand.R
position: {x: -0.039809253, y: 0.048496302, z: 0.0130518135}
rotation: {x: -0.22471787, y: 0.63045275, z: 0.29821387, w: 0.6805144}
scale: {x: 0.99999946, y: 1.0000002, z: 1.0000005}
- name: B-thumb02.R
parentName: B-thumb01.R
position: {x: 0.00000020260806, y: 0.047178134, z: 0.000000160123}
rotation: {x: 0.038173996, y: 0.013301423, z: -0.008042345, w: 0.9991502}
scale: {x: 1.0000007, y: 0.9999997, z: 0.9999999}
- name: B-thumb03.R
parentName: B-thumb02.R
position: {x: -0.00000069069114, y: 0.03520854, z: 0.00000004046409}
rotation: {x: -0.060352694, y: 0.014396386, z: 0.0074255248, w: 0.9980457}
scale: {x: 0.9999995, y: 1.0000004, z: 1}
- name: B-neck
parentName: B-chest
position: {x: -0, y: 0.27081212, z: 0.0000007058524}
rotation: {x: 0.105346866, y: 0, z: -0, w: 0.99443555}
scale: {x: 1, y: 0.9999997, z: 1.0000007}
- name: B-head
parentName: B-neck
position: {x: -0, y: 0.07409704, z: 0.00000025054106}
rotation: {x: -0.069990024, y: 0, z: -0, w: 0.9975477}
scale: {x: 1, y: 1.0000006, z: 0.99999964}
- name: B-jaw
parentName: B-head
position: {x: -0, y: 0, z: 0}
rotation: {x: 0.70698464, y: 0.000007072379, z: -0.00000706994, w: 0.7072289}
scale: {x: 1, y: 1, z: 1}
- name: B-shoulder.L
parentName: B-chest
position: {x: -0, y: 0.19125995, z: -0.005656177}
rotation: {x: -0.5165571, y: 0.44464028, z: 0.47738382, w: 0.5545886}
scale: {x: 0.9999998, y: 0.9999995, z: 1.0000002}
- name: B-upperArm.L
parentName: B-shoulder.L
position: {x: 0.00000040656337, y: 0.16193385, z: -0.0000008664629}
rotation: {x: 0.033948872, y: -0.70908755, z: 0.08334149, w: 0.69935447}
scale: {x: 0.9999998, y: 1.0000002, z: 0.9999999}
- name: B-forearm.L
parentName: B-upperArm.L
position: {x: 0.000000097359035, y: 0.2341381, z: 0.00000030291466}
rotation: {x: 0.0017385628, y: 0.0004205673, z: -0.0032047313, w: 0.99999326}
scale: {x: 0.99999994, y: 1.0000004, z: 1.0000001}
- name: B-hand.L
parentName: B-forearm.L
position: {x: 0.00000052406216, y: 0.1959644, z: -0.0000011816531}
rotation: {x: 0.013386631, y: -0.70541465, z: -0.032826252, w: 0.7079078}
scale: {x: 0.99999994, y: 0.9999992, z: 0.9999996}
- name: B-handProp.L
parentName: B-hand.L
position: {x: -0.0029615294, y: 0.10533054, z: 0.02260892}
rotation: {x: 0.67608327, y: 0.73659164, z: -0.013668119, w: 0.012545332}
scale: {x: 1.0000006, y: 0.99999946, z: 1.0000006}
- name: B-indexFinger01.L
parentName: B-hand.L
position: {x: 0.03605161, y: 0.13202417, z: -0.0022375062}
rotation: {x: 0.019054513, y: 0.014957919, z: -0.03131587, w: 0.99921596}
scale: {x: 1.0000004, y: 0.9999998, z: 1.0000002}
- name: B-indexFinger02.L
parentName: B-indexFinger01.L
position: {x: 0.00000072554116, y: 0.04675823, z: -0.0000005109258}
rotation: {x: 0.04075494, y: -0.02876944, z: 0.0030826945, w: 0.9987502}
scale: {x: 1.0000001, y: 1.0000002, z: 1.0000002}
- name: B-indexFinger03.L
parentName: B-indexFinger02.L
position: {x: -0.00000009920999, y: 0.034652077, z: 0.00000023013986}
rotation: {x: -0.0062364372, y: -0.004023549, z: 0.010918792, w: 0.99991286}
scale: {x: 0.9999998, y: 1.0000008, z: 0.9999995}
- name: B-middleFinger01.L
parentName: B-hand.L
position: {x: 0.00928522, y: 0.13183793, z: -0.008938214}
rotation: {x: -0.004700207, y: 0.0032570793, z: 0.0018007505, w: 0.99998206}
scale: {x: 1.0000007, y: 0.9999999, z: 1.0000001}
- name: B-middleFinger02.L
parentName: B-middleFinger01.L
position: {x: 0.00000028786184, y: 0.048716314, z: -0.00000017087451}
rotation: {x: 0.039368037, y: -0.045739666, z: -0.0037847473, w: 0.9981702}
scale: {x: 0.99999976, y: 1.000001, z: 1.0000006}
- name: B-middleFinger03.L
parentName: B-middleFinger02.L
position: {x: -0.00000066842983, y: 0.035888, z: 0.00000028642995}
rotation: {x: 0.0049827034, y: 0.021227859, z: 0.0063241003, w: 0.99974227}
scale: {x: 0.9999996, y: 0.99999905, z: 0.99999934}
- name: B-ringFinger01.L
parentName: B-hand.L
position: {x: -0.016021809, y: 0.12835726, z: -0.005707858}
rotation: {x: -0.007116776, y: -0.0017729683, z: 0.036399588, w: 0.99931043}
scale: {x: 1.0000005, y: 1.0000002, z: 1.0000006}
- name: B-ringFinger02.L
parentName: B-ringFinger01.L
position: {x: 0.00000043795694, y: 0.04519233, z: 0.00000021050154}
rotation: {x: 0.037963506, y: 0.0021157071, z: -0.01252746, w: 0.9991984}
scale: {x: 0.9999995, y: 0.99999964, z: 0.9999996}
- name: B-ringFinger03.L
parentName: B-ringFinger02.L
position: {x: 0.00000034561023, y: 0.03469565, z: -0.00000007648653}
rotation: {x: 0.020911071, y: 0.04065225, z: 0.015794758, w: 0.99882966}
scale: {x: 1.0000001, y: 1.0000005, z: 0.9999997}
- name: B-pinky01.L
parentName: B-hand.L
position: {x: -0.041581903, y: 0.119742356, z: -0.0024299957}
rotation: {x: -0.01172906, y: 0.01648238, z: 0.0442254, w: 0.9988167}
scale: {x: 1.0000002, y: 1.0000004, z: 1.0000002}
- name: B-pinky02.L
parentName: B-pinky01.L
position: {x: 0.00000014151807, y: 0.03832722, z: 0.00000047056287}
rotation: {x: 0.039005004, y: -0.011177422, z: -0.009239738, w: 0.99913377}
scale: {x: 1.0000002, y: 0.99999946, z: 1.0000001}
- name: B-pinky03.L
parentName: B-pinky02.L
position: {x: 0.000000233103, y: 0.032200746, z: -0.00000055902217}
rotation: {x: 0.022101717, y: 0.02182328, z: -0.009211465, w: 0.99947506}
scale: {x: 0.9999995, y: 1, z: 0.99999964}
- name: B-thumb01.L
parentName: B-hand.L
position: {x: 0.03980834, y: 0.048495278, z: 0.013051865}
rotation: {x: -0.2247114, y: -0.6304557, z: -0.2982149, w: 0.6805132}
scale: {x: 1.0000005, y: 1, z: 1.0000005}
- name: B-thumb02.L
parentName: B-thumb01.L
position: {x: -0.0000007063521, y: 0.047179468, z: -0.00000013365789}
rotation: {x: 0.038171936, y: -0.013301728, z: 0.008042519, w: 0.9991503}
scale: {x: 1.0000004, y: 1, z: 0.9999994}
- name: B-thumb03.L
parentName: B-thumb02.L
position: {x: 0.0000007190916, y: 0.035208564, z: 0.00000017922088}
rotation: {x: -0.06035389, y: -0.014396597, z: -0.007425322, w: 0.9980456}
scale: {x: 0.9999992, y: 0.99999994, z: 1.0000001}
- name: B-thigh.L
parentName: B-hips
position: {x: -0.096950985, y: -0.05446949, z: 0.0020414153}
rotation: {x: 0.9977441, y: 0.011110197, z: -0.0039620763, w: 0.066088475}
scale: {x: 1.0000002, y: 0.9999997, z: 1.000001}
- name: B-shin.L
parentName: B-thigh.L
position: {x: 0.00000018468991, y: 0.41111633, z: 0.0000005281011}
rotation: {x: 0.067057244, y: -0.00057845906, z: 0.011617889, w: 0.9976813}
scale: {x: 0.9999997, y: 1.0000002, z: 0.99999964}
- name: B-foot.L
parentName: B-shin.L
position: {x: -0.00000017405802, y: 0.3880767, z: -0.00000019306846}
rotation: {x: -0.5354999, y: 0.004330197, z: 0.0016612022, w: 0.84452266}
scale: {x: 1.0000001, y: 0.9999997, z: 0.99999976}
- name: B-toe.L
parentName: B-foot.L
position: {x: -0.00000027025197, y: 0.17254004, z: -0.000000117418054}
rotation: {x: 0.000012936387, y: 0.9622731, z: -0.27208534, w: 0.00017343421}
scale: {x: 1, y: 1.0000018, z: 0.999999}
- name: B-thigh.R
parentName: B-hips
position: {x: 0.096950985, y: -0.05446959, z: 0.0020404202}
rotation: {x: 0.9977441, y: -0.011109428, z: 0.003967029, w: 0.066088304}
scale: {x: 1.0000004, y: 0.99999976, z: 1.000008}
- name: B-shin.R
parentName: B-thigh.R
position: {x: 0.0000005496826, y: 0.41111633, z: -0.00000065481464}
rotation: {x: 0.06705632, y: 0.0005783735, z: -0.011616509, w: 0.99768144}
scale: {x: 0.9999997, y: 1.0000002, z: 1.0000007}
- name: B-foot.R
parentName: B-shin.R
position: {x: -0.00000044263592, y: 0.3880767, z: 0.000000107811644}
rotation: {x: -0.53550065, y: -0.0043338453, z: -0.0016630876, w: 0.84452206}
scale: {x: 1, y: 0.9999993, z: 0.99999994}
- name: B-toe.R
parentName: B-foot.R
position: {x: 0.00000074386196, y: 0.17254034, z: 0.00000017937037}
rotation: {x: -0.000012542016, y: 0.96227294, z: -0.27208585, w: -0.00017487761}
scale: {x: 1, y: 1.0000029, z: 0.999997}
armTwist: 0.5
foreArmTwist: 0.5
upperLegTwist: 0.5
legTwist: 0.5
armStretch: 0.05
legStretch: 0.05
feetSpacing: 0
globalScale: 1
rootMotionBoneName:
hasTranslationDoF: 0
hasExtraRoot: 0
skeletonHasParents: 1
lastHumanDescriptionAvatarSource: {fileID: 9000000, guid: 1841c298173cdad4db8df8602c8f1c8d,
type: 3}
autoGenerateAvatarMappingIfUnspecified: 1
animationType: 3
humanoidOversampling: 1
avatarSetup: 2
addHumanoidExtraRootOnlyWhenUsingAvatar: 1
importBlendShapeDeformPercent: 1
remapMaterialsIfMaterialImportModeIsNone: 0
additionalBone: 0
userData:
assetBundleName:
assetBundleVariant:
AssetOrigin:
serializedVersion: 1
productId: 154271
packageName: Human Basic Motions FREE
packageVersion: 2.4.2
assetPath: Assets/Kevin Iglesias/Human Animations/Animations/Female/Movement/Sprint/RootMotion/HumanF@Sprint01_Left
[RM].fbx
uploadId: 908942

View file

@ -1,974 +0,0 @@
fileFormatVersion: 2
guid: 9d09a7ef30cc1fe41a7f28ee8fe465c0
ModelImporter:
serializedVersion: 22200
internalIDToNameTable: []
externalObjects: {}
materials:
materialImportMode: 0
materialName: 0
materialSearch: 1
materialLocation: 1
animations:
legacyGenerateAnimations: 4
bakeSimulation: 0
resampleCurves: 1
optimizeGameObjects: 0
removeConstantScaleCurves: 0
motionNodeName: Rig/B-root
animationImportErrors:
animationImportWarnings:
animationRetargetingWarnings:
animationDoRetargetingWarnings: 0
importAnimatedCustomProperties: 0
importConstraints: 0
animationCompression: 0
animationRotationError: 0.5
animationPositionError: 0.5
animationScaleError: 0.5
animationWrapMode: 0
extraExposedTransformPaths: []
extraUserProperties: []
clipAnimations:
- serializedVersion: 16
name: 'HumanF@Sprint01_Right [RM]'
takeName: Untitled
internalID: 3094330708855449807
firstFrame: 0
lastFrame: 16
wrapMode: 0
orientationOffsetY: 0
level: 0
cycleOffset: 0
loop: 0
hasAdditiveReferencePose: 0
loopTime: 1
loopBlend: 0
loopBlendOrientation: 1
loopBlendPositionY: 1
loopBlendPositionXZ: 0
keepOriginalOrientation: 1
keepOriginalPositionY: 1
keepOriginalPositionXZ: 1
heightFromFeet: 0
mirror: 0
bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
curves: []
events: []
transformMask:
- path:
weight: 1
- path: HumanF_BodyMesh
weight: 0
- path: Rig
weight: 1
- path: Rig/B-root
weight: 1
- path: Rig/B-root/B-hips
weight: 1
- path: Rig/B-root/B-hips/B-spine
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck/B-head
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck/B-head/B-jaw
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-handProp.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L/B-indexFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L/B-indexFinger02.L/B-indexFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L/B-middleFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L/B-middleFinger02.L/B-middleFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L/B-pinky02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L/B-pinky02.L/B-pinky03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L/B-ringFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L/B-ringFinger02.L/B-ringFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L/B-thumb02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L/B-thumb02.L/B-thumb03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-handProp.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R/B-indexFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R/B-indexFinger02.R/B-indexFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R/B-middleFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R/B-middleFinger02.R/B-middleFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R/B-pinky02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R/B-pinky02.R/B-pinky03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R/B-ringFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R/B-ringFinger02.R/B-ringFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R/B-thumb02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R/B-thumb02.R/B-thumb03.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L/B-foot.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L/B-foot.L/B-toe.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R/B-foot.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R/B-foot.R/B-toe.R
weight: 1
- path: Rig/B-root/B-spineProxy
weight: 1
maskType: 1
maskSource: {fileID: 31900000, guid: 89527f5525238ee44b3182458d85143a, type: 2}
additiveReferencePoseFrame: 0
isReadable: 0
meshes:
lODScreenPercentages: []
globalScale: 1
meshCompression: 0
addColliders: 0
useSRGBMaterialColor: 1
sortHierarchyByName: 1
importPhysicalCameras: 1
importVisibility: 1
importBlendShapes: 1
importCameras: 1
importLights: 1
nodeNameCollisionStrategy: 1
fileIdsGeneration: 2
swapUVChannels: 0
generateSecondaryUV: 0
useFileUnits: 1
keepQuads: 0
weldVertices: 1
bakeAxisConversion: 0
preserveHierarchy: 1
skinWeightsMode: 0
maxBonesPerVertex: 4
minBoneWeight: 0.001
optimizeBones: 1
meshOptimizationFlags: -1
indexFormat: 0
secondaryUVAngleDistortion: 8
secondaryUVAreaDistortion: 15.000001
secondaryUVHardAngle: 88
secondaryUVMarginMethod: 1
secondaryUVMinLightmapResolution: 40
secondaryUVMinObjectScale: 1
secondaryUVPackMargin: 4
useFileScale: 1
strictVertexDataChecks: 0
tangentSpace:
normalSmoothAngle: 60
normalImportMode: 0
tangentImportMode: 3
normalCalculationMode: 4
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0
blendShapeNormalImportMode: 1
normalSmoothingSource: 0
referencedClips: []
importAnimation: 1
humanDescription:
serializedVersion: 3
human:
- boneName: B-hips
humanName: Hips
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thigh.L
humanName: LeftUpperLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thigh.R
humanName: RightUpperLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shin.L
humanName: LeftLowerLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shin.R
humanName: RightLowerLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-foot.L
humanName: LeftFoot
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-foot.R
humanName: RightFoot
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-spine
humanName: Spine
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-chest
humanName: Chest
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-neck
humanName: Neck
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-head
humanName: Head
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shoulder.L
humanName: LeftShoulder
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shoulder.R
humanName: RightShoulder
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-upperArm.L
humanName: LeftUpperArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-upperArm.R
humanName: RightUpperArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-forearm.L
humanName: LeftLowerArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-forearm.R
humanName: RightLowerArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-hand.L
humanName: LeftHand
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-hand.R
humanName: RightHand
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-toe.L
humanName: LeftToes
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-toe.R
humanName: RightToes
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-jaw
humanName: Jaw
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb01.L
humanName: Left Thumb Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb02.L
humanName: Left Thumb Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb03.L
humanName: Left Thumb Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger01.L
humanName: Left Index Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger02.L
humanName: Left Index Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger03.L
humanName: Left Index Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger01.L
humanName: Left Middle Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger02.L
humanName: Left Middle Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger03.L
humanName: Left Middle Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger01.L
humanName: Left Ring Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger02.L
humanName: Left Ring Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger03.L
humanName: Left Ring Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky01.L
humanName: Left Little Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky02.L
humanName: Left Little Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky03.L
humanName: Left Little Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb01.R
humanName: Right Thumb Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb02.R
humanName: Right Thumb Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb03.R
humanName: Right Thumb Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger01.R
humanName: Right Index Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger02.R
humanName: Right Index Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger03.R
humanName: Right Index Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger01.R
humanName: Right Middle Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger02.R
humanName: Right Middle Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger03.R
humanName: Right Middle Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger01.R
humanName: Right Ring Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger02.R
humanName: Right Ring Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger03.R
humanName: Right Ring Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky01.R
humanName: Right Little Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky02.R
humanName: Right Little Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky03.R
humanName: Right Little Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
skeleton:
- name: Human_DummyModel_F(Clone)
parentName:
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: HumanF_BodyMesh
parentName: Human_DummyModel_F(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Rig
parentName: Human_DummyModel_F(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: B-root
parentName: Rig
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: B-spineProxy
parentName: B-root
position: {x: -0, y: 1.092844, z: 0.029147}
rotation: {x: -0.012905054, y: 0, z: -0, w: 0.99991673}
scale: {x: 1, y: 1.0000001, z: 1.0000001}
- name: B-hips
parentName: B-root
position: {x: -0, y: 0.967712, z: 0.016772}
rotation: {x: 0.04926631, y: 0, z: -0, w: 0.9987857}
scale: {x: 1, y: 1.0000004, z: 1.0000004}
- name: B-spine
parentName: B-hips
position: {x: -0, y: 0.12574437, z: 0.00000011940791}
rotation: {x: -0.062152267, y: 0, z: -0, w: 0.99806666}
scale: {x: 1, y: 0.99999976, z: 0.99999976}
- name: B-chest
parentName: B-spine
position: {x: -0, y: 0.13376056, z: -0.00000077390683}
rotation: {x: -0.02258696, y: 0, z: -0, w: 0.9997449}
scale: {x: 1, y: 0.9999996, z: 0.9999996}
- name: B-shoulder.R
parentName: B-chest
position: {x: -0, y: 0.19125995, z: -0.005656177}
rotation: {x: -0.5165573, y: -0.44464085, z: -0.47738376, w: 0.554588}
scale: {x: 1.0000008, y: 1.0000006, z: 1.0000002}
- name: B-upperArm.R
parentName: B-shoulder.R
position: {x: -0.00000043065853, y: 0.1619337, z: -0.000000866464}
rotation: {x: 0.03406315, y: 0.7090742, z: -0.08345674, w: 0.69934857}
scale: {x: 0.99999976, y: 1, z: 0.99999946}
- name: B-forearm.R
parentName: B-upperArm.R
position: {x: -0.0000005071642, y: 0.23413825, z: 0.0000019611641}
rotation: {x: 0.0013730773, y: -0.00042225965, z: 0.0032032696, w: 0.99999386}
scale: {x: 1.0000001, y: 0.99999964, z: 0.9999996}
- name: B-hand.R
parentName: B-forearm.R
position: {x: -0.000000328232, y: 0.19596381, z: -0.0000008355853}
rotation: {x: 0.013529134, y: 0.7054088, z: 0.032969795, w: 0.70790416}
scale: {x: 0.9999999, y: 1.0000002, z: 1.0000005}
- name: B-handProp.R
parentName: B-hand.R
position: {x: 0.0029605331, y: 0.10533051, z: 0.022608897}
rotation: {x: -0.67608327, y: 0.73659164, z: -0.013668106, w: -0.012545319}
scale: {x: 0.99999964, y: 1.0000005, z: 0.9999996}
- name: B-indexFinger01.R
parentName: B-hand.R
position: {x: -0.036052607, y: 0.13202412, z: -0.0022375023}
rotation: {x: 0.019054495, y: -0.0149580045, z: 0.031315368, w: 0.999216}
scale: {x: 1.0000002, y: 0.99999964, z: 0.9999993}
- name: B-indexFinger02.R
parentName: B-indexFinger01.R
position: {x: 0.00000021708313, y: 0.046758045, z: -0.0000005285747}
rotation: {x: 0.040758472, y: 0.02876925, z: -0.0030862393, w: 0.99875003}
scale: {x: 1, y: 1.0000004, z: 1.0000002}
- name: B-indexFinger03.R
parentName: B-indexFinger02.R
position: {x: 0.000000038075022, y: 0.034652043, z: 0.00000019983679}
rotation: {x: -0.006236443, y: 0.004024028, z: -0.0109188985, w: 0.99991286}
scale: {x: 0.9999999, y: 0.9999999, z: 0.99999964}
- name: B-middleFinger01.R
parentName: B-hand.R
position: {x: -0.00928522, y: 0.1318378, z: -0.0089382}
rotation: {x: -0.004700204, y: -0.0032572027, z: -0.001801642, w: 0.99998206}
scale: {x: 1.0000006, y: 0.9999997, z: 0.99999917}
- name: B-middleFinger02.R
parentName: B-middleFinger01.R
position: {x: -0.0000003849299, y: 0.048716273, z: -0.0000001691299}
rotation: {x: 0.039366316, y: 0.04573892, z: 0.00377753, w: 0.9981703}
scale: {x: 0.9999997, y: 1.0000004, z: 1}
- name: B-middleFinger03.R
parentName: B-middleFinger02.R
position: {x: -0.00000039262213, y: 0.035888083, z: 0.00000029152696}
rotation: {x: 0.0049846717, y: -0.02122791, z: -0.0063242065, w: 0.99974227}
scale: {x: 0.99999964, y: 0.99999994, z: 1.0000002}
- name: B-ringFinger01.R
parentName: B-hand.R
position: {x: 0.016020812, y: 0.1283572, z: -0.005707851}
rotation: {x: -0.0071167736, y: 0.0017728558, z: -0.036400504, w: 0.9993104}
scale: {x: 1.0000005, y: 0.9999992, z: 0.9999996}
- name: B-ringFinger02.R
parentName: B-ringFinger01.R
position: {x: 0.00000047158898, y: 0.045192316, z: 0.00000021597218}
rotation: {x: 0.037958622, y: -0.0021153935, z: 0.012520862, w: 0.9991986}
scale: {x: 0.99999946, y: 1.0000005, z: 0.9999997}
- name: B-ringFinger03.R
parentName: B-ringFinger02.R
position: {x: -0.0000004720245, y: 0.034694634, z: 0.00000008820079}
rotation: {x: 0.02091165, y: -0.04065229, z: -0.015794862, w: 0.99882966}
scale: {x: 1.0000002, y: 0.99999976, z: 0.9999997}
- name: B-pinky01.R
parentName: B-hand.R
position: {x: 0.041580904, y: 0.119742304, z: -0.0024299922}
rotation: {x: -0.011731888, y: -0.016481936, z: -0.04421447, w: 0.9988172}
scale: {x: 1.0000002, y: 0.9999994, z: 0.99999917}
- name: B-pinky02.R
parentName: B-pinky01.R
position: {x: 0.0000007804244, y: 0.03832724, z: 0.00000044214514}
rotation: {x: 0.039002027, y: 0.011177708, z: 0.009234122, w: 0.99913394}
scale: {x: 1.0000002, y: 1.0000006, z: 1.0000002}
- name: B-pinky03.R
parentName: B-pinky02.R
position: {x: -0.000000269953, y: 0.03220071, z: -0.0000005856981}
rotation: {x: 0.022101695, y: -0.02182341, z: 0.009210792, w: 0.99947506}
scale: {x: 1.0000005, y: 0.99999994, z: 1.0000007}
- name: B-thumb01.R
parentName: B-hand.R
position: {x: -0.039809253, y: 0.048496302, z: 0.0130518135}
rotation: {x: -0.22471787, y: 0.63045275, z: 0.29821387, w: 0.6805144}
scale: {x: 0.99999946, y: 1.0000002, z: 1.0000005}
- name: B-thumb02.R
parentName: B-thumb01.R
position: {x: 0.00000020260806, y: 0.047178134, z: 0.000000160123}
rotation: {x: 0.038173996, y: 0.013301423, z: -0.008042345, w: 0.9991502}
scale: {x: 1.0000007, y: 0.9999997, z: 0.9999999}
- name: B-thumb03.R
parentName: B-thumb02.R
position: {x: -0.00000069069114, y: 0.03520854, z: 0.00000004046409}
rotation: {x: -0.060352694, y: 0.014396386, z: 0.0074255248, w: 0.9980457}
scale: {x: 0.9999995, y: 1.0000004, z: 1}
- name: B-neck
parentName: B-chest
position: {x: -0, y: 0.27081212, z: 0.0000007058524}
rotation: {x: 0.105346866, y: 0, z: -0, w: 0.99443555}
scale: {x: 1, y: 0.9999997, z: 1.0000007}
- name: B-head
parentName: B-neck
position: {x: -0, y: 0.07409704, z: 0.00000025054106}
rotation: {x: -0.069990024, y: 0, z: -0, w: 0.9975477}
scale: {x: 1, y: 1.0000006, z: 0.99999964}
- name: B-jaw
parentName: B-head
position: {x: -0, y: 0, z: 0}
rotation: {x: 0.70698464, y: 0.000007072379, z: -0.00000706994, w: 0.7072289}
scale: {x: 1, y: 1, z: 1}
- name: B-shoulder.L
parentName: B-chest
position: {x: -0, y: 0.19125995, z: -0.005656177}
rotation: {x: -0.5165571, y: 0.44464028, z: 0.47738382, w: 0.5545886}
scale: {x: 0.9999998, y: 0.9999995, z: 1.0000002}
- name: B-upperArm.L
parentName: B-shoulder.L
position: {x: 0.00000040656337, y: 0.16193385, z: -0.0000008664629}
rotation: {x: 0.033948872, y: -0.70908755, z: 0.08334149, w: 0.69935447}
scale: {x: 0.9999998, y: 1.0000002, z: 0.9999999}
- name: B-forearm.L
parentName: B-upperArm.L
position: {x: 0.000000097359035, y: 0.2341381, z: 0.00000030291466}
rotation: {x: 0.0017385628, y: 0.0004205673, z: -0.0032047313, w: 0.99999326}
scale: {x: 0.99999994, y: 1.0000004, z: 1.0000001}
- name: B-hand.L
parentName: B-forearm.L
position: {x: 0.00000052406216, y: 0.1959644, z: -0.0000011816531}
rotation: {x: 0.013386631, y: -0.70541465, z: -0.032826252, w: 0.7079078}
scale: {x: 0.99999994, y: 0.9999992, z: 0.9999996}
- name: B-handProp.L
parentName: B-hand.L
position: {x: -0.0029615294, y: 0.10533054, z: 0.02260892}
rotation: {x: 0.67608327, y: 0.73659164, z: -0.013668119, w: 0.012545332}
scale: {x: 1.0000006, y: 0.99999946, z: 1.0000006}
- name: B-indexFinger01.L
parentName: B-hand.L
position: {x: 0.03605161, y: 0.13202417, z: -0.0022375062}
rotation: {x: 0.019054513, y: 0.014957919, z: -0.03131587, w: 0.99921596}
scale: {x: 1.0000004, y: 0.9999998, z: 1.0000002}
- name: B-indexFinger02.L
parentName: B-indexFinger01.L
position: {x: 0.00000072554116, y: 0.04675823, z: -0.0000005109258}
rotation: {x: 0.04075494, y: -0.02876944, z: 0.0030826945, w: 0.9987502}
scale: {x: 1.0000001, y: 1.0000002, z: 1.0000002}
- name: B-indexFinger03.L
parentName: B-indexFinger02.L
position: {x: -0.00000009920999, y: 0.034652077, z: 0.00000023013986}
rotation: {x: -0.0062364372, y: -0.004023549, z: 0.010918792, w: 0.99991286}
scale: {x: 0.9999998, y: 1.0000008, z: 0.9999995}
- name: B-middleFinger01.L
parentName: B-hand.L
position: {x: 0.00928522, y: 0.13183793, z: -0.008938214}
rotation: {x: -0.004700207, y: 0.0032570793, z: 0.0018007505, w: 0.99998206}
scale: {x: 1.0000007, y: 0.9999999, z: 1.0000001}
- name: B-middleFinger02.L
parentName: B-middleFinger01.L
position: {x: 0.00000028786184, y: 0.048716314, z: -0.00000017087451}
rotation: {x: 0.039368037, y: -0.045739666, z: -0.0037847473, w: 0.9981702}
scale: {x: 0.99999976, y: 1.000001, z: 1.0000006}
- name: B-middleFinger03.L
parentName: B-middleFinger02.L
position: {x: -0.00000066842983, y: 0.035888, z: 0.00000028642995}
rotation: {x: 0.0049827034, y: 0.021227859, z: 0.0063241003, w: 0.99974227}
scale: {x: 0.9999996, y: 0.99999905, z: 0.99999934}
- name: B-ringFinger01.L
parentName: B-hand.L
position: {x: -0.016021809, y: 0.12835726, z: -0.005707858}
rotation: {x: -0.007116776, y: -0.0017729683, z: 0.036399588, w: 0.99931043}
scale: {x: 1.0000005, y: 1.0000002, z: 1.0000006}
- name: B-ringFinger02.L
parentName: B-ringFinger01.L
position: {x: 0.00000043795694, y: 0.04519233, z: 0.00000021050154}
rotation: {x: 0.037963506, y: 0.0021157071, z: -0.01252746, w: 0.9991984}
scale: {x: 0.9999995, y: 0.99999964, z: 0.9999996}
- name: B-ringFinger03.L
parentName: B-ringFinger02.L
position: {x: 0.00000034561023, y: 0.03469565, z: -0.00000007648653}
rotation: {x: 0.020911071, y: 0.04065225, z: 0.015794758, w: 0.99882966}
scale: {x: 1.0000001, y: 1.0000005, z: 0.9999997}
- name: B-pinky01.L
parentName: B-hand.L
position: {x: -0.041581903, y: 0.119742356, z: -0.0024299957}
rotation: {x: -0.01172906, y: 0.01648238, z: 0.0442254, w: 0.9988167}
scale: {x: 1.0000002, y: 1.0000004, z: 1.0000002}
- name: B-pinky02.L
parentName: B-pinky01.L
position: {x: 0.00000014151807, y: 0.03832722, z: 0.00000047056287}
rotation: {x: 0.039005004, y: -0.011177422, z: -0.009239738, w: 0.99913377}
scale: {x: 1.0000002, y: 0.99999946, z: 1.0000001}
- name: B-pinky03.L
parentName: B-pinky02.L
position: {x: 0.000000233103, y: 0.032200746, z: -0.00000055902217}
rotation: {x: 0.022101717, y: 0.02182328, z: -0.009211465, w: 0.99947506}
scale: {x: 0.9999995, y: 1, z: 0.99999964}
- name: B-thumb01.L
parentName: B-hand.L
position: {x: 0.03980834, y: 0.048495278, z: 0.013051865}
rotation: {x: -0.2247114, y: -0.6304557, z: -0.2982149, w: 0.6805132}
scale: {x: 1.0000005, y: 1, z: 1.0000005}
- name: B-thumb02.L
parentName: B-thumb01.L
position: {x: -0.0000007063521, y: 0.047179468, z: -0.00000013365789}
rotation: {x: 0.038171936, y: -0.013301728, z: 0.008042519, w: 0.9991503}
scale: {x: 1.0000004, y: 1, z: 0.9999994}
- name: B-thumb03.L
parentName: B-thumb02.L
position: {x: 0.0000007190916, y: 0.035208564, z: 0.00000017922088}
rotation: {x: -0.06035389, y: -0.014396597, z: -0.007425322, w: 0.9980456}
scale: {x: 0.9999992, y: 0.99999994, z: 1.0000001}
- name: B-thigh.L
parentName: B-hips
position: {x: -0.096950985, y: -0.05446949, z: 0.0020414153}
rotation: {x: 0.9977441, y: 0.011110197, z: -0.0039620763, w: 0.066088475}
scale: {x: 1.0000002, y: 0.9999997, z: 1.000001}
- name: B-shin.L
parentName: B-thigh.L
position: {x: 0.00000018468991, y: 0.41111633, z: 0.0000005281011}
rotation: {x: 0.067057244, y: -0.00057845906, z: 0.011617889, w: 0.9976813}
scale: {x: 0.9999997, y: 1.0000002, z: 0.99999964}
- name: B-foot.L
parentName: B-shin.L
position: {x: -0.00000017405802, y: 0.3880767, z: -0.00000019306846}
rotation: {x: -0.5354999, y: 0.004330197, z: 0.0016612022, w: 0.84452266}
scale: {x: 1.0000001, y: 0.9999997, z: 0.99999976}
- name: B-toe.L
parentName: B-foot.L
position: {x: -0.00000027025197, y: 0.17254004, z: -0.000000117418054}
rotation: {x: 0.000012936387, y: 0.9622731, z: -0.27208534, w: 0.00017343421}
scale: {x: 1, y: 1.0000018, z: 0.999999}
- name: B-thigh.R
parentName: B-hips
position: {x: 0.096950985, y: -0.05446959, z: 0.0020404202}
rotation: {x: 0.9977441, y: -0.011109428, z: 0.003967029, w: 0.066088304}
scale: {x: 1.0000004, y: 0.99999976, z: 1.000008}
- name: B-shin.R
parentName: B-thigh.R
position: {x: 0.0000005496826, y: 0.41111633, z: -0.00000065481464}
rotation: {x: 0.06705632, y: 0.0005783735, z: -0.011616509, w: 0.99768144}
scale: {x: 0.9999997, y: 1.0000002, z: 1.0000007}
- name: B-foot.R
parentName: B-shin.R
position: {x: -0.00000044263592, y: 0.3880767, z: 0.000000107811644}
rotation: {x: -0.53550065, y: -0.0043338453, z: -0.0016630876, w: 0.84452206}
scale: {x: 1, y: 0.9999993, z: 0.99999994}
- name: B-toe.R
parentName: B-foot.R
position: {x: 0.00000074386196, y: 0.17254034, z: 0.00000017937037}
rotation: {x: -0.000012542016, y: 0.96227294, z: -0.27208585, w: -0.00017487761}
scale: {x: 1, y: 1.0000029, z: 0.999997}
armTwist: 0.5
foreArmTwist: 0.5
upperLegTwist: 0.5
legTwist: 0.5
armStretch: 0.05
legStretch: 0.05
feetSpacing: 0
globalScale: 1
rootMotionBoneName:
hasTranslationDoF: 0
hasExtraRoot: 0
skeletonHasParents: 1
lastHumanDescriptionAvatarSource: {fileID: 9000000, guid: 1841c298173cdad4db8df8602c8f1c8d,
type: 3}
autoGenerateAvatarMappingIfUnspecified: 1
animationType: 3
humanoidOversampling: 1
avatarSetup: 2
addHumanoidExtraRootOnlyWhenUsingAvatar: 1
importBlendShapeDeformPercent: 1
remapMaterialsIfMaterialImportModeIsNone: 0
additionalBone: 0
userData:
assetBundleName:
assetBundleVariant:
AssetOrigin:
serializedVersion: 1
productId: 154271
packageName: Human Basic Motions FREE
packageVersion: 2.4.2
assetPath: Assets/Kevin Iglesias/Human Animations/Animations/Female/Movement/Sprint/RootMotion/HumanF@Sprint01_Right
[RM].fbx
uploadId: 908942

View file

@ -1,8 +0,0 @@
fileFormatVersion: 2
guid: e1f77fcf2f98c1f4099b95656e1e841b
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View file

@ -1,974 +0,0 @@
fileFormatVersion: 2
guid: ca1026661b885cc41b96ef19b8fa736b
ModelImporter:
serializedVersion: 22200
internalIDToNameTable: []
externalObjects: {}
materials:
materialImportMode: 0
materialName: 0
materialSearch: 1
materialLocation: 1
animations:
legacyGenerateAnimations: 4
bakeSimulation: 0
resampleCurves: 1
optimizeGameObjects: 0
removeConstantScaleCurves: 0
motionNodeName:
animationImportErrors:
animationImportWarnings:
animationRetargetingWarnings:
animationDoRetargetingWarnings: 0
importAnimatedCustomProperties: 0
importConstraints: 0
animationCompression: 0
animationRotationError: 0.5
animationPositionError: 0.5
animationScaleError: 0.5
animationWrapMode: 0
extraExposedTransformPaths: []
extraUserProperties: []
clipAnimations:
- serializedVersion: 16
name: 'HumanF@Turn01_Left [RM]'
takeName: Untitled
internalID: 3094330708855449807
firstFrame: 0
lastFrame: 30
wrapMode: 0
orientationOffsetY: 0
level: 0
cycleOffset: 0
loop: 0
hasAdditiveReferencePose: 0
loopTime: 1
loopBlend: 0
loopBlendOrientation: 0
loopBlendPositionY: 1
loopBlendPositionXZ: 1
keepOriginalOrientation: 1
keepOriginalPositionY: 1
keepOriginalPositionXZ: 1
heightFromFeet: 0
mirror: 0
bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
curves: []
events: []
transformMask:
- path:
weight: 1
- path: HumanF_BodyMesh
weight: 0
- path: Rig
weight: 1
- path: Rig/B-root
weight: 1
- path: Rig/B-root/B-hips
weight: 1
- path: Rig/B-root/B-hips/B-spine
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck/B-head
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck/B-head/B-jaw
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-handProp.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L/B-indexFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L/B-indexFinger02.L/B-indexFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L/B-middleFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L/B-middleFinger02.L/B-middleFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L/B-pinky02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L/B-pinky02.L/B-pinky03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L/B-ringFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L/B-ringFinger02.L/B-ringFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L/B-thumb02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L/B-thumb02.L/B-thumb03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-handProp.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R/B-indexFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R/B-indexFinger02.R/B-indexFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R/B-middleFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R/B-middleFinger02.R/B-middleFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R/B-pinky02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R/B-pinky02.R/B-pinky03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R/B-ringFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R/B-ringFinger02.R/B-ringFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R/B-thumb02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R/B-thumb02.R/B-thumb03.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L/B-foot.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L/B-foot.L/B-toe.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R/B-foot.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R/B-foot.R/B-toe.R
weight: 1
- path: Rig/B-root/B-spineProxy
weight: 1
maskType: 1
maskSource: {fileID: 31900000, guid: 89527f5525238ee44b3182458d85143a, type: 2}
additiveReferencePoseFrame: 0
isReadable: 0
meshes:
lODScreenPercentages: []
globalScale: 1
meshCompression: 0
addColliders: 0
useSRGBMaterialColor: 1
sortHierarchyByName: 1
importPhysicalCameras: 1
importVisibility: 1
importBlendShapes: 1
importCameras: 1
importLights: 1
nodeNameCollisionStrategy: 1
fileIdsGeneration: 2
swapUVChannels: 0
generateSecondaryUV: 0
useFileUnits: 1
keepQuads: 0
weldVertices: 1
bakeAxisConversion: 0
preserveHierarchy: 1
skinWeightsMode: 0
maxBonesPerVertex: 4
minBoneWeight: 0.001
optimizeBones: 1
meshOptimizationFlags: -1
indexFormat: 0
secondaryUVAngleDistortion: 8
secondaryUVAreaDistortion: 15.000001
secondaryUVHardAngle: 88
secondaryUVMarginMethod: 1
secondaryUVMinLightmapResolution: 40
secondaryUVMinObjectScale: 1
secondaryUVPackMargin: 4
useFileScale: 1
strictVertexDataChecks: 0
tangentSpace:
normalSmoothAngle: 60
normalImportMode: 0
tangentImportMode: 3
normalCalculationMode: 4
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0
blendShapeNormalImportMode: 1
normalSmoothingSource: 0
referencedClips: []
importAnimation: 1
humanDescription:
serializedVersion: 3
human:
- boneName: B-hips
humanName: Hips
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thigh.L
humanName: LeftUpperLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thigh.R
humanName: RightUpperLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shin.L
humanName: LeftLowerLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shin.R
humanName: RightLowerLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-foot.L
humanName: LeftFoot
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-foot.R
humanName: RightFoot
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-spine
humanName: Spine
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-chest
humanName: Chest
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-neck
humanName: Neck
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-head
humanName: Head
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shoulder.L
humanName: LeftShoulder
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shoulder.R
humanName: RightShoulder
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-upperArm.L
humanName: LeftUpperArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-upperArm.R
humanName: RightUpperArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-forearm.L
humanName: LeftLowerArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-forearm.R
humanName: RightLowerArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-hand.L
humanName: LeftHand
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-hand.R
humanName: RightHand
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-toe.L
humanName: LeftToes
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-toe.R
humanName: RightToes
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-jaw
humanName: Jaw
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb01.L
humanName: Left Thumb Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb02.L
humanName: Left Thumb Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb03.L
humanName: Left Thumb Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger01.L
humanName: Left Index Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger02.L
humanName: Left Index Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger03.L
humanName: Left Index Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger01.L
humanName: Left Middle Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger02.L
humanName: Left Middle Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger03.L
humanName: Left Middle Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger01.L
humanName: Left Ring Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger02.L
humanName: Left Ring Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger03.L
humanName: Left Ring Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky01.L
humanName: Left Little Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky02.L
humanName: Left Little Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky03.L
humanName: Left Little Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb01.R
humanName: Right Thumb Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb02.R
humanName: Right Thumb Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb03.R
humanName: Right Thumb Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger01.R
humanName: Right Index Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger02.R
humanName: Right Index Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger03.R
humanName: Right Index Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger01.R
humanName: Right Middle Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger02.R
humanName: Right Middle Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger03.R
humanName: Right Middle Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger01.R
humanName: Right Ring Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger02.R
humanName: Right Ring Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger03.R
humanName: Right Ring Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky01.R
humanName: Right Little Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky02.R
humanName: Right Little Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky03.R
humanName: Right Little Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
skeleton:
- name: Human_DummyModel_F(Clone)
parentName:
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: HumanF_BodyMesh
parentName: Human_DummyModel_F(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Rig
parentName: Human_DummyModel_F(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: B-root
parentName: Rig
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: B-spineProxy
parentName: B-root
position: {x: -0, y: 1.092844, z: 0.029147}
rotation: {x: -0.012905054, y: 0, z: -0, w: 0.99991673}
scale: {x: 1, y: 1.0000001, z: 1.0000001}
- name: B-hips
parentName: B-root
position: {x: -0, y: 0.967712, z: 0.016772}
rotation: {x: 0.04926631, y: 0, z: -0, w: 0.9987857}
scale: {x: 1, y: 1.0000004, z: 1.0000004}
- name: B-spine
parentName: B-hips
position: {x: -0, y: 0.12574437, z: 0.00000011940791}
rotation: {x: -0.062152267, y: 0, z: -0, w: 0.99806666}
scale: {x: 1, y: 0.99999976, z: 0.99999976}
- name: B-chest
parentName: B-spine
position: {x: -0, y: 0.13376056, z: -0.00000077390683}
rotation: {x: -0.02258696, y: 0, z: -0, w: 0.9997449}
scale: {x: 1, y: 0.9999996, z: 0.9999996}
- name: B-shoulder.R
parentName: B-chest
position: {x: -0, y: 0.19125995, z: -0.005656177}
rotation: {x: -0.5165573, y: -0.44464085, z: -0.47738376, w: 0.554588}
scale: {x: 1.0000008, y: 1.0000006, z: 1.0000002}
- name: B-upperArm.R
parentName: B-shoulder.R
position: {x: -0.00000043065853, y: 0.1619337, z: -0.000000866464}
rotation: {x: 0.03406315, y: 0.7090742, z: -0.08345674, w: 0.69934857}
scale: {x: 0.99999976, y: 1, z: 0.99999946}
- name: B-forearm.R
parentName: B-upperArm.R
position: {x: -0.0000005071642, y: 0.23413825, z: 0.0000019611641}
rotation: {x: 0.0013730773, y: -0.00042225965, z: 0.0032032696, w: 0.99999386}
scale: {x: 1.0000001, y: 0.99999964, z: 0.9999996}
- name: B-hand.R
parentName: B-forearm.R
position: {x: -0.000000328232, y: 0.19596381, z: -0.0000008355853}
rotation: {x: 0.013529134, y: 0.7054088, z: 0.032969795, w: 0.70790416}
scale: {x: 0.9999999, y: 1.0000002, z: 1.0000005}
- name: B-handProp.R
parentName: B-hand.R
position: {x: 0.0029605331, y: 0.10533051, z: 0.022608897}
rotation: {x: -0.67608327, y: 0.73659164, z: -0.013668106, w: -0.012545319}
scale: {x: 0.99999964, y: 1.0000005, z: 0.9999996}
- name: B-indexFinger01.R
parentName: B-hand.R
position: {x: -0.036052607, y: 0.13202412, z: -0.0022375023}
rotation: {x: 0.019054495, y: -0.0149580045, z: 0.031315368, w: 0.999216}
scale: {x: 1.0000002, y: 0.99999964, z: 0.9999993}
- name: B-indexFinger02.R
parentName: B-indexFinger01.R
position: {x: 0.00000021708313, y: 0.046758045, z: -0.0000005285747}
rotation: {x: 0.040758472, y: 0.02876925, z: -0.0030862393, w: 0.99875003}
scale: {x: 1, y: 1.0000004, z: 1.0000002}
- name: B-indexFinger03.R
parentName: B-indexFinger02.R
position: {x: 0.000000038075022, y: 0.034652043, z: 0.00000019983679}
rotation: {x: -0.006236443, y: 0.004024028, z: -0.0109188985, w: 0.99991286}
scale: {x: 0.9999999, y: 0.9999999, z: 0.99999964}
- name: B-middleFinger01.R
parentName: B-hand.R
position: {x: -0.00928522, y: 0.1318378, z: -0.0089382}
rotation: {x: -0.004700204, y: -0.0032572027, z: -0.001801642, w: 0.99998206}
scale: {x: 1.0000006, y: 0.9999997, z: 0.99999917}
- name: B-middleFinger02.R
parentName: B-middleFinger01.R
position: {x: -0.0000003849299, y: 0.048716273, z: -0.0000001691299}
rotation: {x: 0.039366316, y: 0.04573892, z: 0.00377753, w: 0.9981703}
scale: {x: 0.9999997, y: 1.0000004, z: 1}
- name: B-middleFinger03.R
parentName: B-middleFinger02.R
position: {x: -0.00000039262213, y: 0.035888083, z: 0.00000029152696}
rotation: {x: 0.0049846717, y: -0.02122791, z: -0.0063242065, w: 0.99974227}
scale: {x: 0.99999964, y: 0.99999994, z: 1.0000002}
- name: B-ringFinger01.R
parentName: B-hand.R
position: {x: 0.016020812, y: 0.1283572, z: -0.005707851}
rotation: {x: -0.0071167736, y: 0.0017728558, z: -0.036400504, w: 0.9993104}
scale: {x: 1.0000005, y: 0.9999992, z: 0.9999996}
- name: B-ringFinger02.R
parentName: B-ringFinger01.R
position: {x: 0.00000047158898, y: 0.045192316, z: 0.00000021597218}
rotation: {x: 0.037958622, y: -0.0021153935, z: 0.012520862, w: 0.9991986}
scale: {x: 0.99999946, y: 1.0000005, z: 0.9999997}
- name: B-ringFinger03.R
parentName: B-ringFinger02.R
position: {x: -0.0000004720245, y: 0.034694634, z: 0.00000008820079}
rotation: {x: 0.02091165, y: -0.04065229, z: -0.015794862, w: 0.99882966}
scale: {x: 1.0000002, y: 0.99999976, z: 0.9999997}
- name: B-pinky01.R
parentName: B-hand.R
position: {x: 0.041580904, y: 0.119742304, z: -0.0024299922}
rotation: {x: -0.011731888, y: -0.016481936, z: -0.04421447, w: 0.9988172}
scale: {x: 1.0000002, y: 0.9999994, z: 0.99999917}
- name: B-pinky02.R
parentName: B-pinky01.R
position: {x: 0.0000007804244, y: 0.03832724, z: 0.00000044214514}
rotation: {x: 0.039002027, y: 0.011177708, z: 0.009234122, w: 0.99913394}
scale: {x: 1.0000002, y: 1.0000006, z: 1.0000002}
- name: B-pinky03.R
parentName: B-pinky02.R
position: {x: -0.000000269953, y: 0.03220071, z: -0.0000005856981}
rotation: {x: 0.022101695, y: -0.02182341, z: 0.009210792, w: 0.99947506}
scale: {x: 1.0000005, y: 0.99999994, z: 1.0000007}
- name: B-thumb01.R
parentName: B-hand.R
position: {x: -0.039809253, y: 0.048496302, z: 0.0130518135}
rotation: {x: -0.22471787, y: 0.63045275, z: 0.29821387, w: 0.6805144}
scale: {x: 0.99999946, y: 1.0000002, z: 1.0000005}
- name: B-thumb02.R
parentName: B-thumb01.R
position: {x: 0.00000020260806, y: 0.047178134, z: 0.000000160123}
rotation: {x: 0.038173996, y: 0.013301423, z: -0.008042345, w: 0.9991502}
scale: {x: 1.0000007, y: 0.9999997, z: 0.9999999}
- name: B-thumb03.R
parentName: B-thumb02.R
position: {x: -0.00000069069114, y: 0.03520854, z: 0.00000004046409}
rotation: {x: -0.060352694, y: 0.014396386, z: 0.0074255248, w: 0.9980457}
scale: {x: 0.9999995, y: 1.0000004, z: 1}
- name: B-neck
parentName: B-chest
position: {x: -0, y: 0.27081212, z: 0.0000007058524}
rotation: {x: 0.105346866, y: 0, z: -0, w: 0.99443555}
scale: {x: 1, y: 0.9999997, z: 1.0000007}
- name: B-head
parentName: B-neck
position: {x: -0, y: 0.07409704, z: 0.00000025054106}
rotation: {x: -0.069990024, y: 0, z: -0, w: 0.9975477}
scale: {x: 1, y: 1.0000006, z: 0.99999964}
- name: B-jaw
parentName: B-head
position: {x: -0, y: 0, z: 0}
rotation: {x: 0.70698464, y: 0.000007072379, z: -0.00000706994, w: 0.7072289}
scale: {x: 1, y: 1, z: 1}
- name: B-shoulder.L
parentName: B-chest
position: {x: -0, y: 0.19125995, z: -0.005656177}
rotation: {x: -0.5165571, y: 0.44464028, z: 0.47738382, w: 0.5545886}
scale: {x: 0.9999998, y: 0.9999995, z: 1.0000002}
- name: B-upperArm.L
parentName: B-shoulder.L
position: {x: 0.00000040656337, y: 0.16193385, z: -0.0000008664629}
rotation: {x: 0.033948872, y: -0.70908755, z: 0.08334149, w: 0.69935447}
scale: {x: 0.9999998, y: 1.0000002, z: 0.9999999}
- name: B-forearm.L
parentName: B-upperArm.L
position: {x: 0.000000097359035, y: 0.2341381, z: 0.00000030291466}
rotation: {x: 0.0017385628, y: 0.0004205673, z: -0.0032047313, w: 0.99999326}
scale: {x: 0.99999994, y: 1.0000004, z: 1.0000001}
- name: B-hand.L
parentName: B-forearm.L
position: {x: 0.00000052406216, y: 0.1959644, z: -0.0000011816531}
rotation: {x: 0.013386631, y: -0.70541465, z: -0.032826252, w: 0.7079078}
scale: {x: 0.99999994, y: 0.9999992, z: 0.9999996}
- name: B-handProp.L
parentName: B-hand.L
position: {x: -0.0029615294, y: 0.10533054, z: 0.02260892}
rotation: {x: 0.67608327, y: 0.73659164, z: -0.013668119, w: 0.012545332}
scale: {x: 1.0000006, y: 0.99999946, z: 1.0000006}
- name: B-indexFinger01.L
parentName: B-hand.L
position: {x: 0.03605161, y: 0.13202417, z: -0.0022375062}
rotation: {x: 0.019054513, y: 0.014957919, z: -0.03131587, w: 0.99921596}
scale: {x: 1.0000004, y: 0.9999998, z: 1.0000002}
- name: B-indexFinger02.L
parentName: B-indexFinger01.L
position: {x: 0.00000072554116, y: 0.04675823, z: -0.0000005109258}
rotation: {x: 0.04075494, y: -0.02876944, z: 0.0030826945, w: 0.9987502}
scale: {x: 1.0000001, y: 1.0000002, z: 1.0000002}
- name: B-indexFinger03.L
parentName: B-indexFinger02.L
position: {x: -0.00000009920999, y: 0.034652077, z: 0.00000023013986}
rotation: {x: -0.0062364372, y: -0.004023549, z: 0.010918792, w: 0.99991286}
scale: {x: 0.9999998, y: 1.0000008, z: 0.9999995}
- name: B-middleFinger01.L
parentName: B-hand.L
position: {x: 0.00928522, y: 0.13183793, z: -0.008938214}
rotation: {x: -0.004700207, y: 0.0032570793, z: 0.0018007505, w: 0.99998206}
scale: {x: 1.0000007, y: 0.9999999, z: 1.0000001}
- name: B-middleFinger02.L
parentName: B-middleFinger01.L
position: {x: 0.00000028786184, y: 0.048716314, z: -0.00000017087451}
rotation: {x: 0.039368037, y: -0.045739666, z: -0.0037847473, w: 0.9981702}
scale: {x: 0.99999976, y: 1.000001, z: 1.0000006}
- name: B-middleFinger03.L
parentName: B-middleFinger02.L
position: {x: -0.00000066842983, y: 0.035888, z: 0.00000028642995}
rotation: {x: 0.0049827034, y: 0.021227859, z: 0.0063241003, w: 0.99974227}
scale: {x: 0.9999996, y: 0.99999905, z: 0.99999934}
- name: B-ringFinger01.L
parentName: B-hand.L
position: {x: -0.016021809, y: 0.12835726, z: -0.005707858}
rotation: {x: -0.007116776, y: -0.0017729683, z: 0.036399588, w: 0.99931043}
scale: {x: 1.0000005, y: 1.0000002, z: 1.0000006}
- name: B-ringFinger02.L
parentName: B-ringFinger01.L
position: {x: 0.00000043795694, y: 0.04519233, z: 0.00000021050154}
rotation: {x: 0.037963506, y: 0.0021157071, z: -0.01252746, w: 0.9991984}
scale: {x: 0.9999995, y: 0.99999964, z: 0.9999996}
- name: B-ringFinger03.L
parentName: B-ringFinger02.L
position: {x: 0.00000034561023, y: 0.03469565, z: -0.00000007648653}
rotation: {x: 0.020911071, y: 0.04065225, z: 0.015794758, w: 0.99882966}
scale: {x: 1.0000001, y: 1.0000005, z: 0.9999997}
- name: B-pinky01.L
parentName: B-hand.L
position: {x: -0.041581903, y: 0.119742356, z: -0.0024299957}
rotation: {x: -0.01172906, y: 0.01648238, z: 0.0442254, w: 0.9988167}
scale: {x: 1.0000002, y: 1.0000004, z: 1.0000002}
- name: B-pinky02.L
parentName: B-pinky01.L
position: {x: 0.00000014151807, y: 0.03832722, z: 0.00000047056287}
rotation: {x: 0.039005004, y: -0.011177422, z: -0.009239738, w: 0.99913377}
scale: {x: 1.0000002, y: 0.99999946, z: 1.0000001}
- name: B-pinky03.L
parentName: B-pinky02.L
position: {x: 0.000000233103, y: 0.032200746, z: -0.00000055902217}
rotation: {x: 0.022101717, y: 0.02182328, z: -0.009211465, w: 0.99947506}
scale: {x: 0.9999995, y: 1, z: 0.99999964}
- name: B-thumb01.L
parentName: B-hand.L
position: {x: 0.03980834, y: 0.048495278, z: 0.013051865}
rotation: {x: -0.2247114, y: -0.6304557, z: -0.2982149, w: 0.6805132}
scale: {x: 1.0000005, y: 1, z: 1.0000005}
- name: B-thumb02.L
parentName: B-thumb01.L
position: {x: -0.0000007063521, y: 0.047179468, z: -0.00000013365789}
rotation: {x: 0.038171936, y: -0.013301728, z: 0.008042519, w: 0.9991503}
scale: {x: 1.0000004, y: 1, z: 0.9999994}
- name: B-thumb03.L
parentName: B-thumb02.L
position: {x: 0.0000007190916, y: 0.035208564, z: 0.00000017922088}
rotation: {x: -0.06035389, y: -0.014396597, z: -0.007425322, w: 0.9980456}
scale: {x: 0.9999992, y: 0.99999994, z: 1.0000001}
- name: B-thigh.L
parentName: B-hips
position: {x: -0.096950985, y: -0.05446949, z: 0.0020414153}
rotation: {x: 0.9977441, y: 0.011110197, z: -0.0039620763, w: 0.066088475}
scale: {x: 1.0000002, y: 0.9999997, z: 1.000001}
- name: B-shin.L
parentName: B-thigh.L
position: {x: 0.00000018468991, y: 0.41111633, z: 0.0000005281011}
rotation: {x: 0.067057244, y: -0.00057845906, z: 0.011617889, w: 0.9976813}
scale: {x: 0.9999997, y: 1.0000002, z: 0.99999964}
- name: B-foot.L
parentName: B-shin.L
position: {x: -0.00000017405802, y: 0.3880767, z: -0.00000019306846}
rotation: {x: -0.5354999, y: 0.004330197, z: 0.0016612022, w: 0.84452266}
scale: {x: 1.0000001, y: 0.9999997, z: 0.99999976}
- name: B-toe.L
parentName: B-foot.L
position: {x: -0.00000027025197, y: 0.17254004, z: -0.000000117418054}
rotation: {x: 0.000012936387, y: 0.9622731, z: -0.27208534, w: 0.00017343421}
scale: {x: 1, y: 1.0000018, z: 0.999999}
- name: B-thigh.R
parentName: B-hips
position: {x: 0.096950985, y: -0.05446959, z: 0.0020404202}
rotation: {x: 0.9977441, y: -0.011109428, z: 0.003967029, w: 0.066088304}
scale: {x: 1.0000004, y: 0.99999976, z: 1.000008}
- name: B-shin.R
parentName: B-thigh.R
position: {x: 0.0000005496826, y: 0.41111633, z: -0.00000065481464}
rotation: {x: 0.06705632, y: 0.0005783735, z: -0.011616509, w: 0.99768144}
scale: {x: 0.9999997, y: 1.0000002, z: 1.0000007}
- name: B-foot.R
parentName: B-shin.R
position: {x: -0.00000044263592, y: 0.3880767, z: 0.000000107811644}
rotation: {x: -0.53550065, y: -0.0043338453, z: -0.0016630876, w: 0.84452206}
scale: {x: 1, y: 0.9999993, z: 0.99999994}
- name: B-toe.R
parentName: B-foot.R
position: {x: 0.00000074386196, y: 0.17254034, z: 0.00000017937037}
rotation: {x: -0.000012542016, y: 0.96227294, z: -0.27208585, w: -0.00017487761}
scale: {x: 1, y: 1.0000029, z: 0.999997}
armTwist: 0.5
foreArmTwist: 0.5
upperLegTwist: 0.5
legTwist: 0.5
armStretch: 0.05
legStretch: 0.05
feetSpacing: 0
globalScale: 1
rootMotionBoneName:
hasTranslationDoF: 0
hasExtraRoot: 0
skeletonHasParents: 1
lastHumanDescriptionAvatarSource: {fileID: 9000000, guid: 1841c298173cdad4db8df8602c8f1c8d,
type: 3}
autoGenerateAvatarMappingIfUnspecified: 1
animationType: 3
humanoidOversampling: 1
avatarSetup: 2
addHumanoidExtraRootOnlyWhenUsingAvatar: 1
importBlendShapeDeformPercent: 1
remapMaterialsIfMaterialImportModeIsNone: 0
additionalBone: 0
userData:
assetBundleName:
assetBundleVariant:
AssetOrigin:
serializedVersion: 1
productId: 154271
packageName: Human Basic Motions FREE
packageVersion: 2.4.2
assetPath: Assets/Kevin Iglesias/Human Animations/Animations/Female/Movement/Turn/HumanF@Turn01_Left
[RM].fbx
uploadId: 908942

View file

@ -1,973 +0,0 @@
fileFormatVersion: 2
guid: 9cc63407e9eb8204babf8fc94b95f3e1
ModelImporter:
serializedVersion: 22200
internalIDToNameTable: []
externalObjects: {}
materials:
materialImportMode: 0
materialName: 0
materialSearch: 1
materialLocation: 1
animations:
legacyGenerateAnimations: 4
bakeSimulation: 0
resampleCurves: 1
optimizeGameObjects: 0
removeConstantScaleCurves: 0
motionNodeName:
animationImportErrors:
animationImportWarnings:
animationRetargetingWarnings:
animationDoRetargetingWarnings: 0
importAnimatedCustomProperties: 0
importConstraints: 0
animationCompression: 0
animationRotationError: 0.5
animationPositionError: 0.5
animationScaleError: 0.5
animationWrapMode: 0
extraExposedTransformPaths: []
extraUserProperties: []
clipAnimations:
- serializedVersion: 16
name: HumanF@Turn01_Left
takeName: Untitled
internalID: 3094330708855449807
firstFrame: 0
lastFrame: 30
wrapMode: 0
orientationOffsetY: 0
level: 0
cycleOffset: 0
loop: 0
hasAdditiveReferencePose: 0
loopTime: 1
loopBlend: 0
loopBlendOrientation: 1
loopBlendPositionY: 1
loopBlendPositionXZ: 1
keepOriginalOrientation: 1
keepOriginalPositionY: 1
keepOriginalPositionXZ: 1
heightFromFeet: 0
mirror: 0
bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
curves: []
events: []
transformMask:
- path:
weight: 1
- path: HumanF_BodyMesh
weight: 0
- path: Rig
weight: 1
- path: Rig/B-root
weight: 1
- path: Rig/B-root/B-hips
weight: 1
- path: Rig/B-root/B-hips/B-spine
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck/B-head
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck/B-head/B-jaw
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-handProp.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L/B-indexFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L/B-indexFinger02.L/B-indexFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L/B-middleFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L/B-middleFinger02.L/B-middleFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L/B-pinky02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L/B-pinky02.L/B-pinky03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L/B-ringFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L/B-ringFinger02.L/B-ringFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L/B-thumb02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L/B-thumb02.L/B-thumb03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-handProp.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R/B-indexFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R/B-indexFinger02.R/B-indexFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R/B-middleFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R/B-middleFinger02.R/B-middleFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R/B-pinky02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R/B-pinky02.R/B-pinky03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R/B-ringFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R/B-ringFinger02.R/B-ringFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R/B-thumb02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R/B-thumb02.R/B-thumb03.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L/B-foot.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L/B-foot.L/B-toe.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R/B-foot.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R/B-foot.R/B-toe.R
weight: 1
- path: Rig/B-root/B-spineProxy
weight: 1
maskType: 1
maskSource: {fileID: 31900000, guid: 89527f5525238ee44b3182458d85143a, type: 2}
additiveReferencePoseFrame: 0
isReadable: 0
meshes:
lODScreenPercentages: []
globalScale: 1
meshCompression: 0
addColliders: 0
useSRGBMaterialColor: 1
sortHierarchyByName: 1
importPhysicalCameras: 1
importVisibility: 1
importBlendShapes: 1
importCameras: 1
importLights: 1
nodeNameCollisionStrategy: 1
fileIdsGeneration: 2
swapUVChannels: 0
generateSecondaryUV: 0
useFileUnits: 1
keepQuads: 0
weldVertices: 1
bakeAxisConversion: 0
preserveHierarchy: 1
skinWeightsMode: 0
maxBonesPerVertex: 4
minBoneWeight: 0.001
optimizeBones: 1
meshOptimizationFlags: -1
indexFormat: 0
secondaryUVAngleDistortion: 8
secondaryUVAreaDistortion: 15.000001
secondaryUVHardAngle: 88
secondaryUVMarginMethod: 1
secondaryUVMinLightmapResolution: 40
secondaryUVMinObjectScale: 1
secondaryUVPackMargin: 4
useFileScale: 1
strictVertexDataChecks: 0
tangentSpace:
normalSmoothAngle: 60
normalImportMode: 0
tangentImportMode: 3
normalCalculationMode: 4
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0
blendShapeNormalImportMode: 1
normalSmoothingSource: 0
referencedClips: []
importAnimation: 1
humanDescription:
serializedVersion: 3
human:
- boneName: B-hips
humanName: Hips
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thigh.L
humanName: LeftUpperLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thigh.R
humanName: RightUpperLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shin.L
humanName: LeftLowerLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shin.R
humanName: RightLowerLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-foot.L
humanName: LeftFoot
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-foot.R
humanName: RightFoot
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-spine
humanName: Spine
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-chest
humanName: Chest
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-neck
humanName: Neck
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-head
humanName: Head
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shoulder.L
humanName: LeftShoulder
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shoulder.R
humanName: RightShoulder
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-upperArm.L
humanName: LeftUpperArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-upperArm.R
humanName: RightUpperArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-forearm.L
humanName: LeftLowerArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-forearm.R
humanName: RightLowerArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-hand.L
humanName: LeftHand
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-hand.R
humanName: RightHand
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-toe.L
humanName: LeftToes
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-toe.R
humanName: RightToes
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-jaw
humanName: Jaw
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb01.L
humanName: Left Thumb Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb02.L
humanName: Left Thumb Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb03.L
humanName: Left Thumb Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger01.L
humanName: Left Index Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger02.L
humanName: Left Index Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger03.L
humanName: Left Index Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger01.L
humanName: Left Middle Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger02.L
humanName: Left Middle Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger03.L
humanName: Left Middle Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger01.L
humanName: Left Ring Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger02.L
humanName: Left Ring Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger03.L
humanName: Left Ring Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky01.L
humanName: Left Little Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky02.L
humanName: Left Little Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky03.L
humanName: Left Little Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb01.R
humanName: Right Thumb Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb02.R
humanName: Right Thumb Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb03.R
humanName: Right Thumb Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger01.R
humanName: Right Index Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger02.R
humanName: Right Index Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger03.R
humanName: Right Index Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger01.R
humanName: Right Middle Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger02.R
humanName: Right Middle Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger03.R
humanName: Right Middle Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger01.R
humanName: Right Ring Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger02.R
humanName: Right Ring Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger03.R
humanName: Right Ring Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky01.R
humanName: Right Little Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky02.R
humanName: Right Little Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky03.R
humanName: Right Little Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
skeleton:
- name: Human_DummyModel_F(Clone)
parentName:
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: HumanF_BodyMesh
parentName: Human_DummyModel_F(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Rig
parentName: Human_DummyModel_F(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: B-root
parentName: Rig
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: B-spineProxy
parentName: B-root
position: {x: -0, y: 1.092844, z: 0.029147}
rotation: {x: -0.012905054, y: 0, z: -0, w: 0.99991673}
scale: {x: 1, y: 1.0000001, z: 1.0000001}
- name: B-hips
parentName: B-root
position: {x: -0, y: 0.967712, z: 0.016772}
rotation: {x: 0.04926631, y: 0, z: -0, w: 0.9987857}
scale: {x: 1, y: 1.0000004, z: 1.0000004}
- name: B-spine
parentName: B-hips
position: {x: -0, y: 0.12574437, z: 0.00000011940791}
rotation: {x: -0.062152267, y: 0, z: -0, w: 0.99806666}
scale: {x: 1, y: 0.99999976, z: 0.99999976}
- name: B-chest
parentName: B-spine
position: {x: -0, y: 0.13376056, z: -0.00000077390683}
rotation: {x: -0.02258696, y: 0, z: -0, w: 0.9997449}
scale: {x: 1, y: 0.9999996, z: 0.9999996}
- name: B-shoulder.R
parentName: B-chest
position: {x: -0, y: 0.19125995, z: -0.005656177}
rotation: {x: -0.5165573, y: -0.44464085, z: -0.47738376, w: 0.554588}
scale: {x: 1.0000008, y: 1.0000006, z: 1.0000002}
- name: B-upperArm.R
parentName: B-shoulder.R
position: {x: -0.00000043065853, y: 0.1619337, z: -0.000000866464}
rotation: {x: 0.03406315, y: 0.7090742, z: -0.08345674, w: 0.69934857}
scale: {x: 0.99999976, y: 1, z: 0.99999946}
- name: B-forearm.R
parentName: B-upperArm.R
position: {x: -0.0000005071642, y: 0.23413825, z: 0.0000019611641}
rotation: {x: 0.0013730773, y: -0.00042225965, z: 0.0032032696, w: 0.99999386}
scale: {x: 1.0000001, y: 0.99999964, z: 0.9999996}
- name: B-hand.R
parentName: B-forearm.R
position: {x: -0.000000328232, y: 0.19596381, z: -0.0000008355853}
rotation: {x: 0.013529134, y: 0.7054088, z: 0.032969795, w: 0.70790416}
scale: {x: 0.9999999, y: 1.0000002, z: 1.0000005}
- name: B-handProp.R
parentName: B-hand.R
position: {x: 0.0029605331, y: 0.10533051, z: 0.022608897}
rotation: {x: -0.67608327, y: 0.73659164, z: -0.013668106, w: -0.012545319}
scale: {x: 0.99999964, y: 1.0000005, z: 0.9999996}
- name: B-indexFinger01.R
parentName: B-hand.R
position: {x: -0.036052607, y: 0.13202412, z: -0.0022375023}
rotation: {x: 0.019054495, y: -0.0149580045, z: 0.031315368, w: 0.999216}
scale: {x: 1.0000002, y: 0.99999964, z: 0.9999993}
- name: B-indexFinger02.R
parentName: B-indexFinger01.R
position: {x: 0.00000021708313, y: 0.046758045, z: -0.0000005285747}
rotation: {x: 0.040758472, y: 0.02876925, z: -0.0030862393, w: 0.99875003}
scale: {x: 1, y: 1.0000004, z: 1.0000002}
- name: B-indexFinger03.R
parentName: B-indexFinger02.R
position: {x: 0.000000038075022, y: 0.034652043, z: 0.00000019983679}
rotation: {x: -0.006236443, y: 0.004024028, z: -0.0109188985, w: 0.99991286}
scale: {x: 0.9999999, y: 0.9999999, z: 0.99999964}
- name: B-middleFinger01.R
parentName: B-hand.R
position: {x: -0.00928522, y: 0.1318378, z: -0.0089382}
rotation: {x: -0.004700204, y: -0.0032572027, z: -0.001801642, w: 0.99998206}
scale: {x: 1.0000006, y: 0.9999997, z: 0.99999917}
- name: B-middleFinger02.R
parentName: B-middleFinger01.R
position: {x: -0.0000003849299, y: 0.048716273, z: -0.0000001691299}
rotation: {x: 0.039366316, y: 0.04573892, z: 0.00377753, w: 0.9981703}
scale: {x: 0.9999997, y: 1.0000004, z: 1}
- name: B-middleFinger03.R
parentName: B-middleFinger02.R
position: {x: -0.00000039262213, y: 0.035888083, z: 0.00000029152696}
rotation: {x: 0.0049846717, y: -0.02122791, z: -0.0063242065, w: 0.99974227}
scale: {x: 0.99999964, y: 0.99999994, z: 1.0000002}
- name: B-ringFinger01.R
parentName: B-hand.R
position: {x: 0.016020812, y: 0.1283572, z: -0.005707851}
rotation: {x: -0.0071167736, y: 0.0017728558, z: -0.036400504, w: 0.9993104}
scale: {x: 1.0000005, y: 0.9999992, z: 0.9999996}
- name: B-ringFinger02.R
parentName: B-ringFinger01.R
position: {x: 0.00000047158898, y: 0.045192316, z: 0.00000021597218}
rotation: {x: 0.037958622, y: -0.0021153935, z: 0.012520862, w: 0.9991986}
scale: {x: 0.99999946, y: 1.0000005, z: 0.9999997}
- name: B-ringFinger03.R
parentName: B-ringFinger02.R
position: {x: -0.0000004720245, y: 0.034694634, z: 0.00000008820079}
rotation: {x: 0.02091165, y: -0.04065229, z: -0.015794862, w: 0.99882966}
scale: {x: 1.0000002, y: 0.99999976, z: 0.9999997}
- name: B-pinky01.R
parentName: B-hand.R
position: {x: 0.041580904, y: 0.119742304, z: -0.0024299922}
rotation: {x: -0.011731888, y: -0.016481936, z: -0.04421447, w: 0.9988172}
scale: {x: 1.0000002, y: 0.9999994, z: 0.99999917}
- name: B-pinky02.R
parentName: B-pinky01.R
position: {x: 0.0000007804244, y: 0.03832724, z: 0.00000044214514}
rotation: {x: 0.039002027, y: 0.011177708, z: 0.009234122, w: 0.99913394}
scale: {x: 1.0000002, y: 1.0000006, z: 1.0000002}
- name: B-pinky03.R
parentName: B-pinky02.R
position: {x: -0.000000269953, y: 0.03220071, z: -0.0000005856981}
rotation: {x: 0.022101695, y: -0.02182341, z: 0.009210792, w: 0.99947506}
scale: {x: 1.0000005, y: 0.99999994, z: 1.0000007}
- name: B-thumb01.R
parentName: B-hand.R
position: {x: -0.039809253, y: 0.048496302, z: 0.0130518135}
rotation: {x: -0.22471787, y: 0.63045275, z: 0.29821387, w: 0.6805144}
scale: {x: 0.99999946, y: 1.0000002, z: 1.0000005}
- name: B-thumb02.R
parentName: B-thumb01.R
position: {x: 0.00000020260806, y: 0.047178134, z: 0.000000160123}
rotation: {x: 0.038173996, y: 0.013301423, z: -0.008042345, w: 0.9991502}
scale: {x: 1.0000007, y: 0.9999997, z: 0.9999999}
- name: B-thumb03.R
parentName: B-thumb02.R
position: {x: -0.00000069069114, y: 0.03520854, z: 0.00000004046409}
rotation: {x: -0.060352694, y: 0.014396386, z: 0.0074255248, w: 0.9980457}
scale: {x: 0.9999995, y: 1.0000004, z: 1}
- name: B-neck
parentName: B-chest
position: {x: -0, y: 0.27081212, z: 0.0000007058524}
rotation: {x: 0.105346866, y: 0, z: -0, w: 0.99443555}
scale: {x: 1, y: 0.9999997, z: 1.0000007}
- name: B-head
parentName: B-neck
position: {x: -0, y: 0.07409704, z: 0.00000025054106}
rotation: {x: -0.069990024, y: 0, z: -0, w: 0.9975477}
scale: {x: 1, y: 1.0000006, z: 0.99999964}
- name: B-jaw
parentName: B-head
position: {x: -0, y: 0, z: 0}
rotation: {x: 0.70698464, y: 0.000007072379, z: -0.00000706994, w: 0.7072289}
scale: {x: 1, y: 1, z: 1}
- name: B-shoulder.L
parentName: B-chest
position: {x: -0, y: 0.19125995, z: -0.005656177}
rotation: {x: -0.5165571, y: 0.44464028, z: 0.47738382, w: 0.5545886}
scale: {x: 0.9999998, y: 0.9999995, z: 1.0000002}
- name: B-upperArm.L
parentName: B-shoulder.L
position: {x: 0.00000040656337, y: 0.16193385, z: -0.0000008664629}
rotation: {x: 0.033948872, y: -0.70908755, z: 0.08334149, w: 0.69935447}
scale: {x: 0.9999998, y: 1.0000002, z: 0.9999999}
- name: B-forearm.L
parentName: B-upperArm.L
position: {x: 0.000000097359035, y: 0.2341381, z: 0.00000030291466}
rotation: {x: 0.0017385628, y: 0.0004205673, z: -0.0032047313, w: 0.99999326}
scale: {x: 0.99999994, y: 1.0000004, z: 1.0000001}
- name: B-hand.L
parentName: B-forearm.L
position: {x: 0.00000052406216, y: 0.1959644, z: -0.0000011816531}
rotation: {x: 0.013386631, y: -0.70541465, z: -0.032826252, w: 0.7079078}
scale: {x: 0.99999994, y: 0.9999992, z: 0.9999996}
- name: B-handProp.L
parentName: B-hand.L
position: {x: -0.0029615294, y: 0.10533054, z: 0.02260892}
rotation: {x: 0.67608327, y: 0.73659164, z: -0.013668119, w: 0.012545332}
scale: {x: 1.0000006, y: 0.99999946, z: 1.0000006}
- name: B-indexFinger01.L
parentName: B-hand.L
position: {x: 0.03605161, y: 0.13202417, z: -0.0022375062}
rotation: {x: 0.019054513, y: 0.014957919, z: -0.03131587, w: 0.99921596}
scale: {x: 1.0000004, y: 0.9999998, z: 1.0000002}
- name: B-indexFinger02.L
parentName: B-indexFinger01.L
position: {x: 0.00000072554116, y: 0.04675823, z: -0.0000005109258}
rotation: {x: 0.04075494, y: -0.02876944, z: 0.0030826945, w: 0.9987502}
scale: {x: 1.0000001, y: 1.0000002, z: 1.0000002}
- name: B-indexFinger03.L
parentName: B-indexFinger02.L
position: {x: -0.00000009920999, y: 0.034652077, z: 0.00000023013986}
rotation: {x: -0.0062364372, y: -0.004023549, z: 0.010918792, w: 0.99991286}
scale: {x: 0.9999998, y: 1.0000008, z: 0.9999995}
- name: B-middleFinger01.L
parentName: B-hand.L
position: {x: 0.00928522, y: 0.13183793, z: -0.008938214}
rotation: {x: -0.004700207, y: 0.0032570793, z: 0.0018007505, w: 0.99998206}
scale: {x: 1.0000007, y: 0.9999999, z: 1.0000001}
- name: B-middleFinger02.L
parentName: B-middleFinger01.L
position: {x: 0.00000028786184, y: 0.048716314, z: -0.00000017087451}
rotation: {x: 0.039368037, y: -0.045739666, z: -0.0037847473, w: 0.9981702}
scale: {x: 0.99999976, y: 1.000001, z: 1.0000006}
- name: B-middleFinger03.L
parentName: B-middleFinger02.L
position: {x: -0.00000066842983, y: 0.035888, z: 0.00000028642995}
rotation: {x: 0.0049827034, y: 0.021227859, z: 0.0063241003, w: 0.99974227}
scale: {x: 0.9999996, y: 0.99999905, z: 0.99999934}
- name: B-ringFinger01.L
parentName: B-hand.L
position: {x: -0.016021809, y: 0.12835726, z: -0.005707858}
rotation: {x: -0.007116776, y: -0.0017729683, z: 0.036399588, w: 0.99931043}
scale: {x: 1.0000005, y: 1.0000002, z: 1.0000006}
- name: B-ringFinger02.L
parentName: B-ringFinger01.L
position: {x: 0.00000043795694, y: 0.04519233, z: 0.00000021050154}
rotation: {x: 0.037963506, y: 0.0021157071, z: -0.01252746, w: 0.9991984}
scale: {x: 0.9999995, y: 0.99999964, z: 0.9999996}
- name: B-ringFinger03.L
parentName: B-ringFinger02.L
position: {x: 0.00000034561023, y: 0.03469565, z: -0.00000007648653}
rotation: {x: 0.020911071, y: 0.04065225, z: 0.015794758, w: 0.99882966}
scale: {x: 1.0000001, y: 1.0000005, z: 0.9999997}
- name: B-pinky01.L
parentName: B-hand.L
position: {x: -0.041581903, y: 0.119742356, z: -0.0024299957}
rotation: {x: -0.01172906, y: 0.01648238, z: 0.0442254, w: 0.9988167}
scale: {x: 1.0000002, y: 1.0000004, z: 1.0000002}
- name: B-pinky02.L
parentName: B-pinky01.L
position: {x: 0.00000014151807, y: 0.03832722, z: 0.00000047056287}
rotation: {x: 0.039005004, y: -0.011177422, z: -0.009239738, w: 0.99913377}
scale: {x: 1.0000002, y: 0.99999946, z: 1.0000001}
- name: B-pinky03.L
parentName: B-pinky02.L
position: {x: 0.000000233103, y: 0.032200746, z: -0.00000055902217}
rotation: {x: 0.022101717, y: 0.02182328, z: -0.009211465, w: 0.99947506}
scale: {x: 0.9999995, y: 1, z: 0.99999964}
- name: B-thumb01.L
parentName: B-hand.L
position: {x: 0.03980834, y: 0.048495278, z: 0.013051865}
rotation: {x: -0.2247114, y: -0.6304557, z: -0.2982149, w: 0.6805132}
scale: {x: 1.0000005, y: 1, z: 1.0000005}
- name: B-thumb02.L
parentName: B-thumb01.L
position: {x: -0.0000007063521, y: 0.047179468, z: -0.00000013365789}
rotation: {x: 0.038171936, y: -0.013301728, z: 0.008042519, w: 0.9991503}
scale: {x: 1.0000004, y: 1, z: 0.9999994}
- name: B-thumb03.L
parentName: B-thumb02.L
position: {x: 0.0000007190916, y: 0.035208564, z: 0.00000017922088}
rotation: {x: -0.06035389, y: -0.014396597, z: -0.007425322, w: 0.9980456}
scale: {x: 0.9999992, y: 0.99999994, z: 1.0000001}
- name: B-thigh.L
parentName: B-hips
position: {x: -0.096950985, y: -0.05446949, z: 0.0020414153}
rotation: {x: 0.9977441, y: 0.011110197, z: -0.0039620763, w: 0.066088475}
scale: {x: 1.0000002, y: 0.9999997, z: 1.000001}
- name: B-shin.L
parentName: B-thigh.L
position: {x: 0.00000018468991, y: 0.41111633, z: 0.0000005281011}
rotation: {x: 0.067057244, y: -0.00057845906, z: 0.011617889, w: 0.9976813}
scale: {x: 0.9999997, y: 1.0000002, z: 0.99999964}
- name: B-foot.L
parentName: B-shin.L
position: {x: -0.00000017405802, y: 0.3880767, z: -0.00000019306846}
rotation: {x: -0.5354999, y: 0.004330197, z: 0.0016612022, w: 0.84452266}
scale: {x: 1.0000001, y: 0.9999997, z: 0.99999976}
- name: B-toe.L
parentName: B-foot.L
position: {x: -0.00000027025197, y: 0.17254004, z: -0.000000117418054}
rotation: {x: 0.000012936387, y: 0.9622731, z: -0.27208534, w: 0.00017343421}
scale: {x: 1, y: 1.0000018, z: 0.999999}
- name: B-thigh.R
parentName: B-hips
position: {x: 0.096950985, y: -0.05446959, z: 0.0020404202}
rotation: {x: 0.9977441, y: -0.011109428, z: 0.003967029, w: 0.066088304}
scale: {x: 1.0000004, y: 0.99999976, z: 1.000008}
- name: B-shin.R
parentName: B-thigh.R
position: {x: 0.0000005496826, y: 0.41111633, z: -0.00000065481464}
rotation: {x: 0.06705632, y: 0.0005783735, z: -0.011616509, w: 0.99768144}
scale: {x: 0.9999997, y: 1.0000002, z: 1.0000007}
- name: B-foot.R
parentName: B-shin.R
position: {x: -0.00000044263592, y: 0.3880767, z: 0.000000107811644}
rotation: {x: -0.53550065, y: -0.0043338453, z: -0.0016630876, w: 0.84452206}
scale: {x: 1, y: 0.9999993, z: 0.99999994}
- name: B-toe.R
parentName: B-foot.R
position: {x: 0.00000074386196, y: 0.17254034, z: 0.00000017937037}
rotation: {x: -0.000012542016, y: 0.96227294, z: -0.27208585, w: -0.00017487761}
scale: {x: 1, y: 1.0000029, z: 0.999997}
armTwist: 0.5
foreArmTwist: 0.5
upperLegTwist: 0.5
legTwist: 0.5
armStretch: 0.05
legStretch: 0.05
feetSpacing: 0
globalScale: 1
rootMotionBoneName:
hasTranslationDoF: 0
hasExtraRoot: 0
skeletonHasParents: 1
lastHumanDescriptionAvatarSource: {fileID: 9000000, guid: 1841c298173cdad4db8df8602c8f1c8d,
type: 3}
autoGenerateAvatarMappingIfUnspecified: 1
animationType: 3
humanoidOversampling: 1
avatarSetup: 2
addHumanoidExtraRootOnlyWhenUsingAvatar: 1
importBlendShapeDeformPercent: 1
remapMaterialsIfMaterialImportModeIsNone: 0
additionalBone: 0
userData:
assetBundleName:
assetBundleVariant:
AssetOrigin:
serializedVersion: 1
productId: 154271
packageName: Human Basic Motions FREE
packageVersion: 2.4.2
assetPath: Assets/Kevin Iglesias/Human Animations/Animations/Female/Movement/Turn/HumanF@Turn01_Left.fbx
uploadId: 908942

View file

@ -1,974 +0,0 @@
fileFormatVersion: 2
guid: 793ed774c3ee38a45bea52043777b72e
ModelImporter:
serializedVersion: 22200
internalIDToNameTable: []
externalObjects: {}
materials:
materialImportMode: 0
materialName: 0
materialSearch: 1
materialLocation: 1
animations:
legacyGenerateAnimations: 4
bakeSimulation: 0
resampleCurves: 1
optimizeGameObjects: 0
removeConstantScaleCurves: 0
motionNodeName:
animationImportErrors:
animationImportWarnings:
animationRetargetingWarnings:
animationDoRetargetingWarnings: 0
importAnimatedCustomProperties: 0
importConstraints: 0
animationCompression: 0
animationRotationError: 0.5
animationPositionError: 0.5
animationScaleError: 0.5
animationWrapMode: 0
extraExposedTransformPaths: []
extraUserProperties: []
clipAnimations:
- serializedVersion: 16
name: 'HumanF@Turn01_Right [RM]'
takeName: Untitled
internalID: 3094330708855449807
firstFrame: 0
lastFrame: 30
wrapMode: 0
orientationOffsetY: 0
level: 0
cycleOffset: 0
loop: 0
hasAdditiveReferencePose: 0
loopTime: 1
loopBlend: 0
loopBlendOrientation: 0
loopBlendPositionY: 1
loopBlendPositionXZ: 1
keepOriginalOrientation: 1
keepOriginalPositionY: 1
keepOriginalPositionXZ: 1
heightFromFeet: 0
mirror: 0
bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
curves: []
events: []
transformMask:
- path:
weight: 1
- path: HumanF_BodyMesh
weight: 0
- path: Rig
weight: 1
- path: Rig/B-root
weight: 1
- path: Rig/B-root/B-hips
weight: 1
- path: Rig/B-root/B-hips/B-spine
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck/B-head
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck/B-head/B-jaw
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-handProp.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L/B-indexFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L/B-indexFinger02.L/B-indexFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L/B-middleFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L/B-middleFinger02.L/B-middleFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L/B-pinky02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L/B-pinky02.L/B-pinky03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L/B-ringFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L/B-ringFinger02.L/B-ringFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L/B-thumb02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L/B-thumb02.L/B-thumb03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-handProp.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R/B-indexFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R/B-indexFinger02.R/B-indexFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R/B-middleFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R/B-middleFinger02.R/B-middleFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R/B-pinky02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R/B-pinky02.R/B-pinky03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R/B-ringFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R/B-ringFinger02.R/B-ringFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R/B-thumb02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R/B-thumb02.R/B-thumb03.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L/B-foot.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L/B-foot.L/B-toe.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R/B-foot.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R/B-foot.R/B-toe.R
weight: 1
- path: Rig/B-root/B-spineProxy
weight: 1
maskType: 1
maskSource: {fileID: 31900000, guid: 89527f5525238ee44b3182458d85143a, type: 2}
additiveReferencePoseFrame: 0
isReadable: 0
meshes:
lODScreenPercentages: []
globalScale: 1
meshCompression: 0
addColliders: 0
useSRGBMaterialColor: 1
sortHierarchyByName: 1
importPhysicalCameras: 1
importVisibility: 1
importBlendShapes: 1
importCameras: 1
importLights: 1
nodeNameCollisionStrategy: 1
fileIdsGeneration: 2
swapUVChannels: 0
generateSecondaryUV: 0
useFileUnits: 1
keepQuads: 0
weldVertices: 1
bakeAxisConversion: 0
preserveHierarchy: 1
skinWeightsMode: 0
maxBonesPerVertex: 4
minBoneWeight: 0.001
optimizeBones: 1
meshOptimizationFlags: -1
indexFormat: 0
secondaryUVAngleDistortion: 8
secondaryUVAreaDistortion: 15.000001
secondaryUVHardAngle: 88
secondaryUVMarginMethod: 1
secondaryUVMinLightmapResolution: 40
secondaryUVMinObjectScale: 1
secondaryUVPackMargin: 4
useFileScale: 1
strictVertexDataChecks: 0
tangentSpace:
normalSmoothAngle: 60
normalImportMode: 0
tangentImportMode: 3
normalCalculationMode: 4
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0
blendShapeNormalImportMode: 1
normalSmoothingSource: 0
referencedClips: []
importAnimation: 1
humanDescription:
serializedVersion: 3
human:
- boneName: B-hips
humanName: Hips
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thigh.L
humanName: LeftUpperLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thigh.R
humanName: RightUpperLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shin.L
humanName: LeftLowerLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shin.R
humanName: RightLowerLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-foot.L
humanName: LeftFoot
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-foot.R
humanName: RightFoot
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-spine
humanName: Spine
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-chest
humanName: Chest
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-neck
humanName: Neck
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-head
humanName: Head
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shoulder.L
humanName: LeftShoulder
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shoulder.R
humanName: RightShoulder
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-upperArm.L
humanName: LeftUpperArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-upperArm.R
humanName: RightUpperArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-forearm.L
humanName: LeftLowerArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-forearm.R
humanName: RightLowerArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-hand.L
humanName: LeftHand
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-hand.R
humanName: RightHand
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-toe.L
humanName: LeftToes
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-toe.R
humanName: RightToes
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-jaw
humanName: Jaw
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb01.L
humanName: Left Thumb Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb02.L
humanName: Left Thumb Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb03.L
humanName: Left Thumb Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger01.L
humanName: Left Index Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger02.L
humanName: Left Index Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger03.L
humanName: Left Index Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger01.L
humanName: Left Middle Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger02.L
humanName: Left Middle Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger03.L
humanName: Left Middle Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger01.L
humanName: Left Ring Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger02.L
humanName: Left Ring Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger03.L
humanName: Left Ring Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky01.L
humanName: Left Little Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky02.L
humanName: Left Little Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky03.L
humanName: Left Little Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb01.R
humanName: Right Thumb Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb02.R
humanName: Right Thumb Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb03.R
humanName: Right Thumb Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger01.R
humanName: Right Index Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger02.R
humanName: Right Index Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger03.R
humanName: Right Index Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger01.R
humanName: Right Middle Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger02.R
humanName: Right Middle Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger03.R
humanName: Right Middle Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger01.R
humanName: Right Ring Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger02.R
humanName: Right Ring Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger03.R
humanName: Right Ring Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky01.R
humanName: Right Little Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky02.R
humanName: Right Little Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky03.R
humanName: Right Little Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
skeleton:
- name: Human_DummyModel_F(Clone)
parentName:
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: HumanF_BodyMesh
parentName: Human_DummyModel_F(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Rig
parentName: Human_DummyModel_F(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: B-root
parentName: Rig
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: B-spineProxy
parentName: B-root
position: {x: -0, y: 1.092844, z: 0.029147}
rotation: {x: -0.012905054, y: 0, z: -0, w: 0.99991673}
scale: {x: 1, y: 1.0000001, z: 1.0000001}
- name: B-hips
parentName: B-root
position: {x: -0, y: 0.967712, z: 0.016772}
rotation: {x: 0.04926631, y: 0, z: -0, w: 0.9987857}
scale: {x: 1, y: 1.0000004, z: 1.0000004}
- name: B-spine
parentName: B-hips
position: {x: -0, y: 0.12574437, z: 0.00000011940791}
rotation: {x: -0.062152267, y: 0, z: -0, w: 0.99806666}
scale: {x: 1, y: 0.99999976, z: 0.99999976}
- name: B-chest
parentName: B-spine
position: {x: -0, y: 0.13376056, z: -0.00000077390683}
rotation: {x: -0.02258696, y: 0, z: -0, w: 0.9997449}
scale: {x: 1, y: 0.9999996, z: 0.9999996}
- name: B-shoulder.R
parentName: B-chest
position: {x: -0, y: 0.19125995, z: -0.005656177}
rotation: {x: -0.5165573, y: -0.44464085, z: -0.47738376, w: 0.554588}
scale: {x: 1.0000008, y: 1.0000006, z: 1.0000002}
- name: B-upperArm.R
parentName: B-shoulder.R
position: {x: -0.00000043065853, y: 0.1619337, z: -0.000000866464}
rotation: {x: 0.03406315, y: 0.7090742, z: -0.08345674, w: 0.69934857}
scale: {x: 0.99999976, y: 1, z: 0.99999946}
- name: B-forearm.R
parentName: B-upperArm.R
position: {x: -0.0000005071642, y: 0.23413825, z: 0.0000019611641}
rotation: {x: 0.0013730773, y: -0.00042225965, z: 0.0032032696, w: 0.99999386}
scale: {x: 1.0000001, y: 0.99999964, z: 0.9999996}
- name: B-hand.R
parentName: B-forearm.R
position: {x: -0.000000328232, y: 0.19596381, z: -0.0000008355853}
rotation: {x: 0.013529134, y: 0.7054088, z: 0.032969795, w: 0.70790416}
scale: {x: 0.9999999, y: 1.0000002, z: 1.0000005}
- name: B-handProp.R
parentName: B-hand.R
position: {x: 0.0029605331, y: 0.10533051, z: 0.022608897}
rotation: {x: -0.67608327, y: 0.73659164, z: -0.013668106, w: -0.012545319}
scale: {x: 0.99999964, y: 1.0000005, z: 0.9999996}
- name: B-indexFinger01.R
parentName: B-hand.R
position: {x: -0.036052607, y: 0.13202412, z: -0.0022375023}
rotation: {x: 0.019054495, y: -0.0149580045, z: 0.031315368, w: 0.999216}
scale: {x: 1.0000002, y: 0.99999964, z: 0.9999993}
- name: B-indexFinger02.R
parentName: B-indexFinger01.R
position: {x: 0.00000021708313, y: 0.046758045, z: -0.0000005285747}
rotation: {x: 0.040758472, y: 0.02876925, z: -0.0030862393, w: 0.99875003}
scale: {x: 1, y: 1.0000004, z: 1.0000002}
- name: B-indexFinger03.R
parentName: B-indexFinger02.R
position: {x: 0.000000038075022, y: 0.034652043, z: 0.00000019983679}
rotation: {x: -0.006236443, y: 0.004024028, z: -0.0109188985, w: 0.99991286}
scale: {x: 0.9999999, y: 0.9999999, z: 0.99999964}
- name: B-middleFinger01.R
parentName: B-hand.R
position: {x: -0.00928522, y: 0.1318378, z: -0.0089382}
rotation: {x: -0.004700204, y: -0.0032572027, z: -0.001801642, w: 0.99998206}
scale: {x: 1.0000006, y: 0.9999997, z: 0.99999917}
- name: B-middleFinger02.R
parentName: B-middleFinger01.R
position: {x: -0.0000003849299, y: 0.048716273, z: -0.0000001691299}
rotation: {x: 0.039366316, y: 0.04573892, z: 0.00377753, w: 0.9981703}
scale: {x: 0.9999997, y: 1.0000004, z: 1}
- name: B-middleFinger03.R
parentName: B-middleFinger02.R
position: {x: -0.00000039262213, y: 0.035888083, z: 0.00000029152696}
rotation: {x: 0.0049846717, y: -0.02122791, z: -0.0063242065, w: 0.99974227}
scale: {x: 0.99999964, y: 0.99999994, z: 1.0000002}
- name: B-ringFinger01.R
parentName: B-hand.R
position: {x: 0.016020812, y: 0.1283572, z: -0.005707851}
rotation: {x: -0.0071167736, y: 0.0017728558, z: -0.036400504, w: 0.9993104}
scale: {x: 1.0000005, y: 0.9999992, z: 0.9999996}
- name: B-ringFinger02.R
parentName: B-ringFinger01.R
position: {x: 0.00000047158898, y: 0.045192316, z: 0.00000021597218}
rotation: {x: 0.037958622, y: -0.0021153935, z: 0.012520862, w: 0.9991986}
scale: {x: 0.99999946, y: 1.0000005, z: 0.9999997}
- name: B-ringFinger03.R
parentName: B-ringFinger02.R
position: {x: -0.0000004720245, y: 0.034694634, z: 0.00000008820079}
rotation: {x: 0.02091165, y: -0.04065229, z: -0.015794862, w: 0.99882966}
scale: {x: 1.0000002, y: 0.99999976, z: 0.9999997}
- name: B-pinky01.R
parentName: B-hand.R
position: {x: 0.041580904, y: 0.119742304, z: -0.0024299922}
rotation: {x: -0.011731888, y: -0.016481936, z: -0.04421447, w: 0.9988172}
scale: {x: 1.0000002, y: 0.9999994, z: 0.99999917}
- name: B-pinky02.R
parentName: B-pinky01.R
position: {x: 0.0000007804244, y: 0.03832724, z: 0.00000044214514}
rotation: {x: 0.039002027, y: 0.011177708, z: 0.009234122, w: 0.99913394}
scale: {x: 1.0000002, y: 1.0000006, z: 1.0000002}
- name: B-pinky03.R
parentName: B-pinky02.R
position: {x: -0.000000269953, y: 0.03220071, z: -0.0000005856981}
rotation: {x: 0.022101695, y: -0.02182341, z: 0.009210792, w: 0.99947506}
scale: {x: 1.0000005, y: 0.99999994, z: 1.0000007}
- name: B-thumb01.R
parentName: B-hand.R
position: {x: -0.039809253, y: 0.048496302, z: 0.0130518135}
rotation: {x: -0.22471787, y: 0.63045275, z: 0.29821387, w: 0.6805144}
scale: {x: 0.99999946, y: 1.0000002, z: 1.0000005}
- name: B-thumb02.R
parentName: B-thumb01.R
position: {x: 0.00000020260806, y: 0.047178134, z: 0.000000160123}
rotation: {x: 0.038173996, y: 0.013301423, z: -0.008042345, w: 0.9991502}
scale: {x: 1.0000007, y: 0.9999997, z: 0.9999999}
- name: B-thumb03.R
parentName: B-thumb02.R
position: {x: -0.00000069069114, y: 0.03520854, z: 0.00000004046409}
rotation: {x: -0.060352694, y: 0.014396386, z: 0.0074255248, w: 0.9980457}
scale: {x: 0.9999995, y: 1.0000004, z: 1}
- name: B-neck
parentName: B-chest
position: {x: -0, y: 0.27081212, z: 0.0000007058524}
rotation: {x: 0.105346866, y: 0, z: -0, w: 0.99443555}
scale: {x: 1, y: 0.9999997, z: 1.0000007}
- name: B-head
parentName: B-neck
position: {x: -0, y: 0.07409704, z: 0.00000025054106}
rotation: {x: -0.069990024, y: 0, z: -0, w: 0.9975477}
scale: {x: 1, y: 1.0000006, z: 0.99999964}
- name: B-jaw
parentName: B-head
position: {x: -0, y: 0, z: 0}
rotation: {x: 0.70698464, y: 0.000007072379, z: -0.00000706994, w: 0.7072289}
scale: {x: 1, y: 1, z: 1}
- name: B-shoulder.L
parentName: B-chest
position: {x: -0, y: 0.19125995, z: -0.005656177}
rotation: {x: -0.5165571, y: 0.44464028, z: 0.47738382, w: 0.5545886}
scale: {x: 0.9999998, y: 0.9999995, z: 1.0000002}
- name: B-upperArm.L
parentName: B-shoulder.L
position: {x: 0.00000040656337, y: 0.16193385, z: -0.0000008664629}
rotation: {x: 0.033948872, y: -0.70908755, z: 0.08334149, w: 0.69935447}
scale: {x: 0.9999998, y: 1.0000002, z: 0.9999999}
- name: B-forearm.L
parentName: B-upperArm.L
position: {x: 0.000000097359035, y: 0.2341381, z: 0.00000030291466}
rotation: {x: 0.0017385628, y: 0.0004205673, z: -0.0032047313, w: 0.99999326}
scale: {x: 0.99999994, y: 1.0000004, z: 1.0000001}
- name: B-hand.L
parentName: B-forearm.L
position: {x: 0.00000052406216, y: 0.1959644, z: -0.0000011816531}
rotation: {x: 0.013386631, y: -0.70541465, z: -0.032826252, w: 0.7079078}
scale: {x: 0.99999994, y: 0.9999992, z: 0.9999996}
- name: B-handProp.L
parentName: B-hand.L
position: {x: -0.0029615294, y: 0.10533054, z: 0.02260892}
rotation: {x: 0.67608327, y: 0.73659164, z: -0.013668119, w: 0.012545332}
scale: {x: 1.0000006, y: 0.99999946, z: 1.0000006}
- name: B-indexFinger01.L
parentName: B-hand.L
position: {x: 0.03605161, y: 0.13202417, z: -0.0022375062}
rotation: {x: 0.019054513, y: 0.014957919, z: -0.03131587, w: 0.99921596}
scale: {x: 1.0000004, y: 0.9999998, z: 1.0000002}
- name: B-indexFinger02.L
parentName: B-indexFinger01.L
position: {x: 0.00000072554116, y: 0.04675823, z: -0.0000005109258}
rotation: {x: 0.04075494, y: -0.02876944, z: 0.0030826945, w: 0.9987502}
scale: {x: 1.0000001, y: 1.0000002, z: 1.0000002}
- name: B-indexFinger03.L
parentName: B-indexFinger02.L
position: {x: -0.00000009920999, y: 0.034652077, z: 0.00000023013986}
rotation: {x: -0.0062364372, y: -0.004023549, z: 0.010918792, w: 0.99991286}
scale: {x: 0.9999998, y: 1.0000008, z: 0.9999995}
- name: B-middleFinger01.L
parentName: B-hand.L
position: {x: 0.00928522, y: 0.13183793, z: -0.008938214}
rotation: {x: -0.004700207, y: 0.0032570793, z: 0.0018007505, w: 0.99998206}
scale: {x: 1.0000007, y: 0.9999999, z: 1.0000001}
- name: B-middleFinger02.L
parentName: B-middleFinger01.L
position: {x: 0.00000028786184, y: 0.048716314, z: -0.00000017087451}
rotation: {x: 0.039368037, y: -0.045739666, z: -0.0037847473, w: 0.9981702}
scale: {x: 0.99999976, y: 1.000001, z: 1.0000006}
- name: B-middleFinger03.L
parentName: B-middleFinger02.L
position: {x: -0.00000066842983, y: 0.035888, z: 0.00000028642995}
rotation: {x: 0.0049827034, y: 0.021227859, z: 0.0063241003, w: 0.99974227}
scale: {x: 0.9999996, y: 0.99999905, z: 0.99999934}
- name: B-ringFinger01.L
parentName: B-hand.L
position: {x: -0.016021809, y: 0.12835726, z: -0.005707858}
rotation: {x: -0.007116776, y: -0.0017729683, z: 0.036399588, w: 0.99931043}
scale: {x: 1.0000005, y: 1.0000002, z: 1.0000006}
- name: B-ringFinger02.L
parentName: B-ringFinger01.L
position: {x: 0.00000043795694, y: 0.04519233, z: 0.00000021050154}
rotation: {x: 0.037963506, y: 0.0021157071, z: -0.01252746, w: 0.9991984}
scale: {x: 0.9999995, y: 0.99999964, z: 0.9999996}
- name: B-ringFinger03.L
parentName: B-ringFinger02.L
position: {x: 0.00000034561023, y: 0.03469565, z: -0.00000007648653}
rotation: {x: 0.020911071, y: 0.04065225, z: 0.015794758, w: 0.99882966}
scale: {x: 1.0000001, y: 1.0000005, z: 0.9999997}
- name: B-pinky01.L
parentName: B-hand.L
position: {x: -0.041581903, y: 0.119742356, z: -0.0024299957}
rotation: {x: -0.01172906, y: 0.01648238, z: 0.0442254, w: 0.9988167}
scale: {x: 1.0000002, y: 1.0000004, z: 1.0000002}
- name: B-pinky02.L
parentName: B-pinky01.L
position: {x: 0.00000014151807, y: 0.03832722, z: 0.00000047056287}
rotation: {x: 0.039005004, y: -0.011177422, z: -0.009239738, w: 0.99913377}
scale: {x: 1.0000002, y: 0.99999946, z: 1.0000001}
- name: B-pinky03.L
parentName: B-pinky02.L
position: {x: 0.000000233103, y: 0.032200746, z: -0.00000055902217}
rotation: {x: 0.022101717, y: 0.02182328, z: -0.009211465, w: 0.99947506}
scale: {x: 0.9999995, y: 1, z: 0.99999964}
- name: B-thumb01.L
parentName: B-hand.L
position: {x: 0.03980834, y: 0.048495278, z: 0.013051865}
rotation: {x: -0.2247114, y: -0.6304557, z: -0.2982149, w: 0.6805132}
scale: {x: 1.0000005, y: 1, z: 1.0000005}
- name: B-thumb02.L
parentName: B-thumb01.L
position: {x: -0.0000007063521, y: 0.047179468, z: -0.00000013365789}
rotation: {x: 0.038171936, y: -0.013301728, z: 0.008042519, w: 0.9991503}
scale: {x: 1.0000004, y: 1, z: 0.9999994}
- name: B-thumb03.L
parentName: B-thumb02.L
position: {x: 0.0000007190916, y: 0.035208564, z: 0.00000017922088}
rotation: {x: -0.06035389, y: -0.014396597, z: -0.007425322, w: 0.9980456}
scale: {x: 0.9999992, y: 0.99999994, z: 1.0000001}
- name: B-thigh.L
parentName: B-hips
position: {x: -0.096950985, y: -0.05446949, z: 0.0020414153}
rotation: {x: 0.9977441, y: 0.011110197, z: -0.0039620763, w: 0.066088475}
scale: {x: 1.0000002, y: 0.9999997, z: 1.000001}
- name: B-shin.L
parentName: B-thigh.L
position: {x: 0.00000018468991, y: 0.41111633, z: 0.0000005281011}
rotation: {x: 0.067057244, y: -0.00057845906, z: 0.011617889, w: 0.9976813}
scale: {x: 0.9999997, y: 1.0000002, z: 0.99999964}
- name: B-foot.L
parentName: B-shin.L
position: {x: -0.00000017405802, y: 0.3880767, z: -0.00000019306846}
rotation: {x: -0.5354999, y: 0.004330197, z: 0.0016612022, w: 0.84452266}
scale: {x: 1.0000001, y: 0.9999997, z: 0.99999976}
- name: B-toe.L
parentName: B-foot.L
position: {x: -0.00000027025197, y: 0.17254004, z: -0.000000117418054}
rotation: {x: 0.000012936387, y: 0.9622731, z: -0.27208534, w: 0.00017343421}
scale: {x: 1, y: 1.0000018, z: 0.999999}
- name: B-thigh.R
parentName: B-hips
position: {x: 0.096950985, y: -0.05446959, z: 0.0020404202}
rotation: {x: 0.9977441, y: -0.011109428, z: 0.003967029, w: 0.066088304}
scale: {x: 1.0000004, y: 0.99999976, z: 1.000008}
- name: B-shin.R
parentName: B-thigh.R
position: {x: 0.0000005496826, y: 0.41111633, z: -0.00000065481464}
rotation: {x: 0.06705632, y: 0.0005783735, z: -0.011616509, w: 0.99768144}
scale: {x: 0.9999997, y: 1.0000002, z: 1.0000007}
- name: B-foot.R
parentName: B-shin.R
position: {x: -0.00000044263592, y: 0.3880767, z: 0.000000107811644}
rotation: {x: -0.53550065, y: -0.0043338453, z: -0.0016630876, w: 0.84452206}
scale: {x: 1, y: 0.9999993, z: 0.99999994}
- name: B-toe.R
parentName: B-foot.R
position: {x: 0.00000074386196, y: 0.17254034, z: 0.00000017937037}
rotation: {x: -0.000012542016, y: 0.96227294, z: -0.27208585, w: -0.00017487761}
scale: {x: 1, y: 1.0000029, z: 0.999997}
armTwist: 0.5
foreArmTwist: 0.5
upperLegTwist: 0.5
legTwist: 0.5
armStretch: 0.05
legStretch: 0.05
feetSpacing: 0
globalScale: 1
rootMotionBoneName:
hasTranslationDoF: 0
hasExtraRoot: 0
skeletonHasParents: 1
lastHumanDescriptionAvatarSource: {fileID: 9000000, guid: 1841c298173cdad4db8df8602c8f1c8d,
type: 3}
autoGenerateAvatarMappingIfUnspecified: 1
animationType: 3
humanoidOversampling: 1
avatarSetup: 2
addHumanoidExtraRootOnlyWhenUsingAvatar: 1
importBlendShapeDeformPercent: 1
remapMaterialsIfMaterialImportModeIsNone: 0
additionalBone: 0
userData:
assetBundleName:
assetBundleVariant:
AssetOrigin:
serializedVersion: 1
productId: 154271
packageName: Human Basic Motions FREE
packageVersion: 2.4.2
assetPath: Assets/Kevin Iglesias/Human Animations/Animations/Female/Movement/Turn/HumanF@Turn01_Right
[RM].fbx
uploadId: 908942

View file

@ -1,973 +0,0 @@
fileFormatVersion: 2
guid: b4ae722a24b2a8d4b98cbe5ddda51e41
ModelImporter:
serializedVersion: 22200
internalIDToNameTable: []
externalObjects: {}
materials:
materialImportMode: 0
materialName: 0
materialSearch: 1
materialLocation: 1
animations:
legacyGenerateAnimations: 4
bakeSimulation: 0
resampleCurves: 1
optimizeGameObjects: 0
removeConstantScaleCurves: 0
motionNodeName:
animationImportErrors:
animationImportWarnings:
animationRetargetingWarnings:
animationDoRetargetingWarnings: 0
importAnimatedCustomProperties: 0
importConstraints: 0
animationCompression: 0
animationRotationError: 0.5
animationPositionError: 0.5
animationScaleError: 0.5
animationWrapMode: 0
extraExposedTransformPaths: []
extraUserProperties: []
clipAnimations:
- serializedVersion: 16
name: HumanF@Turn01_Right
takeName: Untitled
internalID: 3094330708855449807
firstFrame: 0
lastFrame: 30
wrapMode: 0
orientationOffsetY: 0
level: 0
cycleOffset: 0
loop: 0
hasAdditiveReferencePose: 0
loopTime: 1
loopBlend: 0
loopBlendOrientation: 1
loopBlendPositionY: 1
loopBlendPositionXZ: 1
keepOriginalOrientation: 1
keepOriginalPositionY: 1
keepOriginalPositionXZ: 1
heightFromFeet: 0
mirror: 0
bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
curves: []
events: []
transformMask:
- path:
weight: 1
- path: HumanF_BodyMesh
weight: 0
- path: Rig
weight: 1
- path: Rig/B-root
weight: 1
- path: Rig/B-root/B-hips
weight: 1
- path: Rig/B-root/B-hips/B-spine
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck/B-head
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck/B-head/B-jaw
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-handProp.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L/B-indexFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L/B-indexFinger02.L/B-indexFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L/B-middleFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L/B-middleFinger02.L/B-middleFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L/B-pinky02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L/B-pinky02.L/B-pinky03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L/B-ringFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L/B-ringFinger02.L/B-ringFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L/B-thumb02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L/B-thumb02.L/B-thumb03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-handProp.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R/B-indexFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R/B-indexFinger02.R/B-indexFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R/B-middleFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R/B-middleFinger02.R/B-middleFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R/B-pinky02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R/B-pinky02.R/B-pinky03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R/B-ringFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R/B-ringFinger02.R/B-ringFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R/B-thumb02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R/B-thumb02.R/B-thumb03.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L/B-foot.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L/B-foot.L/B-toe.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R/B-foot.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R/B-foot.R/B-toe.R
weight: 1
- path: Rig/B-root/B-spineProxy
weight: 1
maskType: 1
maskSource: {fileID: 31900000, guid: 89527f5525238ee44b3182458d85143a, type: 2}
additiveReferencePoseFrame: 0
isReadable: 0
meshes:
lODScreenPercentages: []
globalScale: 1
meshCompression: 0
addColliders: 0
useSRGBMaterialColor: 1
sortHierarchyByName: 1
importPhysicalCameras: 1
importVisibility: 1
importBlendShapes: 1
importCameras: 1
importLights: 1
nodeNameCollisionStrategy: 1
fileIdsGeneration: 2
swapUVChannels: 0
generateSecondaryUV: 0
useFileUnits: 1
keepQuads: 0
weldVertices: 1
bakeAxisConversion: 0
preserveHierarchy: 1
skinWeightsMode: 0
maxBonesPerVertex: 4
minBoneWeight: 0.001
optimizeBones: 1
meshOptimizationFlags: -1
indexFormat: 0
secondaryUVAngleDistortion: 8
secondaryUVAreaDistortion: 15.000001
secondaryUVHardAngle: 88
secondaryUVMarginMethod: 1
secondaryUVMinLightmapResolution: 40
secondaryUVMinObjectScale: 1
secondaryUVPackMargin: 4
useFileScale: 1
strictVertexDataChecks: 0
tangentSpace:
normalSmoothAngle: 60
normalImportMode: 0
tangentImportMode: 3
normalCalculationMode: 4
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0
blendShapeNormalImportMode: 1
normalSmoothingSource: 0
referencedClips: []
importAnimation: 1
humanDescription:
serializedVersion: 3
human:
- boneName: B-hips
humanName: Hips
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thigh.L
humanName: LeftUpperLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thigh.R
humanName: RightUpperLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shin.L
humanName: LeftLowerLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shin.R
humanName: RightLowerLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-foot.L
humanName: LeftFoot
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-foot.R
humanName: RightFoot
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-spine
humanName: Spine
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-chest
humanName: Chest
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-neck
humanName: Neck
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-head
humanName: Head
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shoulder.L
humanName: LeftShoulder
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shoulder.R
humanName: RightShoulder
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-upperArm.L
humanName: LeftUpperArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-upperArm.R
humanName: RightUpperArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-forearm.L
humanName: LeftLowerArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-forearm.R
humanName: RightLowerArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-hand.L
humanName: LeftHand
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-hand.R
humanName: RightHand
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-toe.L
humanName: LeftToes
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-toe.R
humanName: RightToes
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-jaw
humanName: Jaw
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb01.L
humanName: Left Thumb Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb02.L
humanName: Left Thumb Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb03.L
humanName: Left Thumb Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger01.L
humanName: Left Index Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger02.L
humanName: Left Index Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger03.L
humanName: Left Index Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger01.L
humanName: Left Middle Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger02.L
humanName: Left Middle Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger03.L
humanName: Left Middle Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger01.L
humanName: Left Ring Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger02.L
humanName: Left Ring Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger03.L
humanName: Left Ring Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky01.L
humanName: Left Little Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky02.L
humanName: Left Little Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky03.L
humanName: Left Little Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb01.R
humanName: Right Thumb Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb02.R
humanName: Right Thumb Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb03.R
humanName: Right Thumb Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger01.R
humanName: Right Index Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger02.R
humanName: Right Index Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger03.R
humanName: Right Index Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger01.R
humanName: Right Middle Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger02.R
humanName: Right Middle Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger03.R
humanName: Right Middle Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger01.R
humanName: Right Ring Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger02.R
humanName: Right Ring Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger03.R
humanName: Right Ring Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky01.R
humanName: Right Little Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky02.R
humanName: Right Little Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky03.R
humanName: Right Little Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
skeleton:
- name: Human_DummyModel_F(Clone)
parentName:
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: HumanF_BodyMesh
parentName: Human_DummyModel_F(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Rig
parentName: Human_DummyModel_F(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: B-root
parentName: Rig
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: B-spineProxy
parentName: B-root
position: {x: -0, y: 1.092844, z: 0.029147}
rotation: {x: -0.012905054, y: 0, z: -0, w: 0.99991673}
scale: {x: 1, y: 1.0000001, z: 1.0000001}
- name: B-hips
parentName: B-root
position: {x: -0, y: 0.967712, z: 0.016772}
rotation: {x: 0.04926631, y: 0, z: -0, w: 0.9987857}
scale: {x: 1, y: 1.0000004, z: 1.0000004}
- name: B-spine
parentName: B-hips
position: {x: -0, y: 0.12574437, z: 0.00000011940791}
rotation: {x: -0.062152267, y: 0, z: -0, w: 0.99806666}
scale: {x: 1, y: 0.99999976, z: 0.99999976}
- name: B-chest
parentName: B-spine
position: {x: -0, y: 0.13376056, z: -0.00000077390683}
rotation: {x: -0.02258696, y: 0, z: -0, w: 0.9997449}
scale: {x: 1, y: 0.9999996, z: 0.9999996}
- name: B-shoulder.R
parentName: B-chest
position: {x: -0, y: 0.19125995, z: -0.005656177}
rotation: {x: -0.5165573, y: -0.44464085, z: -0.47738376, w: 0.554588}
scale: {x: 1.0000008, y: 1.0000006, z: 1.0000002}
- name: B-upperArm.R
parentName: B-shoulder.R
position: {x: -0.00000043065853, y: 0.1619337, z: -0.000000866464}
rotation: {x: 0.03406315, y: 0.7090742, z: -0.08345674, w: 0.69934857}
scale: {x: 0.99999976, y: 1, z: 0.99999946}
- name: B-forearm.R
parentName: B-upperArm.R
position: {x: -0.0000005071642, y: 0.23413825, z: 0.0000019611641}
rotation: {x: 0.0013730773, y: -0.00042225965, z: 0.0032032696, w: 0.99999386}
scale: {x: 1.0000001, y: 0.99999964, z: 0.9999996}
- name: B-hand.R
parentName: B-forearm.R
position: {x: -0.000000328232, y: 0.19596381, z: -0.0000008355853}
rotation: {x: 0.013529134, y: 0.7054088, z: 0.032969795, w: 0.70790416}
scale: {x: 0.9999999, y: 1.0000002, z: 1.0000005}
- name: B-handProp.R
parentName: B-hand.R
position: {x: 0.0029605331, y: 0.10533051, z: 0.022608897}
rotation: {x: -0.67608327, y: 0.73659164, z: -0.013668106, w: -0.012545319}
scale: {x: 0.99999964, y: 1.0000005, z: 0.9999996}
- name: B-indexFinger01.R
parentName: B-hand.R
position: {x: -0.036052607, y: 0.13202412, z: -0.0022375023}
rotation: {x: 0.019054495, y: -0.0149580045, z: 0.031315368, w: 0.999216}
scale: {x: 1.0000002, y: 0.99999964, z: 0.9999993}
- name: B-indexFinger02.R
parentName: B-indexFinger01.R
position: {x: 0.00000021708313, y: 0.046758045, z: -0.0000005285747}
rotation: {x: 0.040758472, y: 0.02876925, z: -0.0030862393, w: 0.99875003}
scale: {x: 1, y: 1.0000004, z: 1.0000002}
- name: B-indexFinger03.R
parentName: B-indexFinger02.R
position: {x: 0.000000038075022, y: 0.034652043, z: 0.00000019983679}
rotation: {x: -0.006236443, y: 0.004024028, z: -0.0109188985, w: 0.99991286}
scale: {x: 0.9999999, y: 0.9999999, z: 0.99999964}
- name: B-middleFinger01.R
parentName: B-hand.R
position: {x: -0.00928522, y: 0.1318378, z: -0.0089382}
rotation: {x: -0.004700204, y: -0.0032572027, z: -0.001801642, w: 0.99998206}
scale: {x: 1.0000006, y: 0.9999997, z: 0.99999917}
- name: B-middleFinger02.R
parentName: B-middleFinger01.R
position: {x: -0.0000003849299, y: 0.048716273, z: -0.0000001691299}
rotation: {x: 0.039366316, y: 0.04573892, z: 0.00377753, w: 0.9981703}
scale: {x: 0.9999997, y: 1.0000004, z: 1}
- name: B-middleFinger03.R
parentName: B-middleFinger02.R
position: {x: -0.00000039262213, y: 0.035888083, z: 0.00000029152696}
rotation: {x: 0.0049846717, y: -0.02122791, z: -0.0063242065, w: 0.99974227}
scale: {x: 0.99999964, y: 0.99999994, z: 1.0000002}
- name: B-ringFinger01.R
parentName: B-hand.R
position: {x: 0.016020812, y: 0.1283572, z: -0.005707851}
rotation: {x: -0.0071167736, y: 0.0017728558, z: -0.036400504, w: 0.9993104}
scale: {x: 1.0000005, y: 0.9999992, z: 0.9999996}
- name: B-ringFinger02.R
parentName: B-ringFinger01.R
position: {x: 0.00000047158898, y: 0.045192316, z: 0.00000021597218}
rotation: {x: 0.037958622, y: -0.0021153935, z: 0.012520862, w: 0.9991986}
scale: {x: 0.99999946, y: 1.0000005, z: 0.9999997}
- name: B-ringFinger03.R
parentName: B-ringFinger02.R
position: {x: -0.0000004720245, y: 0.034694634, z: 0.00000008820079}
rotation: {x: 0.02091165, y: -0.04065229, z: -0.015794862, w: 0.99882966}
scale: {x: 1.0000002, y: 0.99999976, z: 0.9999997}
- name: B-pinky01.R
parentName: B-hand.R
position: {x: 0.041580904, y: 0.119742304, z: -0.0024299922}
rotation: {x: -0.011731888, y: -0.016481936, z: -0.04421447, w: 0.9988172}
scale: {x: 1.0000002, y: 0.9999994, z: 0.99999917}
- name: B-pinky02.R
parentName: B-pinky01.R
position: {x: 0.0000007804244, y: 0.03832724, z: 0.00000044214514}
rotation: {x: 0.039002027, y: 0.011177708, z: 0.009234122, w: 0.99913394}
scale: {x: 1.0000002, y: 1.0000006, z: 1.0000002}
- name: B-pinky03.R
parentName: B-pinky02.R
position: {x: -0.000000269953, y: 0.03220071, z: -0.0000005856981}
rotation: {x: 0.022101695, y: -0.02182341, z: 0.009210792, w: 0.99947506}
scale: {x: 1.0000005, y: 0.99999994, z: 1.0000007}
- name: B-thumb01.R
parentName: B-hand.R
position: {x: -0.039809253, y: 0.048496302, z: 0.0130518135}
rotation: {x: -0.22471787, y: 0.63045275, z: 0.29821387, w: 0.6805144}
scale: {x: 0.99999946, y: 1.0000002, z: 1.0000005}
- name: B-thumb02.R
parentName: B-thumb01.R
position: {x: 0.00000020260806, y: 0.047178134, z: 0.000000160123}
rotation: {x: 0.038173996, y: 0.013301423, z: -0.008042345, w: 0.9991502}
scale: {x: 1.0000007, y: 0.9999997, z: 0.9999999}
- name: B-thumb03.R
parentName: B-thumb02.R
position: {x: -0.00000069069114, y: 0.03520854, z: 0.00000004046409}
rotation: {x: -0.060352694, y: 0.014396386, z: 0.0074255248, w: 0.9980457}
scale: {x: 0.9999995, y: 1.0000004, z: 1}
- name: B-neck
parentName: B-chest
position: {x: -0, y: 0.27081212, z: 0.0000007058524}
rotation: {x: 0.105346866, y: 0, z: -0, w: 0.99443555}
scale: {x: 1, y: 0.9999997, z: 1.0000007}
- name: B-head
parentName: B-neck
position: {x: -0, y: 0.07409704, z: 0.00000025054106}
rotation: {x: -0.069990024, y: 0, z: -0, w: 0.9975477}
scale: {x: 1, y: 1.0000006, z: 0.99999964}
- name: B-jaw
parentName: B-head
position: {x: -0, y: 0, z: 0}
rotation: {x: 0.70698464, y: 0.000007072379, z: -0.00000706994, w: 0.7072289}
scale: {x: 1, y: 1, z: 1}
- name: B-shoulder.L
parentName: B-chest
position: {x: -0, y: 0.19125995, z: -0.005656177}
rotation: {x: -0.5165571, y: 0.44464028, z: 0.47738382, w: 0.5545886}
scale: {x: 0.9999998, y: 0.9999995, z: 1.0000002}
- name: B-upperArm.L
parentName: B-shoulder.L
position: {x: 0.00000040656337, y: 0.16193385, z: -0.0000008664629}
rotation: {x: 0.033948872, y: -0.70908755, z: 0.08334149, w: 0.69935447}
scale: {x: 0.9999998, y: 1.0000002, z: 0.9999999}
- name: B-forearm.L
parentName: B-upperArm.L
position: {x: 0.000000097359035, y: 0.2341381, z: 0.00000030291466}
rotation: {x: 0.0017385628, y: 0.0004205673, z: -0.0032047313, w: 0.99999326}
scale: {x: 0.99999994, y: 1.0000004, z: 1.0000001}
- name: B-hand.L
parentName: B-forearm.L
position: {x: 0.00000052406216, y: 0.1959644, z: -0.0000011816531}
rotation: {x: 0.013386631, y: -0.70541465, z: -0.032826252, w: 0.7079078}
scale: {x: 0.99999994, y: 0.9999992, z: 0.9999996}
- name: B-handProp.L
parentName: B-hand.L
position: {x: -0.0029615294, y: 0.10533054, z: 0.02260892}
rotation: {x: 0.67608327, y: 0.73659164, z: -0.013668119, w: 0.012545332}
scale: {x: 1.0000006, y: 0.99999946, z: 1.0000006}
- name: B-indexFinger01.L
parentName: B-hand.L
position: {x: 0.03605161, y: 0.13202417, z: -0.0022375062}
rotation: {x: 0.019054513, y: 0.014957919, z: -0.03131587, w: 0.99921596}
scale: {x: 1.0000004, y: 0.9999998, z: 1.0000002}
- name: B-indexFinger02.L
parentName: B-indexFinger01.L
position: {x: 0.00000072554116, y: 0.04675823, z: -0.0000005109258}
rotation: {x: 0.04075494, y: -0.02876944, z: 0.0030826945, w: 0.9987502}
scale: {x: 1.0000001, y: 1.0000002, z: 1.0000002}
- name: B-indexFinger03.L
parentName: B-indexFinger02.L
position: {x: -0.00000009920999, y: 0.034652077, z: 0.00000023013986}
rotation: {x: -0.0062364372, y: -0.004023549, z: 0.010918792, w: 0.99991286}
scale: {x: 0.9999998, y: 1.0000008, z: 0.9999995}
- name: B-middleFinger01.L
parentName: B-hand.L
position: {x: 0.00928522, y: 0.13183793, z: -0.008938214}
rotation: {x: -0.004700207, y: 0.0032570793, z: 0.0018007505, w: 0.99998206}
scale: {x: 1.0000007, y: 0.9999999, z: 1.0000001}
- name: B-middleFinger02.L
parentName: B-middleFinger01.L
position: {x: 0.00000028786184, y: 0.048716314, z: -0.00000017087451}
rotation: {x: 0.039368037, y: -0.045739666, z: -0.0037847473, w: 0.9981702}
scale: {x: 0.99999976, y: 1.000001, z: 1.0000006}
- name: B-middleFinger03.L
parentName: B-middleFinger02.L
position: {x: -0.00000066842983, y: 0.035888, z: 0.00000028642995}
rotation: {x: 0.0049827034, y: 0.021227859, z: 0.0063241003, w: 0.99974227}
scale: {x: 0.9999996, y: 0.99999905, z: 0.99999934}
- name: B-ringFinger01.L
parentName: B-hand.L
position: {x: -0.016021809, y: 0.12835726, z: -0.005707858}
rotation: {x: -0.007116776, y: -0.0017729683, z: 0.036399588, w: 0.99931043}
scale: {x: 1.0000005, y: 1.0000002, z: 1.0000006}
- name: B-ringFinger02.L
parentName: B-ringFinger01.L
position: {x: 0.00000043795694, y: 0.04519233, z: 0.00000021050154}
rotation: {x: 0.037963506, y: 0.0021157071, z: -0.01252746, w: 0.9991984}
scale: {x: 0.9999995, y: 0.99999964, z: 0.9999996}
- name: B-ringFinger03.L
parentName: B-ringFinger02.L
position: {x: 0.00000034561023, y: 0.03469565, z: -0.00000007648653}
rotation: {x: 0.020911071, y: 0.04065225, z: 0.015794758, w: 0.99882966}
scale: {x: 1.0000001, y: 1.0000005, z: 0.9999997}
- name: B-pinky01.L
parentName: B-hand.L
position: {x: -0.041581903, y: 0.119742356, z: -0.0024299957}
rotation: {x: -0.01172906, y: 0.01648238, z: 0.0442254, w: 0.9988167}
scale: {x: 1.0000002, y: 1.0000004, z: 1.0000002}
- name: B-pinky02.L
parentName: B-pinky01.L
position: {x: 0.00000014151807, y: 0.03832722, z: 0.00000047056287}
rotation: {x: 0.039005004, y: -0.011177422, z: -0.009239738, w: 0.99913377}
scale: {x: 1.0000002, y: 0.99999946, z: 1.0000001}
- name: B-pinky03.L
parentName: B-pinky02.L
position: {x: 0.000000233103, y: 0.032200746, z: -0.00000055902217}
rotation: {x: 0.022101717, y: 0.02182328, z: -0.009211465, w: 0.99947506}
scale: {x: 0.9999995, y: 1, z: 0.99999964}
- name: B-thumb01.L
parentName: B-hand.L
position: {x: 0.03980834, y: 0.048495278, z: 0.013051865}
rotation: {x: -0.2247114, y: -0.6304557, z: -0.2982149, w: 0.6805132}
scale: {x: 1.0000005, y: 1, z: 1.0000005}
- name: B-thumb02.L
parentName: B-thumb01.L
position: {x: -0.0000007063521, y: 0.047179468, z: -0.00000013365789}
rotation: {x: 0.038171936, y: -0.013301728, z: 0.008042519, w: 0.9991503}
scale: {x: 1.0000004, y: 1, z: 0.9999994}
- name: B-thumb03.L
parentName: B-thumb02.L
position: {x: 0.0000007190916, y: 0.035208564, z: 0.00000017922088}
rotation: {x: -0.06035389, y: -0.014396597, z: -0.007425322, w: 0.9980456}
scale: {x: 0.9999992, y: 0.99999994, z: 1.0000001}
- name: B-thigh.L
parentName: B-hips
position: {x: -0.096950985, y: -0.05446949, z: 0.0020414153}
rotation: {x: 0.9977441, y: 0.011110197, z: -0.0039620763, w: 0.066088475}
scale: {x: 1.0000002, y: 0.9999997, z: 1.000001}
- name: B-shin.L
parentName: B-thigh.L
position: {x: 0.00000018468991, y: 0.41111633, z: 0.0000005281011}
rotation: {x: 0.067057244, y: -0.00057845906, z: 0.011617889, w: 0.9976813}
scale: {x: 0.9999997, y: 1.0000002, z: 0.99999964}
- name: B-foot.L
parentName: B-shin.L
position: {x: -0.00000017405802, y: 0.3880767, z: -0.00000019306846}
rotation: {x: -0.5354999, y: 0.004330197, z: 0.0016612022, w: 0.84452266}
scale: {x: 1.0000001, y: 0.9999997, z: 0.99999976}
- name: B-toe.L
parentName: B-foot.L
position: {x: -0.00000027025197, y: 0.17254004, z: -0.000000117418054}
rotation: {x: 0.000012936387, y: 0.9622731, z: -0.27208534, w: 0.00017343421}
scale: {x: 1, y: 1.0000018, z: 0.999999}
- name: B-thigh.R
parentName: B-hips
position: {x: 0.096950985, y: -0.05446959, z: 0.0020404202}
rotation: {x: 0.9977441, y: -0.011109428, z: 0.003967029, w: 0.066088304}
scale: {x: 1.0000004, y: 0.99999976, z: 1.000008}
- name: B-shin.R
parentName: B-thigh.R
position: {x: 0.0000005496826, y: 0.41111633, z: -0.00000065481464}
rotation: {x: 0.06705632, y: 0.0005783735, z: -0.011616509, w: 0.99768144}
scale: {x: 0.9999997, y: 1.0000002, z: 1.0000007}
- name: B-foot.R
parentName: B-shin.R
position: {x: -0.00000044263592, y: 0.3880767, z: 0.000000107811644}
rotation: {x: -0.53550065, y: -0.0043338453, z: -0.0016630876, w: 0.84452206}
scale: {x: 1, y: 0.9999993, z: 0.99999994}
- name: B-toe.R
parentName: B-foot.R
position: {x: 0.00000074386196, y: 0.17254034, z: 0.00000017937037}
rotation: {x: -0.000012542016, y: 0.96227294, z: -0.27208585, w: -0.00017487761}
scale: {x: 1, y: 1.0000029, z: 0.999997}
armTwist: 0.5
foreArmTwist: 0.5
upperLegTwist: 0.5
legTwist: 0.5
armStretch: 0.05
legStretch: 0.05
feetSpacing: 0
globalScale: 1
rootMotionBoneName:
hasTranslationDoF: 0
hasExtraRoot: 0
skeletonHasParents: 1
lastHumanDescriptionAvatarSource: {fileID: 9000000, guid: 1841c298173cdad4db8df8602c8f1c8d,
type: 3}
autoGenerateAvatarMappingIfUnspecified: 1
animationType: 3
humanoidOversampling: 1
avatarSetup: 2
addHumanoidExtraRootOnlyWhenUsingAvatar: 1
importBlendShapeDeformPercent: 1
remapMaterialsIfMaterialImportModeIsNone: 0
additionalBone: 0
userData:
assetBundleName:
assetBundleVariant:
AssetOrigin:
serializedVersion: 1
productId: 154271
packageName: Human Basic Motions FREE
packageVersion: 2.4.2
assetPath: Assets/Kevin Iglesias/Human Animations/Animations/Female/Movement/Turn/HumanF@Turn01_Right.fbx
uploadId: 908942

View file

@ -1,8 +0,0 @@
fileFormatVersion: 2
guid: d349d325a9834be45b2b56a3ffac92d4
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View file

@ -1,973 +0,0 @@
fileFormatVersion: 2
guid: 5694ab536c5e48a45873f22b86e57688
ModelImporter:
serializedVersion: 22200
internalIDToNameTable: []
externalObjects: {}
materials:
materialImportMode: 0
materialName: 0
materialSearch: 1
materialLocation: 1
animations:
legacyGenerateAnimations: 4
bakeSimulation: 0
resampleCurves: 1
optimizeGameObjects: 0
removeConstantScaleCurves: 0
motionNodeName:
animationImportErrors:
animationImportWarnings:
animationRetargetingWarnings:
animationDoRetargetingWarnings: 0
importAnimatedCustomProperties: 0
importConstraints: 0
animationCompression: 0
animationRotationError: 0.5
animationPositionError: 0.5
animationScaleError: 0.5
animationWrapMode: 0
extraExposedTransformPaths: []
extraUserProperties: []
clipAnimations:
- serializedVersion: 16
name: HumanF@Walk01_Backward
takeName: Untitled
internalID: 3094330708855449807
firstFrame: 0
lastFrame: 24
wrapMode: 0
orientationOffsetY: 0
level: 0
cycleOffset: 0
loop: 0
hasAdditiveReferencePose: 0
loopTime: 1
loopBlend: 0
loopBlendOrientation: 1
loopBlendPositionY: 1
loopBlendPositionXZ: 1
keepOriginalOrientation: 1
keepOriginalPositionY: 1
keepOriginalPositionXZ: 1
heightFromFeet: 0
mirror: 0
bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
curves: []
events: []
transformMask:
- path:
weight: 1
- path: HumanF_BodyMesh
weight: 0
- path: Rig
weight: 1
- path: Rig/B-root
weight: 1
- path: Rig/B-root/B-hips
weight: 1
- path: Rig/B-root/B-hips/B-spine
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck/B-head
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck/B-head/B-jaw
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-handProp.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L/B-indexFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L/B-indexFinger02.L/B-indexFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L/B-middleFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L/B-middleFinger02.L/B-middleFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L/B-pinky02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L/B-pinky02.L/B-pinky03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L/B-ringFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L/B-ringFinger02.L/B-ringFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L/B-thumb02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L/B-thumb02.L/B-thumb03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-handProp.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R/B-indexFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R/B-indexFinger02.R/B-indexFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R/B-middleFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R/B-middleFinger02.R/B-middleFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R/B-pinky02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R/B-pinky02.R/B-pinky03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R/B-ringFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R/B-ringFinger02.R/B-ringFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R/B-thumb02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R/B-thumb02.R/B-thumb03.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L/B-foot.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L/B-foot.L/B-toe.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R/B-foot.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R/B-foot.R/B-toe.R
weight: 1
- path: Rig/B-root/B-spineProxy
weight: 1
maskType: 1
maskSource: {fileID: 31900000, guid: 89527f5525238ee44b3182458d85143a, type: 2}
additiveReferencePoseFrame: 0
isReadable: 0
meshes:
lODScreenPercentages: []
globalScale: 1
meshCompression: 0
addColliders: 0
useSRGBMaterialColor: 1
sortHierarchyByName: 1
importPhysicalCameras: 1
importVisibility: 1
importBlendShapes: 1
importCameras: 1
importLights: 1
nodeNameCollisionStrategy: 1
fileIdsGeneration: 2
swapUVChannels: 0
generateSecondaryUV: 0
useFileUnits: 1
keepQuads: 0
weldVertices: 1
bakeAxisConversion: 0
preserveHierarchy: 1
skinWeightsMode: 0
maxBonesPerVertex: 4
minBoneWeight: 0.001
optimizeBones: 1
meshOptimizationFlags: -1
indexFormat: 0
secondaryUVAngleDistortion: 8
secondaryUVAreaDistortion: 15.000001
secondaryUVHardAngle: 88
secondaryUVMarginMethod: 1
secondaryUVMinLightmapResolution: 40
secondaryUVMinObjectScale: 1
secondaryUVPackMargin: 4
useFileScale: 1
strictVertexDataChecks: 0
tangentSpace:
normalSmoothAngle: 60
normalImportMode: 0
tangentImportMode: 3
normalCalculationMode: 4
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0
blendShapeNormalImportMode: 1
normalSmoothingSource: 0
referencedClips: []
importAnimation: 1
humanDescription:
serializedVersion: 3
human:
- boneName: B-hips
humanName: Hips
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thigh.L
humanName: LeftUpperLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thigh.R
humanName: RightUpperLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shin.L
humanName: LeftLowerLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shin.R
humanName: RightLowerLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-foot.L
humanName: LeftFoot
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-foot.R
humanName: RightFoot
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-spine
humanName: Spine
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-chest
humanName: Chest
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-neck
humanName: Neck
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-head
humanName: Head
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shoulder.L
humanName: LeftShoulder
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shoulder.R
humanName: RightShoulder
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-upperArm.L
humanName: LeftUpperArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-upperArm.R
humanName: RightUpperArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-forearm.L
humanName: LeftLowerArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-forearm.R
humanName: RightLowerArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-hand.L
humanName: LeftHand
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-hand.R
humanName: RightHand
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-toe.L
humanName: LeftToes
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-toe.R
humanName: RightToes
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-jaw
humanName: Jaw
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb01.L
humanName: Left Thumb Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb02.L
humanName: Left Thumb Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb03.L
humanName: Left Thumb Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger01.L
humanName: Left Index Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger02.L
humanName: Left Index Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger03.L
humanName: Left Index Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger01.L
humanName: Left Middle Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger02.L
humanName: Left Middle Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger03.L
humanName: Left Middle Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger01.L
humanName: Left Ring Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger02.L
humanName: Left Ring Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger03.L
humanName: Left Ring Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky01.L
humanName: Left Little Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky02.L
humanName: Left Little Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky03.L
humanName: Left Little Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb01.R
humanName: Right Thumb Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb02.R
humanName: Right Thumb Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb03.R
humanName: Right Thumb Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger01.R
humanName: Right Index Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger02.R
humanName: Right Index Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger03.R
humanName: Right Index Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger01.R
humanName: Right Middle Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger02.R
humanName: Right Middle Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger03.R
humanName: Right Middle Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger01.R
humanName: Right Ring Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger02.R
humanName: Right Ring Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger03.R
humanName: Right Ring Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky01.R
humanName: Right Little Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky02.R
humanName: Right Little Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky03.R
humanName: Right Little Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
skeleton:
- name: Human_DummyModel_F(Clone)
parentName:
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: HumanF_BodyMesh
parentName: Human_DummyModel_F(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Rig
parentName: Human_DummyModel_F(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: B-root
parentName: Rig
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: B-spineProxy
parentName: B-root
position: {x: -0, y: 1.092844, z: 0.029147}
rotation: {x: -0.012905054, y: 0, z: -0, w: 0.99991673}
scale: {x: 1, y: 1.0000001, z: 1.0000001}
- name: B-hips
parentName: B-root
position: {x: -0, y: 0.967712, z: 0.016772}
rotation: {x: 0.04926631, y: 0, z: -0, w: 0.9987857}
scale: {x: 1, y: 1.0000004, z: 1.0000004}
- name: B-spine
parentName: B-hips
position: {x: -0, y: 0.12574437, z: 0.00000011940791}
rotation: {x: -0.062152267, y: 0, z: -0, w: 0.99806666}
scale: {x: 1, y: 0.99999976, z: 0.99999976}
- name: B-chest
parentName: B-spine
position: {x: -0, y: 0.13376056, z: -0.00000077390683}
rotation: {x: -0.02258696, y: 0, z: -0, w: 0.9997449}
scale: {x: 1, y: 0.9999996, z: 0.9999996}
- name: B-shoulder.R
parentName: B-chest
position: {x: -0, y: 0.19125995, z: -0.005656177}
rotation: {x: -0.5165573, y: -0.44464085, z: -0.47738376, w: 0.554588}
scale: {x: 1.0000008, y: 1.0000006, z: 1.0000002}
- name: B-upperArm.R
parentName: B-shoulder.R
position: {x: -0.00000043065853, y: 0.1619337, z: -0.000000866464}
rotation: {x: 0.03406315, y: 0.7090742, z: -0.08345674, w: 0.69934857}
scale: {x: 0.99999976, y: 1, z: 0.99999946}
- name: B-forearm.R
parentName: B-upperArm.R
position: {x: -0.0000005071642, y: 0.23413825, z: 0.0000019611641}
rotation: {x: 0.0013730773, y: -0.00042225965, z: 0.0032032696, w: 0.99999386}
scale: {x: 1.0000001, y: 0.99999964, z: 0.9999996}
- name: B-hand.R
parentName: B-forearm.R
position: {x: -0.000000328232, y: 0.19596381, z: -0.0000008355853}
rotation: {x: 0.013529134, y: 0.7054088, z: 0.032969795, w: 0.70790416}
scale: {x: 0.9999999, y: 1.0000002, z: 1.0000005}
- name: B-handProp.R
parentName: B-hand.R
position: {x: 0.0029605331, y: 0.10533051, z: 0.022608897}
rotation: {x: -0.67608327, y: 0.73659164, z: -0.013668106, w: -0.012545319}
scale: {x: 0.99999964, y: 1.0000005, z: 0.9999996}
- name: B-indexFinger01.R
parentName: B-hand.R
position: {x: -0.036052607, y: 0.13202412, z: -0.0022375023}
rotation: {x: 0.019054495, y: -0.0149580045, z: 0.031315368, w: 0.999216}
scale: {x: 1.0000002, y: 0.99999964, z: 0.9999993}
- name: B-indexFinger02.R
parentName: B-indexFinger01.R
position: {x: 0.00000021708313, y: 0.046758045, z: -0.0000005285747}
rotation: {x: 0.040758472, y: 0.02876925, z: -0.0030862393, w: 0.99875003}
scale: {x: 1, y: 1.0000004, z: 1.0000002}
- name: B-indexFinger03.R
parentName: B-indexFinger02.R
position: {x: 0.000000038075022, y: 0.034652043, z: 0.00000019983679}
rotation: {x: -0.006236443, y: 0.004024028, z: -0.0109188985, w: 0.99991286}
scale: {x: 0.9999999, y: 0.9999999, z: 0.99999964}
- name: B-middleFinger01.R
parentName: B-hand.R
position: {x: -0.00928522, y: 0.1318378, z: -0.0089382}
rotation: {x: -0.004700204, y: -0.0032572027, z: -0.001801642, w: 0.99998206}
scale: {x: 1.0000006, y: 0.9999997, z: 0.99999917}
- name: B-middleFinger02.R
parentName: B-middleFinger01.R
position: {x: -0.0000003849299, y: 0.048716273, z: -0.0000001691299}
rotation: {x: 0.039366316, y: 0.04573892, z: 0.00377753, w: 0.9981703}
scale: {x: 0.9999997, y: 1.0000004, z: 1}
- name: B-middleFinger03.R
parentName: B-middleFinger02.R
position: {x: -0.00000039262213, y: 0.035888083, z: 0.00000029152696}
rotation: {x: 0.0049846717, y: -0.02122791, z: -0.0063242065, w: 0.99974227}
scale: {x: 0.99999964, y: 0.99999994, z: 1.0000002}
- name: B-ringFinger01.R
parentName: B-hand.R
position: {x: 0.016020812, y: 0.1283572, z: -0.005707851}
rotation: {x: -0.0071167736, y: 0.0017728558, z: -0.036400504, w: 0.9993104}
scale: {x: 1.0000005, y: 0.9999992, z: 0.9999996}
- name: B-ringFinger02.R
parentName: B-ringFinger01.R
position: {x: 0.00000047158898, y: 0.045192316, z: 0.00000021597218}
rotation: {x: 0.037958622, y: -0.0021153935, z: 0.012520862, w: 0.9991986}
scale: {x: 0.99999946, y: 1.0000005, z: 0.9999997}
- name: B-ringFinger03.R
parentName: B-ringFinger02.R
position: {x: -0.0000004720245, y: 0.034694634, z: 0.00000008820079}
rotation: {x: 0.02091165, y: -0.04065229, z: -0.015794862, w: 0.99882966}
scale: {x: 1.0000002, y: 0.99999976, z: 0.9999997}
- name: B-pinky01.R
parentName: B-hand.R
position: {x: 0.041580904, y: 0.119742304, z: -0.0024299922}
rotation: {x: -0.011731888, y: -0.016481936, z: -0.04421447, w: 0.9988172}
scale: {x: 1.0000002, y: 0.9999994, z: 0.99999917}
- name: B-pinky02.R
parentName: B-pinky01.R
position: {x: 0.0000007804244, y: 0.03832724, z: 0.00000044214514}
rotation: {x: 0.039002027, y: 0.011177708, z: 0.009234122, w: 0.99913394}
scale: {x: 1.0000002, y: 1.0000006, z: 1.0000002}
- name: B-pinky03.R
parentName: B-pinky02.R
position: {x: -0.000000269953, y: 0.03220071, z: -0.0000005856981}
rotation: {x: 0.022101695, y: -0.02182341, z: 0.009210792, w: 0.99947506}
scale: {x: 1.0000005, y: 0.99999994, z: 1.0000007}
- name: B-thumb01.R
parentName: B-hand.R
position: {x: -0.039809253, y: 0.048496302, z: 0.0130518135}
rotation: {x: -0.22471787, y: 0.63045275, z: 0.29821387, w: 0.6805144}
scale: {x: 0.99999946, y: 1.0000002, z: 1.0000005}
- name: B-thumb02.R
parentName: B-thumb01.R
position: {x: 0.00000020260806, y: 0.047178134, z: 0.000000160123}
rotation: {x: 0.038173996, y: 0.013301423, z: -0.008042345, w: 0.9991502}
scale: {x: 1.0000007, y: 0.9999997, z: 0.9999999}
- name: B-thumb03.R
parentName: B-thumb02.R
position: {x: -0.00000069069114, y: 0.03520854, z: 0.00000004046409}
rotation: {x: -0.060352694, y: 0.014396386, z: 0.0074255248, w: 0.9980457}
scale: {x: 0.9999995, y: 1.0000004, z: 1}
- name: B-neck
parentName: B-chest
position: {x: -0, y: 0.27081212, z: 0.0000007058524}
rotation: {x: 0.105346866, y: 0, z: -0, w: 0.99443555}
scale: {x: 1, y: 0.9999997, z: 1.0000007}
- name: B-head
parentName: B-neck
position: {x: -0, y: 0.07409704, z: 0.00000025054106}
rotation: {x: -0.069990024, y: 0, z: -0, w: 0.9975477}
scale: {x: 1, y: 1.0000006, z: 0.99999964}
- name: B-jaw
parentName: B-head
position: {x: -0, y: 0, z: 0}
rotation: {x: 0.70698464, y: 0.000007072379, z: -0.00000706994, w: 0.7072289}
scale: {x: 1, y: 1, z: 1}
- name: B-shoulder.L
parentName: B-chest
position: {x: -0, y: 0.19125995, z: -0.005656177}
rotation: {x: -0.5165571, y: 0.44464028, z: 0.47738382, w: 0.5545886}
scale: {x: 0.9999998, y: 0.9999995, z: 1.0000002}
- name: B-upperArm.L
parentName: B-shoulder.L
position: {x: 0.00000040656337, y: 0.16193385, z: -0.0000008664629}
rotation: {x: 0.033948872, y: -0.70908755, z: 0.08334149, w: 0.69935447}
scale: {x: 0.9999998, y: 1.0000002, z: 0.9999999}
- name: B-forearm.L
parentName: B-upperArm.L
position: {x: 0.000000097359035, y: 0.2341381, z: 0.00000030291466}
rotation: {x: 0.0017385628, y: 0.0004205673, z: -0.0032047313, w: 0.99999326}
scale: {x: 0.99999994, y: 1.0000004, z: 1.0000001}
- name: B-hand.L
parentName: B-forearm.L
position: {x: 0.00000052406216, y: 0.1959644, z: -0.0000011816531}
rotation: {x: 0.013386631, y: -0.70541465, z: -0.032826252, w: 0.7079078}
scale: {x: 0.99999994, y: 0.9999992, z: 0.9999996}
- name: B-handProp.L
parentName: B-hand.L
position: {x: -0.0029615294, y: 0.10533054, z: 0.02260892}
rotation: {x: 0.67608327, y: 0.73659164, z: -0.013668119, w: 0.012545332}
scale: {x: 1.0000006, y: 0.99999946, z: 1.0000006}
- name: B-indexFinger01.L
parentName: B-hand.L
position: {x: 0.03605161, y: 0.13202417, z: -0.0022375062}
rotation: {x: 0.019054513, y: 0.014957919, z: -0.03131587, w: 0.99921596}
scale: {x: 1.0000004, y: 0.9999998, z: 1.0000002}
- name: B-indexFinger02.L
parentName: B-indexFinger01.L
position: {x: 0.00000072554116, y: 0.04675823, z: -0.0000005109258}
rotation: {x: 0.04075494, y: -0.02876944, z: 0.0030826945, w: 0.9987502}
scale: {x: 1.0000001, y: 1.0000002, z: 1.0000002}
- name: B-indexFinger03.L
parentName: B-indexFinger02.L
position: {x: -0.00000009920999, y: 0.034652077, z: 0.00000023013986}
rotation: {x: -0.0062364372, y: -0.004023549, z: 0.010918792, w: 0.99991286}
scale: {x: 0.9999998, y: 1.0000008, z: 0.9999995}
- name: B-middleFinger01.L
parentName: B-hand.L
position: {x: 0.00928522, y: 0.13183793, z: -0.008938214}
rotation: {x: -0.004700207, y: 0.0032570793, z: 0.0018007505, w: 0.99998206}
scale: {x: 1.0000007, y: 0.9999999, z: 1.0000001}
- name: B-middleFinger02.L
parentName: B-middleFinger01.L
position: {x: 0.00000028786184, y: 0.048716314, z: -0.00000017087451}
rotation: {x: 0.039368037, y: -0.045739666, z: -0.0037847473, w: 0.9981702}
scale: {x: 0.99999976, y: 1.000001, z: 1.0000006}
- name: B-middleFinger03.L
parentName: B-middleFinger02.L
position: {x: -0.00000066842983, y: 0.035888, z: 0.00000028642995}
rotation: {x: 0.0049827034, y: 0.021227859, z: 0.0063241003, w: 0.99974227}
scale: {x: 0.9999996, y: 0.99999905, z: 0.99999934}
- name: B-ringFinger01.L
parentName: B-hand.L
position: {x: -0.016021809, y: 0.12835726, z: -0.005707858}
rotation: {x: -0.007116776, y: -0.0017729683, z: 0.036399588, w: 0.99931043}
scale: {x: 1.0000005, y: 1.0000002, z: 1.0000006}
- name: B-ringFinger02.L
parentName: B-ringFinger01.L
position: {x: 0.00000043795694, y: 0.04519233, z: 0.00000021050154}
rotation: {x: 0.037963506, y: 0.0021157071, z: -0.01252746, w: 0.9991984}
scale: {x: 0.9999995, y: 0.99999964, z: 0.9999996}
- name: B-ringFinger03.L
parentName: B-ringFinger02.L
position: {x: 0.00000034561023, y: 0.03469565, z: -0.00000007648653}
rotation: {x: 0.020911071, y: 0.04065225, z: 0.015794758, w: 0.99882966}
scale: {x: 1.0000001, y: 1.0000005, z: 0.9999997}
- name: B-pinky01.L
parentName: B-hand.L
position: {x: -0.041581903, y: 0.119742356, z: -0.0024299957}
rotation: {x: -0.01172906, y: 0.01648238, z: 0.0442254, w: 0.9988167}
scale: {x: 1.0000002, y: 1.0000004, z: 1.0000002}
- name: B-pinky02.L
parentName: B-pinky01.L
position: {x: 0.00000014151807, y: 0.03832722, z: 0.00000047056287}
rotation: {x: 0.039005004, y: -0.011177422, z: -0.009239738, w: 0.99913377}
scale: {x: 1.0000002, y: 0.99999946, z: 1.0000001}
- name: B-pinky03.L
parentName: B-pinky02.L
position: {x: 0.000000233103, y: 0.032200746, z: -0.00000055902217}
rotation: {x: 0.022101717, y: 0.02182328, z: -0.009211465, w: 0.99947506}
scale: {x: 0.9999995, y: 1, z: 0.99999964}
- name: B-thumb01.L
parentName: B-hand.L
position: {x: 0.03980834, y: 0.048495278, z: 0.013051865}
rotation: {x: -0.2247114, y: -0.6304557, z: -0.2982149, w: 0.6805132}
scale: {x: 1.0000005, y: 1, z: 1.0000005}
- name: B-thumb02.L
parentName: B-thumb01.L
position: {x: -0.0000007063521, y: 0.047179468, z: -0.00000013365789}
rotation: {x: 0.038171936, y: -0.013301728, z: 0.008042519, w: 0.9991503}
scale: {x: 1.0000004, y: 1, z: 0.9999994}
- name: B-thumb03.L
parentName: B-thumb02.L
position: {x: 0.0000007190916, y: 0.035208564, z: 0.00000017922088}
rotation: {x: -0.06035389, y: -0.014396597, z: -0.007425322, w: 0.9980456}
scale: {x: 0.9999992, y: 0.99999994, z: 1.0000001}
- name: B-thigh.L
parentName: B-hips
position: {x: -0.096950985, y: -0.05446949, z: 0.0020414153}
rotation: {x: 0.9977441, y: 0.011110197, z: -0.0039620763, w: 0.066088475}
scale: {x: 1.0000002, y: 0.9999997, z: 1.000001}
- name: B-shin.L
parentName: B-thigh.L
position: {x: 0.00000018468991, y: 0.41111633, z: 0.0000005281011}
rotation: {x: 0.067057244, y: -0.00057845906, z: 0.011617889, w: 0.9976813}
scale: {x: 0.9999997, y: 1.0000002, z: 0.99999964}
- name: B-foot.L
parentName: B-shin.L
position: {x: -0.00000017405802, y: 0.3880767, z: -0.00000019306846}
rotation: {x: -0.5354999, y: 0.004330197, z: 0.0016612022, w: 0.84452266}
scale: {x: 1.0000001, y: 0.9999997, z: 0.99999976}
- name: B-toe.L
parentName: B-foot.L
position: {x: -0.00000027025197, y: 0.17254004, z: -0.000000117418054}
rotation: {x: 0.000012936387, y: 0.9622731, z: -0.27208534, w: 0.00017343421}
scale: {x: 1, y: 1.0000018, z: 0.999999}
- name: B-thigh.R
parentName: B-hips
position: {x: 0.096950985, y: -0.05446959, z: 0.0020404202}
rotation: {x: 0.9977441, y: -0.011109428, z: 0.003967029, w: 0.066088304}
scale: {x: 1.0000004, y: 0.99999976, z: 1.000008}
- name: B-shin.R
parentName: B-thigh.R
position: {x: 0.0000005496826, y: 0.41111633, z: -0.00000065481464}
rotation: {x: 0.06705632, y: 0.0005783735, z: -0.011616509, w: 0.99768144}
scale: {x: 0.9999997, y: 1.0000002, z: 1.0000007}
- name: B-foot.R
parentName: B-shin.R
position: {x: -0.00000044263592, y: 0.3880767, z: 0.000000107811644}
rotation: {x: -0.53550065, y: -0.0043338453, z: -0.0016630876, w: 0.84452206}
scale: {x: 1, y: 0.9999993, z: 0.99999994}
- name: B-toe.R
parentName: B-foot.R
position: {x: 0.00000074386196, y: 0.17254034, z: 0.00000017937037}
rotation: {x: -0.000012542016, y: 0.96227294, z: -0.27208585, w: -0.00017487761}
scale: {x: 1, y: 1.0000029, z: 0.999997}
armTwist: 0.5
foreArmTwist: 0.5
upperLegTwist: 0.5
legTwist: 0.5
armStretch: 0.05
legStretch: 0.05
feetSpacing: 0
globalScale: 1
rootMotionBoneName:
hasTranslationDoF: 0
hasExtraRoot: 0
skeletonHasParents: 1
lastHumanDescriptionAvatarSource: {fileID: 9000000, guid: 1841c298173cdad4db8df8602c8f1c8d,
type: 3}
autoGenerateAvatarMappingIfUnspecified: 1
animationType: 3
humanoidOversampling: 1
avatarSetup: 2
addHumanoidExtraRootOnlyWhenUsingAvatar: 1
importBlendShapeDeformPercent: 1
remapMaterialsIfMaterialImportModeIsNone: 0
additionalBone: 0
userData:
assetBundleName:
assetBundleVariant:
AssetOrigin:
serializedVersion: 1
productId: 154271
packageName: Human Basic Motions FREE
packageVersion: 2.4.2
assetPath: Assets/Kevin Iglesias/Human Animations/Animations/Female/Movement/Walk/HumanF@Walk01_Backward.fbx
uploadId: 908942

View file

@ -1,973 +0,0 @@
fileFormatVersion: 2
guid: daf6bb02eddf35e4e8cfcb493de60917
ModelImporter:
serializedVersion: 22200
internalIDToNameTable: []
externalObjects: {}
materials:
materialImportMode: 0
materialName: 0
materialSearch: 1
materialLocation: 1
animations:
legacyGenerateAnimations: 4
bakeSimulation: 0
resampleCurves: 1
optimizeGameObjects: 0
removeConstantScaleCurves: 0
motionNodeName:
animationImportErrors:
animationImportWarnings:
animationRetargetingWarnings:
animationDoRetargetingWarnings: 0
importAnimatedCustomProperties: 0
importConstraints: 0
animationCompression: 0
animationRotationError: 0.5
animationPositionError: 0.5
animationScaleError: 0.5
animationWrapMode: 0
extraExposedTransformPaths: []
extraUserProperties: []
clipAnimations:
- serializedVersion: 16
name: HumanF@Walk01_BackwardLeft
takeName: Untitled
internalID: 3094330708855449807
firstFrame: 0
lastFrame: 24
wrapMode: 0
orientationOffsetY: 0
level: 0
cycleOffset: 0
loop: 0
hasAdditiveReferencePose: 0
loopTime: 1
loopBlend: 0
loopBlendOrientation: 1
loopBlendPositionY: 1
loopBlendPositionXZ: 1
keepOriginalOrientation: 1
keepOriginalPositionY: 1
keepOriginalPositionXZ: 1
heightFromFeet: 0
mirror: 0
bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
curves: []
events: []
transformMask:
- path:
weight: 1
- path: HumanF_BodyMesh
weight: 0
- path: Rig
weight: 1
- path: Rig/B-root
weight: 1
- path: Rig/B-root/B-hips
weight: 1
- path: Rig/B-root/B-hips/B-spine
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck/B-head
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck/B-head/B-jaw
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-handProp.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L/B-indexFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L/B-indexFinger02.L/B-indexFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L/B-middleFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L/B-middleFinger02.L/B-middleFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L/B-pinky02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L/B-pinky02.L/B-pinky03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L/B-ringFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L/B-ringFinger02.L/B-ringFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L/B-thumb02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L/B-thumb02.L/B-thumb03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-handProp.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R/B-indexFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R/B-indexFinger02.R/B-indexFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R/B-middleFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R/B-middleFinger02.R/B-middleFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R/B-pinky02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R/B-pinky02.R/B-pinky03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R/B-ringFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R/B-ringFinger02.R/B-ringFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R/B-thumb02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R/B-thumb02.R/B-thumb03.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L/B-foot.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L/B-foot.L/B-toe.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R/B-foot.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R/B-foot.R/B-toe.R
weight: 1
- path: Rig/B-root/B-spineProxy
weight: 1
maskType: 1
maskSource: {fileID: 31900000, guid: 89527f5525238ee44b3182458d85143a, type: 2}
additiveReferencePoseFrame: 0
isReadable: 0
meshes:
lODScreenPercentages: []
globalScale: 1
meshCompression: 0
addColliders: 0
useSRGBMaterialColor: 1
sortHierarchyByName: 1
importPhysicalCameras: 1
importVisibility: 1
importBlendShapes: 1
importCameras: 1
importLights: 1
nodeNameCollisionStrategy: 1
fileIdsGeneration: 2
swapUVChannels: 0
generateSecondaryUV: 0
useFileUnits: 1
keepQuads: 0
weldVertices: 1
bakeAxisConversion: 0
preserveHierarchy: 1
skinWeightsMode: 0
maxBonesPerVertex: 4
minBoneWeight: 0.001
optimizeBones: 1
meshOptimizationFlags: -1
indexFormat: 0
secondaryUVAngleDistortion: 8
secondaryUVAreaDistortion: 15.000001
secondaryUVHardAngle: 88
secondaryUVMarginMethod: 1
secondaryUVMinLightmapResolution: 40
secondaryUVMinObjectScale: 1
secondaryUVPackMargin: 4
useFileScale: 1
strictVertexDataChecks: 0
tangentSpace:
normalSmoothAngle: 60
normalImportMode: 0
tangentImportMode: 3
normalCalculationMode: 4
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0
blendShapeNormalImportMode: 1
normalSmoothingSource: 0
referencedClips: []
importAnimation: 1
humanDescription:
serializedVersion: 3
human:
- boneName: B-hips
humanName: Hips
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thigh.L
humanName: LeftUpperLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thigh.R
humanName: RightUpperLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shin.L
humanName: LeftLowerLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shin.R
humanName: RightLowerLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-foot.L
humanName: LeftFoot
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-foot.R
humanName: RightFoot
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-spine
humanName: Spine
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-chest
humanName: Chest
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-neck
humanName: Neck
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-head
humanName: Head
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shoulder.L
humanName: LeftShoulder
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shoulder.R
humanName: RightShoulder
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-upperArm.L
humanName: LeftUpperArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-upperArm.R
humanName: RightUpperArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-forearm.L
humanName: LeftLowerArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-forearm.R
humanName: RightLowerArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-hand.L
humanName: LeftHand
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-hand.R
humanName: RightHand
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-toe.L
humanName: LeftToes
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-toe.R
humanName: RightToes
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-jaw
humanName: Jaw
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb01.L
humanName: Left Thumb Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb02.L
humanName: Left Thumb Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb03.L
humanName: Left Thumb Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger01.L
humanName: Left Index Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger02.L
humanName: Left Index Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger03.L
humanName: Left Index Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger01.L
humanName: Left Middle Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger02.L
humanName: Left Middle Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger03.L
humanName: Left Middle Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger01.L
humanName: Left Ring Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger02.L
humanName: Left Ring Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger03.L
humanName: Left Ring Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky01.L
humanName: Left Little Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky02.L
humanName: Left Little Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky03.L
humanName: Left Little Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb01.R
humanName: Right Thumb Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb02.R
humanName: Right Thumb Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb03.R
humanName: Right Thumb Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger01.R
humanName: Right Index Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger02.R
humanName: Right Index Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger03.R
humanName: Right Index Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger01.R
humanName: Right Middle Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger02.R
humanName: Right Middle Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger03.R
humanName: Right Middle Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger01.R
humanName: Right Ring Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger02.R
humanName: Right Ring Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger03.R
humanName: Right Ring Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky01.R
humanName: Right Little Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky02.R
humanName: Right Little Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky03.R
humanName: Right Little Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
skeleton:
- name: Human_DummyModel_F(Clone)
parentName:
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: HumanF_BodyMesh
parentName: Human_DummyModel_F(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Rig
parentName: Human_DummyModel_F(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: B-root
parentName: Rig
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: B-spineProxy
parentName: B-root
position: {x: -0, y: 1.092844, z: 0.029147}
rotation: {x: -0.012905054, y: 0, z: -0, w: 0.99991673}
scale: {x: 1, y: 1.0000001, z: 1.0000001}
- name: B-hips
parentName: B-root
position: {x: -0, y: 0.967712, z: 0.016772}
rotation: {x: 0.04926631, y: 0, z: -0, w: 0.9987857}
scale: {x: 1, y: 1.0000004, z: 1.0000004}
- name: B-spine
parentName: B-hips
position: {x: -0, y: 0.12574437, z: 0.00000011940791}
rotation: {x: -0.062152267, y: 0, z: -0, w: 0.99806666}
scale: {x: 1, y: 0.99999976, z: 0.99999976}
- name: B-chest
parentName: B-spine
position: {x: -0, y: 0.13376056, z: -0.00000077390683}
rotation: {x: -0.02258696, y: 0, z: -0, w: 0.9997449}
scale: {x: 1, y: 0.9999996, z: 0.9999996}
- name: B-shoulder.R
parentName: B-chest
position: {x: -0, y: 0.19125995, z: -0.005656177}
rotation: {x: -0.5165573, y: -0.44464085, z: -0.47738376, w: 0.554588}
scale: {x: 1.0000008, y: 1.0000006, z: 1.0000002}
- name: B-upperArm.R
parentName: B-shoulder.R
position: {x: -0.00000043065853, y: 0.1619337, z: -0.000000866464}
rotation: {x: 0.03406315, y: 0.7090742, z: -0.08345674, w: 0.69934857}
scale: {x: 0.99999976, y: 1, z: 0.99999946}
- name: B-forearm.R
parentName: B-upperArm.R
position: {x: -0.0000005071642, y: 0.23413825, z: 0.0000019611641}
rotation: {x: 0.0013730773, y: -0.00042225965, z: 0.0032032696, w: 0.99999386}
scale: {x: 1.0000001, y: 0.99999964, z: 0.9999996}
- name: B-hand.R
parentName: B-forearm.R
position: {x: -0.000000328232, y: 0.19596381, z: -0.0000008355853}
rotation: {x: 0.013529134, y: 0.7054088, z: 0.032969795, w: 0.70790416}
scale: {x: 0.9999999, y: 1.0000002, z: 1.0000005}
- name: B-handProp.R
parentName: B-hand.R
position: {x: 0.0029605331, y: 0.10533051, z: 0.022608897}
rotation: {x: -0.67608327, y: 0.73659164, z: -0.013668106, w: -0.012545319}
scale: {x: 0.99999964, y: 1.0000005, z: 0.9999996}
- name: B-indexFinger01.R
parentName: B-hand.R
position: {x: -0.036052607, y: 0.13202412, z: -0.0022375023}
rotation: {x: 0.019054495, y: -0.0149580045, z: 0.031315368, w: 0.999216}
scale: {x: 1.0000002, y: 0.99999964, z: 0.9999993}
- name: B-indexFinger02.R
parentName: B-indexFinger01.R
position: {x: 0.00000021708313, y: 0.046758045, z: -0.0000005285747}
rotation: {x: 0.040758472, y: 0.02876925, z: -0.0030862393, w: 0.99875003}
scale: {x: 1, y: 1.0000004, z: 1.0000002}
- name: B-indexFinger03.R
parentName: B-indexFinger02.R
position: {x: 0.000000038075022, y: 0.034652043, z: 0.00000019983679}
rotation: {x: -0.006236443, y: 0.004024028, z: -0.0109188985, w: 0.99991286}
scale: {x: 0.9999999, y: 0.9999999, z: 0.99999964}
- name: B-middleFinger01.R
parentName: B-hand.R
position: {x: -0.00928522, y: 0.1318378, z: -0.0089382}
rotation: {x: -0.004700204, y: -0.0032572027, z: -0.001801642, w: 0.99998206}
scale: {x: 1.0000006, y: 0.9999997, z: 0.99999917}
- name: B-middleFinger02.R
parentName: B-middleFinger01.R
position: {x: -0.0000003849299, y: 0.048716273, z: -0.0000001691299}
rotation: {x: 0.039366316, y: 0.04573892, z: 0.00377753, w: 0.9981703}
scale: {x: 0.9999997, y: 1.0000004, z: 1}
- name: B-middleFinger03.R
parentName: B-middleFinger02.R
position: {x: -0.00000039262213, y: 0.035888083, z: 0.00000029152696}
rotation: {x: 0.0049846717, y: -0.02122791, z: -0.0063242065, w: 0.99974227}
scale: {x: 0.99999964, y: 0.99999994, z: 1.0000002}
- name: B-ringFinger01.R
parentName: B-hand.R
position: {x: 0.016020812, y: 0.1283572, z: -0.005707851}
rotation: {x: -0.0071167736, y: 0.0017728558, z: -0.036400504, w: 0.9993104}
scale: {x: 1.0000005, y: 0.9999992, z: 0.9999996}
- name: B-ringFinger02.R
parentName: B-ringFinger01.R
position: {x: 0.00000047158898, y: 0.045192316, z: 0.00000021597218}
rotation: {x: 0.037958622, y: -0.0021153935, z: 0.012520862, w: 0.9991986}
scale: {x: 0.99999946, y: 1.0000005, z: 0.9999997}
- name: B-ringFinger03.R
parentName: B-ringFinger02.R
position: {x: -0.0000004720245, y: 0.034694634, z: 0.00000008820079}
rotation: {x: 0.02091165, y: -0.04065229, z: -0.015794862, w: 0.99882966}
scale: {x: 1.0000002, y: 0.99999976, z: 0.9999997}
- name: B-pinky01.R
parentName: B-hand.R
position: {x: 0.041580904, y: 0.119742304, z: -0.0024299922}
rotation: {x: -0.011731888, y: -0.016481936, z: -0.04421447, w: 0.9988172}
scale: {x: 1.0000002, y: 0.9999994, z: 0.99999917}
- name: B-pinky02.R
parentName: B-pinky01.R
position: {x: 0.0000007804244, y: 0.03832724, z: 0.00000044214514}
rotation: {x: 0.039002027, y: 0.011177708, z: 0.009234122, w: 0.99913394}
scale: {x: 1.0000002, y: 1.0000006, z: 1.0000002}
- name: B-pinky03.R
parentName: B-pinky02.R
position: {x: -0.000000269953, y: 0.03220071, z: -0.0000005856981}
rotation: {x: 0.022101695, y: -0.02182341, z: 0.009210792, w: 0.99947506}
scale: {x: 1.0000005, y: 0.99999994, z: 1.0000007}
- name: B-thumb01.R
parentName: B-hand.R
position: {x: -0.039809253, y: 0.048496302, z: 0.0130518135}
rotation: {x: -0.22471787, y: 0.63045275, z: 0.29821387, w: 0.6805144}
scale: {x: 0.99999946, y: 1.0000002, z: 1.0000005}
- name: B-thumb02.R
parentName: B-thumb01.R
position: {x: 0.00000020260806, y: 0.047178134, z: 0.000000160123}
rotation: {x: 0.038173996, y: 0.013301423, z: -0.008042345, w: 0.9991502}
scale: {x: 1.0000007, y: 0.9999997, z: 0.9999999}
- name: B-thumb03.R
parentName: B-thumb02.R
position: {x: -0.00000069069114, y: 0.03520854, z: 0.00000004046409}
rotation: {x: -0.060352694, y: 0.014396386, z: 0.0074255248, w: 0.9980457}
scale: {x: 0.9999995, y: 1.0000004, z: 1}
- name: B-neck
parentName: B-chest
position: {x: -0, y: 0.27081212, z: 0.0000007058524}
rotation: {x: 0.105346866, y: 0, z: -0, w: 0.99443555}
scale: {x: 1, y: 0.9999997, z: 1.0000007}
- name: B-head
parentName: B-neck
position: {x: -0, y: 0.07409704, z: 0.00000025054106}
rotation: {x: -0.069990024, y: 0, z: -0, w: 0.9975477}
scale: {x: 1, y: 1.0000006, z: 0.99999964}
- name: B-jaw
parentName: B-head
position: {x: -0, y: 0, z: 0}
rotation: {x: 0.70698464, y: 0.000007072379, z: -0.00000706994, w: 0.7072289}
scale: {x: 1, y: 1, z: 1}
- name: B-shoulder.L
parentName: B-chest
position: {x: -0, y: 0.19125995, z: -0.005656177}
rotation: {x: -0.5165571, y: 0.44464028, z: 0.47738382, w: 0.5545886}
scale: {x: 0.9999998, y: 0.9999995, z: 1.0000002}
- name: B-upperArm.L
parentName: B-shoulder.L
position: {x: 0.00000040656337, y: 0.16193385, z: -0.0000008664629}
rotation: {x: 0.033948872, y: -0.70908755, z: 0.08334149, w: 0.69935447}
scale: {x: 0.9999998, y: 1.0000002, z: 0.9999999}
- name: B-forearm.L
parentName: B-upperArm.L
position: {x: 0.000000097359035, y: 0.2341381, z: 0.00000030291466}
rotation: {x: 0.0017385628, y: 0.0004205673, z: -0.0032047313, w: 0.99999326}
scale: {x: 0.99999994, y: 1.0000004, z: 1.0000001}
- name: B-hand.L
parentName: B-forearm.L
position: {x: 0.00000052406216, y: 0.1959644, z: -0.0000011816531}
rotation: {x: 0.013386631, y: -0.70541465, z: -0.032826252, w: 0.7079078}
scale: {x: 0.99999994, y: 0.9999992, z: 0.9999996}
- name: B-handProp.L
parentName: B-hand.L
position: {x: -0.0029615294, y: 0.10533054, z: 0.02260892}
rotation: {x: 0.67608327, y: 0.73659164, z: -0.013668119, w: 0.012545332}
scale: {x: 1.0000006, y: 0.99999946, z: 1.0000006}
- name: B-indexFinger01.L
parentName: B-hand.L
position: {x: 0.03605161, y: 0.13202417, z: -0.0022375062}
rotation: {x: 0.019054513, y: 0.014957919, z: -0.03131587, w: 0.99921596}
scale: {x: 1.0000004, y: 0.9999998, z: 1.0000002}
- name: B-indexFinger02.L
parentName: B-indexFinger01.L
position: {x: 0.00000072554116, y: 0.04675823, z: -0.0000005109258}
rotation: {x: 0.04075494, y: -0.02876944, z: 0.0030826945, w: 0.9987502}
scale: {x: 1.0000001, y: 1.0000002, z: 1.0000002}
- name: B-indexFinger03.L
parentName: B-indexFinger02.L
position: {x: -0.00000009920999, y: 0.034652077, z: 0.00000023013986}
rotation: {x: -0.0062364372, y: -0.004023549, z: 0.010918792, w: 0.99991286}
scale: {x: 0.9999998, y: 1.0000008, z: 0.9999995}
- name: B-middleFinger01.L
parentName: B-hand.L
position: {x: 0.00928522, y: 0.13183793, z: -0.008938214}
rotation: {x: -0.004700207, y: 0.0032570793, z: 0.0018007505, w: 0.99998206}
scale: {x: 1.0000007, y: 0.9999999, z: 1.0000001}
- name: B-middleFinger02.L
parentName: B-middleFinger01.L
position: {x: 0.00000028786184, y: 0.048716314, z: -0.00000017087451}
rotation: {x: 0.039368037, y: -0.045739666, z: -0.0037847473, w: 0.9981702}
scale: {x: 0.99999976, y: 1.000001, z: 1.0000006}
- name: B-middleFinger03.L
parentName: B-middleFinger02.L
position: {x: -0.00000066842983, y: 0.035888, z: 0.00000028642995}
rotation: {x: 0.0049827034, y: 0.021227859, z: 0.0063241003, w: 0.99974227}
scale: {x: 0.9999996, y: 0.99999905, z: 0.99999934}
- name: B-ringFinger01.L
parentName: B-hand.L
position: {x: -0.016021809, y: 0.12835726, z: -0.005707858}
rotation: {x: -0.007116776, y: -0.0017729683, z: 0.036399588, w: 0.99931043}
scale: {x: 1.0000005, y: 1.0000002, z: 1.0000006}
- name: B-ringFinger02.L
parentName: B-ringFinger01.L
position: {x: 0.00000043795694, y: 0.04519233, z: 0.00000021050154}
rotation: {x: 0.037963506, y: 0.0021157071, z: -0.01252746, w: 0.9991984}
scale: {x: 0.9999995, y: 0.99999964, z: 0.9999996}
- name: B-ringFinger03.L
parentName: B-ringFinger02.L
position: {x: 0.00000034561023, y: 0.03469565, z: -0.00000007648653}
rotation: {x: 0.020911071, y: 0.04065225, z: 0.015794758, w: 0.99882966}
scale: {x: 1.0000001, y: 1.0000005, z: 0.9999997}
- name: B-pinky01.L
parentName: B-hand.L
position: {x: -0.041581903, y: 0.119742356, z: -0.0024299957}
rotation: {x: -0.01172906, y: 0.01648238, z: 0.0442254, w: 0.9988167}
scale: {x: 1.0000002, y: 1.0000004, z: 1.0000002}
- name: B-pinky02.L
parentName: B-pinky01.L
position: {x: 0.00000014151807, y: 0.03832722, z: 0.00000047056287}
rotation: {x: 0.039005004, y: -0.011177422, z: -0.009239738, w: 0.99913377}
scale: {x: 1.0000002, y: 0.99999946, z: 1.0000001}
- name: B-pinky03.L
parentName: B-pinky02.L
position: {x: 0.000000233103, y: 0.032200746, z: -0.00000055902217}
rotation: {x: 0.022101717, y: 0.02182328, z: -0.009211465, w: 0.99947506}
scale: {x: 0.9999995, y: 1, z: 0.99999964}
- name: B-thumb01.L
parentName: B-hand.L
position: {x: 0.03980834, y: 0.048495278, z: 0.013051865}
rotation: {x: -0.2247114, y: -0.6304557, z: -0.2982149, w: 0.6805132}
scale: {x: 1.0000005, y: 1, z: 1.0000005}
- name: B-thumb02.L
parentName: B-thumb01.L
position: {x: -0.0000007063521, y: 0.047179468, z: -0.00000013365789}
rotation: {x: 0.038171936, y: -0.013301728, z: 0.008042519, w: 0.9991503}
scale: {x: 1.0000004, y: 1, z: 0.9999994}
- name: B-thumb03.L
parentName: B-thumb02.L
position: {x: 0.0000007190916, y: 0.035208564, z: 0.00000017922088}
rotation: {x: -0.06035389, y: -0.014396597, z: -0.007425322, w: 0.9980456}
scale: {x: 0.9999992, y: 0.99999994, z: 1.0000001}
- name: B-thigh.L
parentName: B-hips
position: {x: -0.096950985, y: -0.05446949, z: 0.0020414153}
rotation: {x: 0.9977441, y: 0.011110197, z: -0.0039620763, w: 0.066088475}
scale: {x: 1.0000002, y: 0.9999997, z: 1.000001}
- name: B-shin.L
parentName: B-thigh.L
position: {x: 0.00000018468991, y: 0.41111633, z: 0.0000005281011}
rotation: {x: 0.067057244, y: -0.00057845906, z: 0.011617889, w: 0.9976813}
scale: {x: 0.9999997, y: 1.0000002, z: 0.99999964}
- name: B-foot.L
parentName: B-shin.L
position: {x: -0.00000017405802, y: 0.3880767, z: -0.00000019306846}
rotation: {x: -0.5354999, y: 0.004330197, z: 0.0016612022, w: 0.84452266}
scale: {x: 1.0000001, y: 0.9999997, z: 0.99999976}
- name: B-toe.L
parentName: B-foot.L
position: {x: -0.00000027025197, y: 0.17254004, z: -0.000000117418054}
rotation: {x: 0.000012936387, y: 0.9622731, z: -0.27208534, w: 0.00017343421}
scale: {x: 1, y: 1.0000018, z: 0.999999}
- name: B-thigh.R
parentName: B-hips
position: {x: 0.096950985, y: -0.05446959, z: 0.0020404202}
rotation: {x: 0.9977441, y: -0.011109428, z: 0.003967029, w: 0.066088304}
scale: {x: 1.0000004, y: 0.99999976, z: 1.000008}
- name: B-shin.R
parentName: B-thigh.R
position: {x: 0.0000005496826, y: 0.41111633, z: -0.00000065481464}
rotation: {x: 0.06705632, y: 0.0005783735, z: -0.011616509, w: 0.99768144}
scale: {x: 0.9999997, y: 1.0000002, z: 1.0000007}
- name: B-foot.R
parentName: B-shin.R
position: {x: -0.00000044263592, y: 0.3880767, z: 0.000000107811644}
rotation: {x: -0.53550065, y: -0.0043338453, z: -0.0016630876, w: 0.84452206}
scale: {x: 1, y: 0.9999993, z: 0.99999994}
- name: B-toe.R
parentName: B-foot.R
position: {x: 0.00000074386196, y: 0.17254034, z: 0.00000017937037}
rotation: {x: -0.000012542016, y: 0.96227294, z: -0.27208585, w: -0.00017487761}
scale: {x: 1, y: 1.0000029, z: 0.999997}
armTwist: 0.5
foreArmTwist: 0.5
upperLegTwist: 0.5
legTwist: 0.5
armStretch: 0.05
legStretch: 0.05
feetSpacing: 0
globalScale: 1
rootMotionBoneName:
hasTranslationDoF: 0
hasExtraRoot: 0
skeletonHasParents: 1
lastHumanDescriptionAvatarSource: {fileID: 9000000, guid: 1841c298173cdad4db8df8602c8f1c8d,
type: 3}
autoGenerateAvatarMappingIfUnspecified: 1
animationType: 3
humanoidOversampling: 1
avatarSetup: 2
addHumanoidExtraRootOnlyWhenUsingAvatar: 1
importBlendShapeDeformPercent: 1
remapMaterialsIfMaterialImportModeIsNone: 0
additionalBone: 0
userData:
assetBundleName:
assetBundleVariant:
AssetOrigin:
serializedVersion: 1
productId: 154271
packageName: Human Basic Motions FREE
packageVersion: 2.4.2
assetPath: Assets/Kevin Iglesias/Human Animations/Animations/Female/Movement/Walk/HumanF@Walk01_BackwardLeft.fbx
uploadId: 908942

View file

@ -1,973 +0,0 @@
fileFormatVersion: 2
guid: 11d5093c8a733f64099488183b5e3f9a
ModelImporter:
serializedVersion: 22200
internalIDToNameTable: []
externalObjects: {}
materials:
materialImportMode: 0
materialName: 0
materialSearch: 1
materialLocation: 1
animations:
legacyGenerateAnimations: 4
bakeSimulation: 0
resampleCurves: 1
optimizeGameObjects: 0
removeConstantScaleCurves: 0
motionNodeName:
animationImportErrors:
animationImportWarnings:
animationRetargetingWarnings:
animationDoRetargetingWarnings: 0
importAnimatedCustomProperties: 0
importConstraints: 0
animationCompression: 0
animationRotationError: 0.5
animationPositionError: 0.5
animationScaleError: 0.5
animationWrapMode: 0
extraExposedTransformPaths: []
extraUserProperties: []
clipAnimations:
- serializedVersion: 16
name: HumanF@Walk01_BackwardRight
takeName: Untitled
internalID: 3094330708855449807
firstFrame: 0
lastFrame: 24
wrapMode: 0
orientationOffsetY: 0
level: 0
cycleOffset: 0
loop: 0
hasAdditiveReferencePose: 0
loopTime: 1
loopBlend: 0
loopBlendOrientation: 1
loopBlendPositionY: 1
loopBlendPositionXZ: 1
keepOriginalOrientation: 1
keepOriginalPositionY: 1
keepOriginalPositionXZ: 1
heightFromFeet: 0
mirror: 0
bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
curves: []
events: []
transformMask:
- path:
weight: 1
- path: HumanF_BodyMesh
weight: 0
- path: Rig
weight: 1
- path: Rig/B-root
weight: 1
- path: Rig/B-root/B-hips
weight: 1
- path: Rig/B-root/B-hips/B-spine
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck/B-head
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck/B-head/B-jaw
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-handProp.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L/B-indexFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L/B-indexFinger02.L/B-indexFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L/B-middleFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L/B-middleFinger02.L/B-middleFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L/B-pinky02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L/B-pinky02.L/B-pinky03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L/B-ringFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L/B-ringFinger02.L/B-ringFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L/B-thumb02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L/B-thumb02.L/B-thumb03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-handProp.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R/B-indexFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R/B-indexFinger02.R/B-indexFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R/B-middleFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R/B-middleFinger02.R/B-middleFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R/B-pinky02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R/B-pinky02.R/B-pinky03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R/B-ringFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R/B-ringFinger02.R/B-ringFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R/B-thumb02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R/B-thumb02.R/B-thumb03.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L/B-foot.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L/B-foot.L/B-toe.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R/B-foot.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R/B-foot.R/B-toe.R
weight: 1
- path: Rig/B-root/B-spineProxy
weight: 1
maskType: 1
maskSource: {fileID: 31900000, guid: 89527f5525238ee44b3182458d85143a, type: 2}
additiveReferencePoseFrame: 0
isReadable: 0
meshes:
lODScreenPercentages: []
globalScale: 1
meshCompression: 0
addColliders: 0
useSRGBMaterialColor: 1
sortHierarchyByName: 1
importPhysicalCameras: 1
importVisibility: 1
importBlendShapes: 1
importCameras: 1
importLights: 1
nodeNameCollisionStrategy: 1
fileIdsGeneration: 2
swapUVChannels: 0
generateSecondaryUV: 0
useFileUnits: 1
keepQuads: 0
weldVertices: 1
bakeAxisConversion: 0
preserveHierarchy: 1
skinWeightsMode: 0
maxBonesPerVertex: 4
minBoneWeight: 0.001
optimizeBones: 1
meshOptimizationFlags: -1
indexFormat: 0
secondaryUVAngleDistortion: 8
secondaryUVAreaDistortion: 15.000001
secondaryUVHardAngle: 88
secondaryUVMarginMethod: 1
secondaryUVMinLightmapResolution: 40
secondaryUVMinObjectScale: 1
secondaryUVPackMargin: 4
useFileScale: 1
strictVertexDataChecks: 0
tangentSpace:
normalSmoothAngle: 60
normalImportMode: 0
tangentImportMode: 3
normalCalculationMode: 4
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0
blendShapeNormalImportMode: 1
normalSmoothingSource: 0
referencedClips: []
importAnimation: 1
humanDescription:
serializedVersion: 3
human:
- boneName: B-hips
humanName: Hips
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thigh.L
humanName: LeftUpperLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thigh.R
humanName: RightUpperLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shin.L
humanName: LeftLowerLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shin.R
humanName: RightLowerLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-foot.L
humanName: LeftFoot
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-foot.R
humanName: RightFoot
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-spine
humanName: Spine
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-chest
humanName: Chest
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-neck
humanName: Neck
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-head
humanName: Head
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shoulder.L
humanName: LeftShoulder
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shoulder.R
humanName: RightShoulder
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-upperArm.L
humanName: LeftUpperArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-upperArm.R
humanName: RightUpperArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-forearm.L
humanName: LeftLowerArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-forearm.R
humanName: RightLowerArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-hand.L
humanName: LeftHand
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-hand.R
humanName: RightHand
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-toe.L
humanName: LeftToes
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-toe.R
humanName: RightToes
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-jaw
humanName: Jaw
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb01.L
humanName: Left Thumb Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb02.L
humanName: Left Thumb Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb03.L
humanName: Left Thumb Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger01.L
humanName: Left Index Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger02.L
humanName: Left Index Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger03.L
humanName: Left Index Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger01.L
humanName: Left Middle Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger02.L
humanName: Left Middle Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger03.L
humanName: Left Middle Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger01.L
humanName: Left Ring Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger02.L
humanName: Left Ring Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger03.L
humanName: Left Ring Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky01.L
humanName: Left Little Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky02.L
humanName: Left Little Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky03.L
humanName: Left Little Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb01.R
humanName: Right Thumb Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb02.R
humanName: Right Thumb Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb03.R
humanName: Right Thumb Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger01.R
humanName: Right Index Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger02.R
humanName: Right Index Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger03.R
humanName: Right Index Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger01.R
humanName: Right Middle Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger02.R
humanName: Right Middle Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger03.R
humanName: Right Middle Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger01.R
humanName: Right Ring Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger02.R
humanName: Right Ring Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger03.R
humanName: Right Ring Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky01.R
humanName: Right Little Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky02.R
humanName: Right Little Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky03.R
humanName: Right Little Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
skeleton:
- name: Human_DummyModel_F(Clone)
parentName:
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: HumanF_BodyMesh
parentName: Human_DummyModel_F(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Rig
parentName: Human_DummyModel_F(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: B-root
parentName: Rig
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: B-spineProxy
parentName: B-root
position: {x: -0, y: 1.092844, z: 0.029147}
rotation: {x: -0.012905054, y: 0, z: -0, w: 0.99991673}
scale: {x: 1, y: 1.0000001, z: 1.0000001}
- name: B-hips
parentName: B-root
position: {x: -0, y: 0.967712, z: 0.016772}
rotation: {x: 0.04926631, y: 0, z: -0, w: 0.9987857}
scale: {x: 1, y: 1.0000004, z: 1.0000004}
- name: B-spine
parentName: B-hips
position: {x: -0, y: 0.12574437, z: 0.00000011940791}
rotation: {x: -0.062152267, y: 0, z: -0, w: 0.99806666}
scale: {x: 1, y: 0.99999976, z: 0.99999976}
- name: B-chest
parentName: B-spine
position: {x: -0, y: 0.13376056, z: -0.00000077390683}
rotation: {x: -0.02258696, y: 0, z: -0, w: 0.9997449}
scale: {x: 1, y: 0.9999996, z: 0.9999996}
- name: B-shoulder.R
parentName: B-chest
position: {x: -0, y: 0.19125995, z: -0.005656177}
rotation: {x: -0.5165573, y: -0.44464085, z: -0.47738376, w: 0.554588}
scale: {x: 1.0000008, y: 1.0000006, z: 1.0000002}
- name: B-upperArm.R
parentName: B-shoulder.R
position: {x: -0.00000043065853, y: 0.1619337, z: -0.000000866464}
rotation: {x: 0.03406315, y: 0.7090742, z: -0.08345674, w: 0.69934857}
scale: {x: 0.99999976, y: 1, z: 0.99999946}
- name: B-forearm.R
parentName: B-upperArm.R
position: {x: -0.0000005071642, y: 0.23413825, z: 0.0000019611641}
rotation: {x: 0.0013730773, y: -0.00042225965, z: 0.0032032696, w: 0.99999386}
scale: {x: 1.0000001, y: 0.99999964, z: 0.9999996}
- name: B-hand.R
parentName: B-forearm.R
position: {x: -0.000000328232, y: 0.19596381, z: -0.0000008355853}
rotation: {x: 0.013529134, y: 0.7054088, z: 0.032969795, w: 0.70790416}
scale: {x: 0.9999999, y: 1.0000002, z: 1.0000005}
- name: B-handProp.R
parentName: B-hand.R
position: {x: 0.0029605331, y: 0.10533051, z: 0.022608897}
rotation: {x: -0.67608327, y: 0.73659164, z: -0.013668106, w: -0.012545319}
scale: {x: 0.99999964, y: 1.0000005, z: 0.9999996}
- name: B-indexFinger01.R
parentName: B-hand.R
position: {x: -0.036052607, y: 0.13202412, z: -0.0022375023}
rotation: {x: 0.019054495, y: -0.0149580045, z: 0.031315368, w: 0.999216}
scale: {x: 1.0000002, y: 0.99999964, z: 0.9999993}
- name: B-indexFinger02.R
parentName: B-indexFinger01.R
position: {x: 0.00000021708313, y: 0.046758045, z: -0.0000005285747}
rotation: {x: 0.040758472, y: 0.02876925, z: -0.0030862393, w: 0.99875003}
scale: {x: 1, y: 1.0000004, z: 1.0000002}
- name: B-indexFinger03.R
parentName: B-indexFinger02.R
position: {x: 0.000000038075022, y: 0.034652043, z: 0.00000019983679}
rotation: {x: -0.006236443, y: 0.004024028, z: -0.0109188985, w: 0.99991286}
scale: {x: 0.9999999, y: 0.9999999, z: 0.99999964}
- name: B-middleFinger01.R
parentName: B-hand.R
position: {x: -0.00928522, y: 0.1318378, z: -0.0089382}
rotation: {x: -0.004700204, y: -0.0032572027, z: -0.001801642, w: 0.99998206}
scale: {x: 1.0000006, y: 0.9999997, z: 0.99999917}
- name: B-middleFinger02.R
parentName: B-middleFinger01.R
position: {x: -0.0000003849299, y: 0.048716273, z: -0.0000001691299}
rotation: {x: 0.039366316, y: 0.04573892, z: 0.00377753, w: 0.9981703}
scale: {x: 0.9999997, y: 1.0000004, z: 1}
- name: B-middleFinger03.R
parentName: B-middleFinger02.R
position: {x: -0.00000039262213, y: 0.035888083, z: 0.00000029152696}
rotation: {x: 0.0049846717, y: -0.02122791, z: -0.0063242065, w: 0.99974227}
scale: {x: 0.99999964, y: 0.99999994, z: 1.0000002}
- name: B-ringFinger01.R
parentName: B-hand.R
position: {x: 0.016020812, y: 0.1283572, z: -0.005707851}
rotation: {x: -0.0071167736, y: 0.0017728558, z: -0.036400504, w: 0.9993104}
scale: {x: 1.0000005, y: 0.9999992, z: 0.9999996}
- name: B-ringFinger02.R
parentName: B-ringFinger01.R
position: {x: 0.00000047158898, y: 0.045192316, z: 0.00000021597218}
rotation: {x: 0.037958622, y: -0.0021153935, z: 0.012520862, w: 0.9991986}
scale: {x: 0.99999946, y: 1.0000005, z: 0.9999997}
- name: B-ringFinger03.R
parentName: B-ringFinger02.R
position: {x: -0.0000004720245, y: 0.034694634, z: 0.00000008820079}
rotation: {x: 0.02091165, y: -0.04065229, z: -0.015794862, w: 0.99882966}
scale: {x: 1.0000002, y: 0.99999976, z: 0.9999997}
- name: B-pinky01.R
parentName: B-hand.R
position: {x: 0.041580904, y: 0.119742304, z: -0.0024299922}
rotation: {x: -0.011731888, y: -0.016481936, z: -0.04421447, w: 0.9988172}
scale: {x: 1.0000002, y: 0.9999994, z: 0.99999917}
- name: B-pinky02.R
parentName: B-pinky01.R
position: {x: 0.0000007804244, y: 0.03832724, z: 0.00000044214514}
rotation: {x: 0.039002027, y: 0.011177708, z: 0.009234122, w: 0.99913394}
scale: {x: 1.0000002, y: 1.0000006, z: 1.0000002}
- name: B-pinky03.R
parentName: B-pinky02.R
position: {x: -0.000000269953, y: 0.03220071, z: -0.0000005856981}
rotation: {x: 0.022101695, y: -0.02182341, z: 0.009210792, w: 0.99947506}
scale: {x: 1.0000005, y: 0.99999994, z: 1.0000007}
- name: B-thumb01.R
parentName: B-hand.R
position: {x: -0.039809253, y: 0.048496302, z: 0.0130518135}
rotation: {x: -0.22471787, y: 0.63045275, z: 0.29821387, w: 0.6805144}
scale: {x: 0.99999946, y: 1.0000002, z: 1.0000005}
- name: B-thumb02.R
parentName: B-thumb01.R
position: {x: 0.00000020260806, y: 0.047178134, z: 0.000000160123}
rotation: {x: 0.038173996, y: 0.013301423, z: -0.008042345, w: 0.9991502}
scale: {x: 1.0000007, y: 0.9999997, z: 0.9999999}
- name: B-thumb03.R
parentName: B-thumb02.R
position: {x: -0.00000069069114, y: 0.03520854, z: 0.00000004046409}
rotation: {x: -0.060352694, y: 0.014396386, z: 0.0074255248, w: 0.9980457}
scale: {x: 0.9999995, y: 1.0000004, z: 1}
- name: B-neck
parentName: B-chest
position: {x: -0, y: 0.27081212, z: 0.0000007058524}
rotation: {x: 0.105346866, y: 0, z: -0, w: 0.99443555}
scale: {x: 1, y: 0.9999997, z: 1.0000007}
- name: B-head
parentName: B-neck
position: {x: -0, y: 0.07409704, z: 0.00000025054106}
rotation: {x: -0.069990024, y: 0, z: -0, w: 0.9975477}
scale: {x: 1, y: 1.0000006, z: 0.99999964}
- name: B-jaw
parentName: B-head
position: {x: -0, y: 0, z: 0}
rotation: {x: 0.70698464, y: 0.000007072379, z: -0.00000706994, w: 0.7072289}
scale: {x: 1, y: 1, z: 1}
- name: B-shoulder.L
parentName: B-chest
position: {x: -0, y: 0.19125995, z: -0.005656177}
rotation: {x: -0.5165571, y: 0.44464028, z: 0.47738382, w: 0.5545886}
scale: {x: 0.9999998, y: 0.9999995, z: 1.0000002}
- name: B-upperArm.L
parentName: B-shoulder.L
position: {x: 0.00000040656337, y: 0.16193385, z: -0.0000008664629}
rotation: {x: 0.033948872, y: -0.70908755, z: 0.08334149, w: 0.69935447}
scale: {x: 0.9999998, y: 1.0000002, z: 0.9999999}
- name: B-forearm.L
parentName: B-upperArm.L
position: {x: 0.000000097359035, y: 0.2341381, z: 0.00000030291466}
rotation: {x: 0.0017385628, y: 0.0004205673, z: -0.0032047313, w: 0.99999326}
scale: {x: 0.99999994, y: 1.0000004, z: 1.0000001}
- name: B-hand.L
parentName: B-forearm.L
position: {x: 0.00000052406216, y: 0.1959644, z: -0.0000011816531}
rotation: {x: 0.013386631, y: -0.70541465, z: -0.032826252, w: 0.7079078}
scale: {x: 0.99999994, y: 0.9999992, z: 0.9999996}
- name: B-handProp.L
parentName: B-hand.L
position: {x: -0.0029615294, y: 0.10533054, z: 0.02260892}
rotation: {x: 0.67608327, y: 0.73659164, z: -0.013668119, w: 0.012545332}
scale: {x: 1.0000006, y: 0.99999946, z: 1.0000006}
- name: B-indexFinger01.L
parentName: B-hand.L
position: {x: 0.03605161, y: 0.13202417, z: -0.0022375062}
rotation: {x: 0.019054513, y: 0.014957919, z: -0.03131587, w: 0.99921596}
scale: {x: 1.0000004, y: 0.9999998, z: 1.0000002}
- name: B-indexFinger02.L
parentName: B-indexFinger01.L
position: {x: 0.00000072554116, y: 0.04675823, z: -0.0000005109258}
rotation: {x: 0.04075494, y: -0.02876944, z: 0.0030826945, w: 0.9987502}
scale: {x: 1.0000001, y: 1.0000002, z: 1.0000002}
- name: B-indexFinger03.L
parentName: B-indexFinger02.L
position: {x: -0.00000009920999, y: 0.034652077, z: 0.00000023013986}
rotation: {x: -0.0062364372, y: -0.004023549, z: 0.010918792, w: 0.99991286}
scale: {x: 0.9999998, y: 1.0000008, z: 0.9999995}
- name: B-middleFinger01.L
parentName: B-hand.L
position: {x: 0.00928522, y: 0.13183793, z: -0.008938214}
rotation: {x: -0.004700207, y: 0.0032570793, z: 0.0018007505, w: 0.99998206}
scale: {x: 1.0000007, y: 0.9999999, z: 1.0000001}
- name: B-middleFinger02.L
parentName: B-middleFinger01.L
position: {x: 0.00000028786184, y: 0.048716314, z: -0.00000017087451}
rotation: {x: 0.039368037, y: -0.045739666, z: -0.0037847473, w: 0.9981702}
scale: {x: 0.99999976, y: 1.000001, z: 1.0000006}
- name: B-middleFinger03.L
parentName: B-middleFinger02.L
position: {x: -0.00000066842983, y: 0.035888, z: 0.00000028642995}
rotation: {x: 0.0049827034, y: 0.021227859, z: 0.0063241003, w: 0.99974227}
scale: {x: 0.9999996, y: 0.99999905, z: 0.99999934}
- name: B-ringFinger01.L
parentName: B-hand.L
position: {x: -0.016021809, y: 0.12835726, z: -0.005707858}
rotation: {x: -0.007116776, y: -0.0017729683, z: 0.036399588, w: 0.99931043}
scale: {x: 1.0000005, y: 1.0000002, z: 1.0000006}
- name: B-ringFinger02.L
parentName: B-ringFinger01.L
position: {x: 0.00000043795694, y: 0.04519233, z: 0.00000021050154}
rotation: {x: 0.037963506, y: 0.0021157071, z: -0.01252746, w: 0.9991984}
scale: {x: 0.9999995, y: 0.99999964, z: 0.9999996}
- name: B-ringFinger03.L
parentName: B-ringFinger02.L
position: {x: 0.00000034561023, y: 0.03469565, z: -0.00000007648653}
rotation: {x: 0.020911071, y: 0.04065225, z: 0.015794758, w: 0.99882966}
scale: {x: 1.0000001, y: 1.0000005, z: 0.9999997}
- name: B-pinky01.L
parentName: B-hand.L
position: {x: -0.041581903, y: 0.119742356, z: -0.0024299957}
rotation: {x: -0.01172906, y: 0.01648238, z: 0.0442254, w: 0.9988167}
scale: {x: 1.0000002, y: 1.0000004, z: 1.0000002}
- name: B-pinky02.L
parentName: B-pinky01.L
position: {x: 0.00000014151807, y: 0.03832722, z: 0.00000047056287}
rotation: {x: 0.039005004, y: -0.011177422, z: -0.009239738, w: 0.99913377}
scale: {x: 1.0000002, y: 0.99999946, z: 1.0000001}
- name: B-pinky03.L
parentName: B-pinky02.L
position: {x: 0.000000233103, y: 0.032200746, z: -0.00000055902217}
rotation: {x: 0.022101717, y: 0.02182328, z: -0.009211465, w: 0.99947506}
scale: {x: 0.9999995, y: 1, z: 0.99999964}
- name: B-thumb01.L
parentName: B-hand.L
position: {x: 0.03980834, y: 0.048495278, z: 0.013051865}
rotation: {x: -0.2247114, y: -0.6304557, z: -0.2982149, w: 0.6805132}
scale: {x: 1.0000005, y: 1, z: 1.0000005}
- name: B-thumb02.L
parentName: B-thumb01.L
position: {x: -0.0000007063521, y: 0.047179468, z: -0.00000013365789}
rotation: {x: 0.038171936, y: -0.013301728, z: 0.008042519, w: 0.9991503}
scale: {x: 1.0000004, y: 1, z: 0.9999994}
- name: B-thumb03.L
parentName: B-thumb02.L
position: {x: 0.0000007190916, y: 0.035208564, z: 0.00000017922088}
rotation: {x: -0.06035389, y: -0.014396597, z: -0.007425322, w: 0.9980456}
scale: {x: 0.9999992, y: 0.99999994, z: 1.0000001}
- name: B-thigh.L
parentName: B-hips
position: {x: -0.096950985, y: -0.05446949, z: 0.0020414153}
rotation: {x: 0.9977441, y: 0.011110197, z: -0.0039620763, w: 0.066088475}
scale: {x: 1.0000002, y: 0.9999997, z: 1.000001}
- name: B-shin.L
parentName: B-thigh.L
position: {x: 0.00000018468991, y: 0.41111633, z: 0.0000005281011}
rotation: {x: 0.067057244, y: -0.00057845906, z: 0.011617889, w: 0.9976813}
scale: {x: 0.9999997, y: 1.0000002, z: 0.99999964}
- name: B-foot.L
parentName: B-shin.L
position: {x: -0.00000017405802, y: 0.3880767, z: -0.00000019306846}
rotation: {x: -0.5354999, y: 0.004330197, z: 0.0016612022, w: 0.84452266}
scale: {x: 1.0000001, y: 0.9999997, z: 0.99999976}
- name: B-toe.L
parentName: B-foot.L
position: {x: -0.00000027025197, y: 0.17254004, z: -0.000000117418054}
rotation: {x: 0.000012936387, y: 0.9622731, z: -0.27208534, w: 0.00017343421}
scale: {x: 1, y: 1.0000018, z: 0.999999}
- name: B-thigh.R
parentName: B-hips
position: {x: 0.096950985, y: -0.05446959, z: 0.0020404202}
rotation: {x: 0.9977441, y: -0.011109428, z: 0.003967029, w: 0.066088304}
scale: {x: 1.0000004, y: 0.99999976, z: 1.000008}
- name: B-shin.R
parentName: B-thigh.R
position: {x: 0.0000005496826, y: 0.41111633, z: -0.00000065481464}
rotation: {x: 0.06705632, y: 0.0005783735, z: -0.011616509, w: 0.99768144}
scale: {x: 0.9999997, y: 1.0000002, z: 1.0000007}
- name: B-foot.R
parentName: B-shin.R
position: {x: -0.00000044263592, y: 0.3880767, z: 0.000000107811644}
rotation: {x: -0.53550065, y: -0.0043338453, z: -0.0016630876, w: 0.84452206}
scale: {x: 1, y: 0.9999993, z: 0.99999994}
- name: B-toe.R
parentName: B-foot.R
position: {x: 0.00000074386196, y: 0.17254034, z: 0.00000017937037}
rotation: {x: -0.000012542016, y: 0.96227294, z: -0.27208585, w: -0.00017487761}
scale: {x: 1, y: 1.0000029, z: 0.999997}
armTwist: 0.5
foreArmTwist: 0.5
upperLegTwist: 0.5
legTwist: 0.5
armStretch: 0.05
legStretch: 0.05
feetSpacing: 0
globalScale: 1
rootMotionBoneName:
hasTranslationDoF: 0
hasExtraRoot: 0
skeletonHasParents: 1
lastHumanDescriptionAvatarSource: {fileID: 9000000, guid: 1841c298173cdad4db8df8602c8f1c8d,
type: 3}
autoGenerateAvatarMappingIfUnspecified: 1
animationType: 3
humanoidOversampling: 1
avatarSetup: 2
addHumanoidExtraRootOnlyWhenUsingAvatar: 1
importBlendShapeDeformPercent: 1
remapMaterialsIfMaterialImportModeIsNone: 0
additionalBone: 0
userData:
assetBundleName:
assetBundleVariant:
AssetOrigin:
serializedVersion: 1
productId: 154271
packageName: Human Basic Motions FREE
packageVersion: 2.4.2
assetPath: Assets/Kevin Iglesias/Human Animations/Animations/Female/Movement/Walk/HumanF@Walk01_BackwardRight.fbx
uploadId: 908942

View file

@ -1,973 +0,0 @@
fileFormatVersion: 2
guid: 2d87094962c8b48478651fa8fe1f7a5a
ModelImporter:
serializedVersion: 22200
internalIDToNameTable: []
externalObjects: {}
materials:
materialImportMode: 0
materialName: 0
materialSearch: 1
materialLocation: 1
animations:
legacyGenerateAnimations: 4
bakeSimulation: 0
resampleCurves: 1
optimizeGameObjects: 0
removeConstantScaleCurves: 0
motionNodeName:
animationImportErrors:
animationImportWarnings:
animationRetargetingWarnings:
animationDoRetargetingWarnings: 0
importAnimatedCustomProperties: 0
importConstraints: 0
animationCompression: 0
animationRotationError: 0.5
animationPositionError: 0.5
animationScaleError: 0.5
animationWrapMode: 0
extraExposedTransformPaths: []
extraUserProperties: []
clipAnimations:
- serializedVersion: 16
name: HumanF@Walk01_Forward
takeName: Untitled
internalID: 3094330708855449807
firstFrame: 0
lastFrame: 24
wrapMode: 0
orientationOffsetY: 0
level: 0
cycleOffset: 0
loop: 0
hasAdditiveReferencePose: 0
loopTime: 1
loopBlend: 0
loopBlendOrientation: 1
loopBlendPositionY: 1
loopBlendPositionXZ: 1
keepOriginalOrientation: 1
keepOriginalPositionY: 1
keepOriginalPositionXZ: 1
heightFromFeet: 0
mirror: 0
bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
curves: []
events: []
transformMask:
- path:
weight: 1
- path: HumanF_BodyMesh
weight: 0
- path: Rig
weight: 1
- path: Rig/B-root
weight: 1
- path: Rig/B-root/B-hips
weight: 1
- path: Rig/B-root/B-hips/B-spine
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck/B-head
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-neck/B-head/B-jaw
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-handProp.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L/B-indexFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-indexFinger01.L/B-indexFinger02.L/B-indexFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L/B-middleFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-middleFinger01.L/B-middleFinger02.L/B-middleFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L/B-pinky02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-pinky01.L/B-pinky02.L/B-pinky03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L/B-ringFinger02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-ringFinger01.L/B-ringFinger02.L/B-ringFinger03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L/B-thumb02.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.L/B-upperArm.L/B-forearm.L/B-hand.L/B-thumb01.L/B-thumb02.L/B-thumb03.L
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-handProp.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R/B-indexFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-indexFinger01.R/B-indexFinger02.R/B-indexFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R/B-middleFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-middleFinger01.R/B-middleFinger02.R/B-middleFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R/B-pinky02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-pinky01.R/B-pinky02.R/B-pinky03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R/B-ringFinger02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-ringFinger01.R/B-ringFinger02.R/B-ringFinger03.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R/B-thumb02.R
weight: 1
- path: Rig/B-root/B-hips/B-spine/B-chest/B-shoulder.R/B-upperArm.R/B-forearm.R/B-hand.R/B-thumb01.R/B-thumb02.R/B-thumb03.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L/B-foot.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.L/B-shin.L/B-foot.L/B-toe.L
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R/B-foot.R
weight: 1
- path: Rig/B-root/B-hips/B-thigh.R/B-shin.R/B-foot.R/B-toe.R
weight: 1
- path: Rig/B-root/B-spineProxy
weight: 1
maskType: 1
maskSource: {fileID: 31900000, guid: 89527f5525238ee44b3182458d85143a, type: 2}
additiveReferencePoseFrame: 0
isReadable: 0
meshes:
lODScreenPercentages: []
globalScale: 1
meshCompression: 0
addColliders: 0
useSRGBMaterialColor: 1
sortHierarchyByName: 1
importPhysicalCameras: 1
importVisibility: 1
importBlendShapes: 1
importCameras: 1
importLights: 1
nodeNameCollisionStrategy: 1
fileIdsGeneration: 2
swapUVChannels: 0
generateSecondaryUV: 0
useFileUnits: 1
keepQuads: 0
weldVertices: 1
bakeAxisConversion: 0
preserveHierarchy: 1
skinWeightsMode: 0
maxBonesPerVertex: 4
minBoneWeight: 0.001
optimizeBones: 1
meshOptimizationFlags: -1
indexFormat: 0
secondaryUVAngleDistortion: 8
secondaryUVAreaDistortion: 15.000001
secondaryUVHardAngle: 88
secondaryUVMarginMethod: 1
secondaryUVMinLightmapResolution: 40
secondaryUVMinObjectScale: 1
secondaryUVPackMargin: 4
useFileScale: 1
strictVertexDataChecks: 0
tangentSpace:
normalSmoothAngle: 60
normalImportMode: 0
tangentImportMode: 3
normalCalculationMode: 4
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0
blendShapeNormalImportMode: 1
normalSmoothingSource: 0
referencedClips: []
importAnimation: 1
humanDescription:
serializedVersion: 3
human:
- boneName: B-hips
humanName: Hips
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thigh.L
humanName: LeftUpperLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thigh.R
humanName: RightUpperLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shin.L
humanName: LeftLowerLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shin.R
humanName: RightLowerLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-foot.L
humanName: LeftFoot
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-foot.R
humanName: RightFoot
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-spine
humanName: Spine
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-chest
humanName: Chest
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-neck
humanName: Neck
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-head
humanName: Head
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shoulder.L
humanName: LeftShoulder
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-shoulder.R
humanName: RightShoulder
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-upperArm.L
humanName: LeftUpperArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-upperArm.R
humanName: RightUpperArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-forearm.L
humanName: LeftLowerArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-forearm.R
humanName: RightLowerArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-hand.L
humanName: LeftHand
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-hand.R
humanName: RightHand
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-toe.L
humanName: LeftToes
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-toe.R
humanName: RightToes
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-jaw
humanName: Jaw
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb01.L
humanName: Left Thumb Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb02.L
humanName: Left Thumb Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb03.L
humanName: Left Thumb Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger01.L
humanName: Left Index Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger02.L
humanName: Left Index Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger03.L
humanName: Left Index Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger01.L
humanName: Left Middle Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger02.L
humanName: Left Middle Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger03.L
humanName: Left Middle Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger01.L
humanName: Left Ring Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger02.L
humanName: Left Ring Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger03.L
humanName: Left Ring Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky01.L
humanName: Left Little Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky02.L
humanName: Left Little Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky03.L
humanName: Left Little Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb01.R
humanName: Right Thumb Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb02.R
humanName: Right Thumb Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-thumb03.R
humanName: Right Thumb Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger01.R
humanName: Right Index Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger02.R
humanName: Right Index Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-indexFinger03.R
humanName: Right Index Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger01.R
humanName: Right Middle Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger02.R
humanName: Right Middle Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-middleFinger03.R
humanName: Right Middle Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger01.R
humanName: Right Ring Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger02.R
humanName: Right Ring Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-ringFinger03.R
humanName: Right Ring Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky01.R
humanName: Right Little Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky02.R
humanName: Right Little Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: B-pinky03.R
humanName: Right Little Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
skeleton:
- name: Human_DummyModel_F(Clone)
parentName:
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: HumanF_BodyMesh
parentName: Human_DummyModel_F(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Rig
parentName: Human_DummyModel_F(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: B-root
parentName: Rig
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: B-spineProxy
parentName: B-root
position: {x: -0, y: 1.092844, z: 0.029147}
rotation: {x: -0.012905054, y: 0, z: -0, w: 0.99991673}
scale: {x: 1, y: 1.0000001, z: 1.0000001}
- name: B-hips
parentName: B-root
position: {x: -0, y: 0.967712, z: 0.016772}
rotation: {x: 0.04926631, y: 0, z: -0, w: 0.9987857}
scale: {x: 1, y: 1.0000004, z: 1.0000004}
- name: B-spine
parentName: B-hips
position: {x: -0, y: 0.12574437, z: 0.00000011940791}
rotation: {x: -0.062152267, y: 0, z: -0, w: 0.99806666}
scale: {x: 1, y: 0.99999976, z: 0.99999976}
- name: B-chest
parentName: B-spine
position: {x: -0, y: 0.13376056, z: -0.00000077390683}
rotation: {x: -0.02258696, y: 0, z: -0, w: 0.9997449}
scale: {x: 1, y: 0.9999996, z: 0.9999996}
- name: B-shoulder.R
parentName: B-chest
position: {x: -0, y: 0.19125995, z: -0.005656177}
rotation: {x: -0.5165573, y: -0.44464085, z: -0.47738376, w: 0.554588}
scale: {x: 1.0000008, y: 1.0000006, z: 1.0000002}
- name: B-upperArm.R
parentName: B-shoulder.R
position: {x: -0.00000043065853, y: 0.1619337, z: -0.000000866464}
rotation: {x: 0.03406315, y: 0.7090742, z: -0.08345674, w: 0.69934857}
scale: {x: 0.99999976, y: 1, z: 0.99999946}
- name: B-forearm.R
parentName: B-upperArm.R
position: {x: -0.0000005071642, y: 0.23413825, z: 0.0000019611641}
rotation: {x: 0.0013730773, y: -0.00042225965, z: 0.0032032696, w: 0.99999386}
scale: {x: 1.0000001, y: 0.99999964, z: 0.9999996}
- name: B-hand.R
parentName: B-forearm.R
position: {x: -0.000000328232, y: 0.19596381, z: -0.0000008355853}
rotation: {x: 0.013529134, y: 0.7054088, z: 0.032969795, w: 0.70790416}
scale: {x: 0.9999999, y: 1.0000002, z: 1.0000005}
- name: B-handProp.R
parentName: B-hand.R
position: {x: 0.0029605331, y: 0.10533051, z: 0.022608897}
rotation: {x: -0.67608327, y: 0.73659164, z: -0.013668106, w: -0.012545319}
scale: {x: 0.99999964, y: 1.0000005, z: 0.9999996}
- name: B-indexFinger01.R
parentName: B-hand.R
position: {x: -0.036052607, y: 0.13202412, z: -0.0022375023}
rotation: {x: 0.019054495, y: -0.0149580045, z: 0.031315368, w: 0.999216}
scale: {x: 1.0000002, y: 0.99999964, z: 0.9999993}
- name: B-indexFinger02.R
parentName: B-indexFinger01.R
position: {x: 0.00000021708313, y: 0.046758045, z: -0.0000005285747}
rotation: {x: 0.040758472, y: 0.02876925, z: -0.0030862393, w: 0.99875003}
scale: {x: 1, y: 1.0000004, z: 1.0000002}
- name: B-indexFinger03.R
parentName: B-indexFinger02.R
position: {x: 0.000000038075022, y: 0.034652043, z: 0.00000019983679}
rotation: {x: -0.006236443, y: 0.004024028, z: -0.0109188985, w: 0.99991286}
scale: {x: 0.9999999, y: 0.9999999, z: 0.99999964}
- name: B-middleFinger01.R
parentName: B-hand.R
position: {x: -0.00928522, y: 0.1318378, z: -0.0089382}
rotation: {x: -0.004700204, y: -0.0032572027, z: -0.001801642, w: 0.99998206}
scale: {x: 1.0000006, y: 0.9999997, z: 0.99999917}
- name: B-middleFinger02.R
parentName: B-middleFinger01.R
position: {x: -0.0000003849299, y: 0.048716273, z: -0.0000001691299}
rotation: {x: 0.039366316, y: 0.04573892, z: 0.00377753, w: 0.9981703}
scale: {x: 0.9999997, y: 1.0000004, z: 1}
- name: B-middleFinger03.R
parentName: B-middleFinger02.R
position: {x: -0.00000039262213, y: 0.035888083, z: 0.00000029152696}
rotation: {x: 0.0049846717, y: -0.02122791, z: -0.0063242065, w: 0.99974227}
scale: {x: 0.99999964, y: 0.99999994, z: 1.0000002}
- name: B-ringFinger01.R
parentName: B-hand.R
position: {x: 0.016020812, y: 0.1283572, z: -0.005707851}
rotation: {x: -0.0071167736, y: 0.0017728558, z: -0.036400504, w: 0.9993104}
scale: {x: 1.0000005, y: 0.9999992, z: 0.9999996}
- name: B-ringFinger02.R
parentName: B-ringFinger01.R
position: {x: 0.00000047158898, y: 0.045192316, z: 0.00000021597218}
rotation: {x: 0.037958622, y: -0.0021153935, z: 0.012520862, w: 0.9991986}
scale: {x: 0.99999946, y: 1.0000005, z: 0.9999997}
- name: B-ringFinger03.R
parentName: B-ringFinger02.R
position: {x: -0.0000004720245, y: 0.034694634, z: 0.00000008820079}
rotation: {x: 0.02091165, y: -0.04065229, z: -0.015794862, w: 0.99882966}
scale: {x: 1.0000002, y: 0.99999976, z: 0.9999997}
- name: B-pinky01.R
parentName: B-hand.R
position: {x: 0.041580904, y: 0.119742304, z: -0.0024299922}
rotation: {x: -0.011731888, y: -0.016481936, z: -0.04421447, w: 0.9988172}
scale: {x: 1.0000002, y: 0.9999994, z: 0.99999917}
- name: B-pinky02.R
parentName: B-pinky01.R
position: {x: 0.0000007804244, y: 0.03832724, z: 0.00000044214514}
rotation: {x: 0.039002027, y: 0.011177708, z: 0.009234122, w: 0.99913394}
scale: {x: 1.0000002, y: 1.0000006, z: 1.0000002}
- name: B-pinky03.R
parentName: B-pinky02.R
position: {x: -0.000000269953, y: 0.03220071, z: -0.0000005856981}
rotation: {x: 0.022101695, y: -0.02182341, z: 0.009210792, w: 0.99947506}
scale: {x: 1.0000005, y: 0.99999994, z: 1.0000007}
- name: B-thumb01.R
parentName: B-hand.R
position: {x: -0.039809253, y: 0.048496302, z: 0.0130518135}
rotation: {x: -0.22471787, y: 0.63045275, z: 0.29821387, w: 0.6805144}
scale: {x: 0.99999946, y: 1.0000002, z: 1.0000005}
- name: B-thumb02.R
parentName: B-thumb01.R
position: {x: 0.00000020260806, y: 0.047178134, z: 0.000000160123}
rotation: {x: 0.038173996, y: 0.013301423, z: -0.008042345, w: 0.9991502}
scale: {x: 1.0000007, y: 0.9999997, z: 0.9999999}
- name: B-thumb03.R
parentName: B-thumb02.R
position: {x: -0.00000069069114, y: 0.03520854, z: 0.00000004046409}
rotation: {x: -0.060352694, y: 0.014396386, z: 0.0074255248, w: 0.9980457}
scale: {x: 0.9999995, y: 1.0000004, z: 1}
- name: B-neck
parentName: B-chest
position: {x: -0, y: 0.27081212, z: 0.0000007058524}
rotation: {x: 0.105346866, y: 0, z: -0, w: 0.99443555}
scale: {x: 1, y: 0.9999997, z: 1.0000007}
- name: B-head
parentName: B-neck
position: {x: -0, y: 0.07409704, z: 0.00000025054106}
rotation: {x: -0.069990024, y: 0, z: -0, w: 0.9975477}
scale: {x: 1, y: 1.0000006, z: 0.99999964}
- name: B-jaw
parentName: B-head
position: {x: -0, y: 0, z: 0}
rotation: {x: 0.70698464, y: 0.000007072379, z: -0.00000706994, w: 0.7072289}
scale: {x: 1, y: 1, z: 1}
- name: B-shoulder.L
parentName: B-chest
position: {x: -0, y: 0.19125995, z: -0.005656177}
rotation: {x: -0.5165571, y: 0.44464028, z: 0.47738382, w: 0.5545886}
scale: {x: 0.9999998, y: 0.9999995, z: 1.0000002}
- name: B-upperArm.L
parentName: B-shoulder.L
position: {x: 0.00000040656337, y: 0.16193385, z: -0.0000008664629}
rotation: {x: 0.033948872, y: -0.70908755, z: 0.08334149, w: 0.69935447}
scale: {x: 0.9999998, y: 1.0000002, z: 0.9999999}
- name: B-forearm.L
parentName: B-upperArm.L
position: {x: 0.000000097359035, y: 0.2341381, z: 0.00000030291466}
rotation: {x: 0.0017385628, y: 0.0004205673, z: -0.0032047313, w: 0.99999326}
scale: {x: 0.99999994, y: 1.0000004, z: 1.0000001}
- name: B-hand.L
parentName: B-forearm.L
position: {x: 0.00000052406216, y: 0.1959644, z: -0.0000011816531}
rotation: {x: 0.013386631, y: -0.70541465, z: -0.032826252, w: 0.7079078}
scale: {x: 0.99999994, y: 0.9999992, z: 0.9999996}
- name: B-handProp.L
parentName: B-hand.L
position: {x: -0.0029615294, y: 0.10533054, z: 0.02260892}
rotation: {x: 0.67608327, y: 0.73659164, z: -0.013668119, w: 0.012545332}
scale: {x: 1.0000006, y: 0.99999946, z: 1.0000006}
- name: B-indexFinger01.L
parentName: B-hand.L
position: {x: 0.03605161, y: 0.13202417, z: -0.0022375062}
rotation: {x: 0.019054513, y: 0.014957919, z: -0.03131587, w: 0.99921596}
scale: {x: 1.0000004, y: 0.9999998, z: 1.0000002}
- name: B-indexFinger02.L
parentName: B-indexFinger01.L
position: {x: 0.00000072554116, y: 0.04675823, z: -0.0000005109258}
rotation: {x: 0.04075494, y: -0.02876944, z: 0.0030826945, w: 0.9987502}
scale: {x: 1.0000001, y: 1.0000002, z: 1.0000002}
- name: B-indexFinger03.L
parentName: B-indexFinger02.L
position: {x: -0.00000009920999, y: 0.034652077, z: 0.00000023013986}
rotation: {x: -0.0062364372, y: -0.004023549, z: 0.010918792, w: 0.99991286}
scale: {x: 0.9999998, y: 1.0000008, z: 0.9999995}
- name: B-middleFinger01.L
parentName: B-hand.L
position: {x: 0.00928522, y: 0.13183793, z: -0.008938214}
rotation: {x: -0.004700207, y: 0.0032570793, z: 0.0018007505, w: 0.99998206}
scale: {x: 1.0000007, y: 0.9999999, z: 1.0000001}
- name: B-middleFinger02.L
parentName: B-middleFinger01.L
position: {x: 0.00000028786184, y: 0.048716314, z: -0.00000017087451}
rotation: {x: 0.039368037, y: -0.045739666, z: -0.0037847473, w: 0.9981702}
scale: {x: 0.99999976, y: 1.000001, z: 1.0000006}
- name: B-middleFinger03.L
parentName: B-middleFinger02.L
position: {x: -0.00000066842983, y: 0.035888, z: 0.00000028642995}
rotation: {x: 0.0049827034, y: 0.021227859, z: 0.0063241003, w: 0.99974227}
scale: {x: 0.9999996, y: 0.99999905, z: 0.99999934}
- name: B-ringFinger01.L
parentName: B-hand.L
position: {x: -0.016021809, y: 0.12835726, z: -0.005707858}
rotation: {x: -0.007116776, y: -0.0017729683, z: 0.036399588, w: 0.99931043}
scale: {x: 1.0000005, y: 1.0000002, z: 1.0000006}
- name: B-ringFinger02.L
parentName: B-ringFinger01.L
position: {x: 0.00000043795694, y: 0.04519233, z: 0.00000021050154}
rotation: {x: 0.037963506, y: 0.0021157071, z: -0.01252746, w: 0.9991984}
scale: {x: 0.9999995, y: 0.99999964, z: 0.9999996}
- name: B-ringFinger03.L
parentName: B-ringFinger02.L
position: {x: 0.00000034561023, y: 0.03469565, z: -0.00000007648653}
rotation: {x: 0.020911071, y: 0.04065225, z: 0.015794758, w: 0.99882966}
scale: {x: 1.0000001, y: 1.0000005, z: 0.9999997}
- name: B-pinky01.L
parentName: B-hand.L
position: {x: -0.041581903, y: 0.119742356, z: -0.0024299957}
rotation: {x: -0.01172906, y: 0.01648238, z: 0.0442254, w: 0.9988167}
scale: {x: 1.0000002, y: 1.0000004, z: 1.0000002}
- name: B-pinky02.L
parentName: B-pinky01.L
position: {x: 0.00000014151807, y: 0.03832722, z: 0.00000047056287}
rotation: {x: 0.039005004, y: -0.011177422, z: -0.009239738, w: 0.99913377}
scale: {x: 1.0000002, y: 0.99999946, z: 1.0000001}
- name: B-pinky03.L
parentName: B-pinky02.L
position: {x: 0.000000233103, y: 0.032200746, z: -0.00000055902217}
rotation: {x: 0.022101717, y: 0.02182328, z: -0.009211465, w: 0.99947506}
scale: {x: 0.9999995, y: 1, z: 0.99999964}
- name: B-thumb01.L
parentName: B-hand.L
position: {x: 0.03980834, y: 0.048495278, z: 0.013051865}
rotation: {x: -0.2247114, y: -0.6304557, z: -0.2982149, w: 0.6805132}
scale: {x: 1.0000005, y: 1, z: 1.0000005}
- name: B-thumb02.L
parentName: B-thumb01.L
position: {x: -0.0000007063521, y: 0.047179468, z: -0.00000013365789}
rotation: {x: 0.038171936, y: -0.013301728, z: 0.008042519, w: 0.9991503}
scale: {x: 1.0000004, y: 1, z: 0.9999994}
- name: B-thumb03.L
parentName: B-thumb02.L
position: {x: 0.0000007190916, y: 0.035208564, z: 0.00000017922088}
rotation: {x: -0.06035389, y: -0.014396597, z: -0.007425322, w: 0.9980456}
scale: {x: 0.9999992, y: 0.99999994, z: 1.0000001}
- name: B-thigh.L
parentName: B-hips
position: {x: -0.096950985, y: -0.05446949, z: 0.0020414153}
rotation: {x: 0.9977441, y: 0.011110197, z: -0.0039620763, w: 0.066088475}
scale: {x: 1.0000002, y: 0.9999997, z: 1.000001}
- name: B-shin.L
parentName: B-thigh.L
position: {x: 0.00000018468991, y: 0.41111633, z: 0.0000005281011}
rotation: {x: 0.067057244, y: -0.00057845906, z: 0.011617889, w: 0.9976813}
scale: {x: 0.9999997, y: 1.0000002, z: 0.99999964}
- name: B-foot.L
parentName: B-shin.L
position: {x: -0.00000017405802, y: 0.3880767, z: -0.00000019306846}
rotation: {x: -0.5354999, y: 0.004330197, z: 0.0016612022, w: 0.84452266}
scale: {x: 1.0000001, y: 0.9999997, z: 0.99999976}
- name: B-toe.L
parentName: B-foot.L
position: {x: -0.00000027025197, y: 0.17254004, z: -0.000000117418054}
rotation: {x: 0.000012936387, y: 0.9622731, z: -0.27208534, w: 0.00017343421}
scale: {x: 1, y: 1.0000018, z: 0.999999}
- name: B-thigh.R
parentName: B-hips
position: {x: 0.096950985, y: -0.05446959, z: 0.0020404202}
rotation: {x: 0.9977441, y: -0.011109428, z: 0.003967029, w: 0.066088304}
scale: {x: 1.0000004, y: 0.99999976, z: 1.000008}
- name: B-shin.R
parentName: B-thigh.R
position: {x: 0.0000005496826, y: 0.41111633, z: -0.00000065481464}
rotation: {x: 0.06705632, y: 0.0005783735, z: -0.011616509, w: 0.99768144}
scale: {x: 0.9999997, y: 1.0000002, z: 1.0000007}
- name: B-foot.R
parentName: B-shin.R
position: {x: -0.00000044263592, y: 0.3880767, z: 0.000000107811644}
rotation: {x: -0.53550065, y: -0.0043338453, z: -0.0016630876, w: 0.84452206}
scale: {x: 1, y: 0.9999993, z: 0.99999994}
- name: B-toe.R
parentName: B-foot.R
position: {x: 0.00000074386196, y: 0.17254034, z: 0.00000017937037}
rotation: {x: -0.000012542016, y: 0.96227294, z: -0.27208585, w: -0.00017487761}
scale: {x: 1, y: 1.0000029, z: 0.999997}
armTwist: 0.5
foreArmTwist: 0.5
upperLegTwist: 0.5
legTwist: 0.5
armStretch: 0.05
legStretch: 0.05
feetSpacing: 0
globalScale: 1
rootMotionBoneName:
hasTranslationDoF: 0
hasExtraRoot: 0
skeletonHasParents: 1
lastHumanDescriptionAvatarSource: {fileID: 9000000, guid: 1841c298173cdad4db8df8602c8f1c8d,
type: 3}
autoGenerateAvatarMappingIfUnspecified: 1
animationType: 3
humanoidOversampling: 1
avatarSetup: 2
addHumanoidExtraRootOnlyWhenUsingAvatar: 1
importBlendShapeDeformPercent: 1
remapMaterialsIfMaterialImportModeIsNone: 0
additionalBone: 0
userData:
assetBundleName:
assetBundleVariant:
AssetOrigin:
serializedVersion: 1
productId: 154271
packageName: Human Basic Motions FREE
packageVersion: 2.4.2
assetPath: Assets/Kevin Iglesias/Human Animations/Animations/Female/Movement/Walk/HumanF@Walk01_Forward.fbx
uploadId: 908942

Some files were not shown because too many files have changed in this diff Show more