Animace + Menu
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: ba062aa6c92b140379dbc06b43dd3b9b
|
||||
guid: 5df5c90796533c044935f12eb8f5f7f7
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
41
Editor/ProjectSetupTools.cs
Normal file
41
Editor/ProjectSetupTools.cs
Normal file
@@ -0,0 +1,41 @@
|
||||
#if UNITY_EDITOR
|
||||
using UnityEditor;
|
||||
using UnityEngine;
|
||||
|
||||
namespace MegaKoop.EditorTools
|
||||
{
|
||||
public static class ProjectSetupTools
|
||||
{
|
||||
[MenuItem("Tools/MegaKoop/Steam/Enable 'STEAMWORKSNET' Define", priority = 5)]
|
||||
public static void EnableSteamworksDefine()
|
||||
{
|
||||
var group = EditorUserBuildSettings.selectedBuildTargetGroup;
|
||||
var defines = PlayerSettings.GetScriptingDefineSymbolsForGroup(group);
|
||||
if (!defines.Contains("STEAMWORKSNET"))
|
||||
{
|
||||
if (!string.IsNullOrEmpty(defines)) defines += ";";
|
||||
defines += "STEAMWORKSNET";
|
||||
PlayerSettings.SetScriptingDefineSymbolsForGroup(group, defines);
|
||||
Debug.Log($"[Setup] Added 'STEAMWORKSNET' define to {group}. Recompiling...");
|
||||
}
|
||||
else
|
||||
{
|
||||
Debug.Log("[Setup] 'STEAMWORKSNET' already present.");
|
||||
}
|
||||
}
|
||||
|
||||
[MenuItem("Tools/MegaKoop/Steam/Show Setup Instructions", priority = 6)]
|
||||
public static void ShowSteamSetupInstructions()
|
||||
{
|
||||
Debug.Log(
|
||||
"STEAM SETUP:\n" +
|
||||
"1) Install Steamworks.NET (Package/Asset).\n" +
|
||||
"2) Run Tools > MegaKoop > Steam > Enable 'STEAMWORKSNET' Define.\n" +
|
||||
"3) Ensure Steam client is running.\n" +
|
||||
"4) Optional: place steam_appid.txt (e.g., 480) beside the built .exe for local builds.\n" +
|
||||
"5) Press Play. Host -> Invite overlay opens automatically."
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
2
Editor/ProjectSetupTools.cs.meta
Normal file
2
Editor/ProjectSetupTools.cs.meta
Normal file
@@ -0,0 +1,2 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 85bb57c88b7097c409be7f750cecd93a
|
||||
422
Editor/UGUIMenuBuilder.cs
Normal file
422
Editor/UGUIMenuBuilder.cs
Normal file
@@ -0,0 +1,422 @@
|
||||
#if UNITY_EDITOR
|
||||
using UnityEditor;
|
||||
using UnityEngine;
|
||||
using UnityEngine.UI;
|
||||
using TMPro;
|
||||
using System.Linq;
|
||||
|
||||
namespace MegaKoop.EditorTools
|
||||
{
|
||||
public static class UGUIMenuBuilder
|
||||
{
|
||||
[MenuItem("Tools/MegaKoop/Generate UGUI Main Menu", priority = 0)]
|
||||
public static void GenerateUGUIMainMenu()
|
||||
{
|
||||
// Create or use dedicated UI_Canvas (do NOT bind to a random existing Canvas)
|
||||
Canvas canvas = null;
|
||||
var canvasGO = GameObject.Find("UI_Canvas");
|
||||
if (canvasGO == null)
|
||||
{
|
||||
canvasGO = new GameObject("UI_Canvas", typeof(Canvas), typeof(CanvasScaler), typeof(GraphicRaycaster));
|
||||
Undo.RegisterCreatedObjectUndo(canvasGO, "Create Canvas");
|
||||
}
|
||||
canvas = canvasGO.GetComponent<Canvas>();
|
||||
if (canvas == null) canvas = canvasGO.AddComponent<Canvas>();
|
||||
canvas.renderMode = RenderMode.ScreenSpaceOverlay;
|
||||
var scaler = canvasGO.GetComponent<CanvasScaler>();
|
||||
if (scaler == null) scaler = canvasGO.AddComponent<CanvasScaler>();
|
||||
scaler.uiScaleMode = CanvasScaler.ScaleMode.ScaleWithScreenSize;
|
||||
scaler.referenceResolution = new Vector2(1920, 1080);
|
||||
scaler.matchWidthOrHeight = 0.5f;
|
||||
|
||||
// Ensure EventSystem exists
|
||||
if (Object.FindObjectOfType<UnityEngine.EventSystems.EventSystem>() == null)
|
||||
{
|
||||
var es = new GameObject("EventSystem", typeof(UnityEngine.EventSystems.EventSystem), typeof(UnityEngine.EventSystems.StandaloneInputModule));
|
||||
Undo.RegisterCreatedObjectUndo(es, "Create EventSystem");
|
||||
}
|
||||
|
||||
// Clean old generated panels if present to avoid duplicates
|
||||
void DestroyChildIfExists(Transform parent, string childName)
|
||||
{
|
||||
var child = parent.Find(childName);
|
||||
if (child != null)
|
||||
{
|
||||
Undo.DestroyObjectImmediate(child.gameObject);
|
||||
}
|
||||
}
|
||||
DestroyChildIfExists(canvas.transform, "Panel_MainMenu");
|
||||
DestroyChildIfExists(canvas.transform, "Panel_Settings");
|
||||
DestroyChildIfExists(canvas.transform, "Panel_Lobby");
|
||||
|
||||
// Root panels
|
||||
var panelMain = CreatePanel(canvas.transform, "Panel_MainMenu", new Vector2(900, 800));
|
||||
var panelSettings = CreatePanel(canvas.transform, "Panel_Settings", new Vector2(900, 800));
|
||||
var panelLobby = CreatePanel(canvas.transform, "Panel_Lobby", new Vector2(1100, 820));
|
||||
panelSettings.SetActive(false);
|
||||
panelLobby.SetActive(false);
|
||||
|
||||
// Main Menu Content
|
||||
var mainContainer = CreateVerticalGroup(panelMain.transform, "Main_VLayout", 20, TextAnchor.MiddleCenter, new RectOffset(30, 30, 30, 30));
|
||||
CreateText(mainContainer.transform, "Text_Title", "MEGA KOOP", 70, TextAnchor.MiddleCenter, Color.white, FontStyles.Bold);
|
||||
CreateText(mainContainer.transform, "Text_Subtitle", "CO-OP ADVENTURE", 20, TextAnchor.MiddleCenter, new Color(0.8f,0.8f,0.8f), FontStyles.Normal);
|
||||
CreateSpacer(mainContainer.transform, 20);
|
||||
|
||||
CreateMenuButton(mainContainer.transform, "Button_Multiplayer", "MULTIPLAYER");
|
||||
CreateMenuButton(mainContainer.transform, "Button_Settings", "SETTINGS");
|
||||
CreateMenuButton(mainContainer.transform, "Button_Quit", "QUIT GAME", isDanger:true);
|
||||
|
||||
// Settings
|
||||
var settingsContainer = CreateVerticalGroup(panelSettings.transform, "Settings_VLayout", 16, TextAnchor.UpperCenter, new RectOffset(30,30,30,30));
|
||||
CreateText(settingsContainer.transform, "Text_SettingsTitle", "SETTINGS", 48, TextAnchor.MiddleCenter, Color.white, FontStyles.Bold);
|
||||
CreateSpacer(settingsContainer.transform, 10);
|
||||
|
||||
var gfxGroup = CreateVerticalGroup(settingsContainer.transform, "Graphics_Group", 10, TextAnchor.UpperLeft, new RectOffset(10,10,10,10));
|
||||
CreateText(gfxGroup.transform, "Text_Graphics", "Graphics", 24, TextAnchor.MiddleLeft, Color.white, FontStyles.Bold);
|
||||
CreateDropdown(gfxGroup.transform, "Dropdown_Quality", new string[]{"Low","Medium","High","Ultra"});
|
||||
CreateToggle(gfxGroup.transform, "Toggle_Fullscreen", "Fullscreen", true);
|
||||
CreateDropdown(gfxGroup.transform, "Dropdown_Resolution", new string[]{"1280x720","1920x1080","2560x1440","3840x2160"});
|
||||
|
||||
var settingsButtons = CreateHorizontalGroup(settingsContainer.transform, "Settings_Buttons", 10, TextAnchor.MiddleCenter, new RectOffset(0,0,0,0));
|
||||
CreateMenuButton(settingsButtons.transform, "Button_ApplySettings", "APPLY");
|
||||
CreateMenuButton(settingsButtons.transform, "Button_BackFromSettings", "BACK");
|
||||
|
||||
// Lobby
|
||||
var lobbyContainer = CreateVerticalGroup(panelLobby.transform, "Lobby_VLayout", 16, TextAnchor.UpperCenter, new RectOffset(24,24,24,24));
|
||||
var lobbyHeader = CreateHorizontalGroup(lobbyContainer.transform, "Lobby_Header", 10, TextAnchor.MiddleCenter, new RectOffset(0,0,0,10));
|
||||
CreateText(lobbyHeader.transform, "Text_LobbyTitle", "MULTIPLAYER LOBBY", 36, TextAnchor.MiddleLeft, new Color(0.7f,1f,0.7f), FontStyles.Bold);
|
||||
CreateText(lobbyHeader.transform, "Text_Status", "OFFLINE", 18, TextAnchor.MiddleRight, new Color(0.8f,0.8f,0.8f), FontStyles.Bold);
|
||||
|
||||
// Lobby code area
|
||||
var codeGroup = CreateVerticalGroup(lobbyContainer.transform, "Lobby_CodeGroup", 8, TextAnchor.MiddleCenter, new RectOffset(10,10,10,10));
|
||||
CreateText(codeGroup.transform, "Text_LobbyCodeLabel", "LOBBY CODE", 16, TextAnchor.MiddleCenter, new Color(0.8f,0.8f,0.8f), FontStyles.Bold);
|
||||
var codeRow = CreateHorizontalGroup(codeGroup.transform, "Lobby_CodeRow", 10, TextAnchor.MiddleCenter, new RectOffset(0,0,0,0));
|
||||
CreateText(codeRow.transform, "Text_LobbyCodeValue", "------", 44, TextAnchor.MiddleCenter, new Color(0.7f,1f,0.7f), FontStyles.Bold);
|
||||
CreateMenuButton(codeRow.transform, "Button_CopyCode", "COPY");
|
||||
CreateText(codeGroup.transform, "Text_LobbyCodeHint", "Share this code with friends to invite them", 12, TextAnchor.MiddleCenter, new Color(0.8f,0.8f,0.8f), FontStyles.Normal);
|
||||
|
||||
// Tabs
|
||||
var tabs = CreateHorizontalGroup(lobbyContainer.transform, "Lobby_Tabs", 0, TextAnchor.MiddleCenter, new RectOffset(0,0,0,0));
|
||||
CreateMenuButton(tabs.transform, "Button_HostTab", "HOST LOBBY");
|
||||
CreateMenuButton(tabs.transform, "Button_JoinTab", "JOIN LOBBY");
|
||||
|
||||
// Join content
|
||||
var joinGroup = CreateVerticalGroup(lobbyContainer.transform, "Group_Join", 10, TextAnchor.UpperCenter, new RectOffset(10,10,10,10));
|
||||
var joinRow = CreateHorizontalGroup(joinGroup.transform, "Join_Row", 10, TextAnchor.MiddleCenter, new RectOffset(0,0,0,0));
|
||||
CreateInputField(joinRow.transform, "Input_LobbyCode", "Enter 6-digit code...");
|
||||
CreateMenuButton(joinGroup.transform, "Button_Connect", "CONNECT");
|
||||
|
||||
// Host content
|
||||
var hostGroup = CreateVerticalGroup(lobbyContainer.transform, "Group_Host", 10, TextAnchor.UpperCenter, new RectOffset(10,10,10,10));
|
||||
CreateDropdown(hostGroup.transform, "Dropdown_MaxPlayers", new string[]{"2","3","4","8"});
|
||||
CreateToggle(hostGroup.transform, "Toggle_PublicLobby", "Public", true);
|
||||
CreateMenuButton(hostGroup.transform, "Button_CreateLobby", "CREATE LOBBY");
|
||||
|
||||
// Players list
|
||||
var playersHeader = CreateHorizontalGroup(lobbyContainer.transform, "Players_Header", 10, TextAnchor.MiddleLeft, new RectOffset(0,0,0,0));
|
||||
CreateText(playersHeader.transform, "Text_PlayersTitle", "PLAYERS", 20, TextAnchor.MiddleLeft, Color.white, FontStyles.Bold);
|
||||
CreateText(playersHeader.transform, "Text_PlayerCount", "0/4", 18, TextAnchor.MiddleRight, new Color(0.7f,1f,0.7f), FontStyles.Bold);
|
||||
|
||||
var scroll = CreateScrollList(lobbyContainer.transform, out var content, "Scroll_Players", "Viewport", "Content_PlayersList");
|
||||
var empty = CreateText(lobbyContainer.transform, "Empty_Players", "Waiting for players...", 16, TextAnchor.MiddleCenter, new Color(0.8f,0.8f,0.8f), FontStyles.Italic);
|
||||
|
||||
// Template for player entry
|
||||
var template = new GameObject("PlayerItemTemplate", typeof(RectTransform), typeof(HorizontalLayoutGroup));
|
||||
template.transform.SetParent(content, false);
|
||||
var hlg = template.GetComponent<HorizontalLayoutGroup>();
|
||||
hlg.childAlignment = TextAnchor.MiddleLeft; hlg.spacing = 12; hlg.childControlWidth = false; hlg.childForceExpandWidth = true;
|
||||
var avatar = CreateImage(template.transform, "Image_Avatar", new Color(0.3f,0.6f,0.3f));
|
||||
var name = CreateText(template.transform, "Text_PlayerName", "Player", 18, TextAnchor.MiddleLeft, Color.white, FontStyles.Bold);
|
||||
var status = CreateText(template.transform, "Text_PlayerStatus", "NOT READY", 14, TextAnchor.MiddleRight, new Color(0.8f,0.8f,0.8f), FontStyles.Bold);
|
||||
((RectTransform)avatar.transform).sizeDelta = new Vector2(40,40);
|
||||
template.SetActive(false);
|
||||
|
||||
// Host controls
|
||||
var hostControls = CreateHorizontalGroup(lobbyContainer.transform, "Host_Controls", 10, TextAnchor.MiddleCenter, new RectOffset(0,0,0,0));
|
||||
CreateMenuButton(hostControls.transform, "Button_InviteFriends", "INVITE FRIENDS");
|
||||
CreateMenuButton(hostControls.transform, "Button_KickSelected", "KICK SELECTED");
|
||||
|
||||
// Friends picker will be a modal overlay under Panel_Lobby (so it doesn't stretch main layout)
|
||||
var friendsOverlay = new GameObject("Panel_Friends", typeof(RectTransform), typeof(Image));
|
||||
friendsOverlay.transform.SetParent(panelLobby.transform, false);
|
||||
var ovRT = (RectTransform)friendsOverlay.transform; ovRT.anchorMin = new Vector2(0,0); ovRT.anchorMax = new Vector2(1,1); ovRT.offsetMin = Vector2.zero; ovRT.offsetMax = Vector2.zero;
|
||||
var ovImg = friendsOverlay.GetComponent<Image>(); ovImg.color = new Color(0,0,0,0.55f);
|
||||
friendsOverlay.SetActive(false);
|
||||
|
||||
// Transparent background button to close on backdrop click
|
||||
var closeBg = new GameObject("Button_CloseFriendsOverlay", typeof(RectTransform), typeof(Image), typeof(Button));
|
||||
closeBg.transform.SetParent(friendsOverlay.transform, false);
|
||||
var closeBgRT = (RectTransform)closeBg.transform; closeBgRT.anchorMin = new Vector2(0,0); closeBgRT.anchorMax = new Vector2(1,1); closeBgRT.offsetMin = Vector2.zero; closeBgRT.offsetMax = Vector2.zero;
|
||||
var closeBgImg = closeBg.GetComponent<Image>(); closeBgImg.color = new Color(0,0,0,0);
|
||||
|
||||
// Center modal window
|
||||
var friendsWindow = CreatePanel(friendsOverlay.transform, "Friends_Window", new Vector2(900, 420));
|
||||
var friendsV = CreateVerticalGroup(friendsWindow.transform, "Friends_VLayout", 8, TextAnchor.UpperCenter, new RectOffset(16,16,16,16));
|
||||
CreateText(friendsV.transform, "Text_FriendsTitle", "INVITE FRIENDS", 24, TextAnchor.MiddleCenter, Color.white, FontStyles.Bold);
|
||||
CreateText(friendsV.transform, "Text_FriendsHint", "Select a friend to send a Steam invite.", 12, TextAnchor.MiddleCenter, new Color(0.8f,0.8f,0.8f), FontStyles.Normal);
|
||||
var friendsScroll = CreateScrollList(friendsV.transform, out var friendsContent, "Scroll_Friends", "Viewport", "Content_FriendsList");
|
||||
// Make friends content a compact grid of icons
|
||||
var vlgFriends = friendsContent.GetComponent<VerticalLayoutGroup>();
|
||||
if (vlgFriends) Object.DestroyImmediate(vlgFriends);
|
||||
var gridFriends = friendsContent.gameObject.AddComponent<GridLayoutGroup>();
|
||||
gridFriends.cellSize = new Vector2(72, 72);
|
||||
gridFriends.spacing = new Vector2(10, 10);
|
||||
gridFriends.startAxis = GridLayoutGroup.Axis.Horizontal;
|
||||
var csfFriends = friendsContent.GetComponent<ContentSizeFitter>();
|
||||
if (csfFriends == null) csfFriends = friendsContent.gameObject.AddComponent<ContentSizeFitter>();
|
||||
csfFriends.verticalFit = ContentSizeFitter.FitMode.PreferredSize;
|
||||
CreateText(friendsV.transform, "Empty_Friends", "No friends found.", 14, TextAnchor.MiddleCenter, new Color(0.8f,0.8f,0.8f), FontStyles.Italic);
|
||||
var friendsFooter = CreateHorizontalGroup(friendsV.transform, "Friends_Footer", 8, TextAnchor.MiddleCenter, new RectOffset(0,0,0,0));
|
||||
CreateMenuButton(friendsFooter.transform, "Button_BackFromFriends", "BACK");
|
||||
|
||||
// Ready
|
||||
CreateMenuButton(lobbyContainer.transform, "Button_ToggleReady", "TOGGLE READY");
|
||||
|
||||
// Footer
|
||||
var footer = CreateHorizontalGroup(lobbyContainer.transform, "Lobby_Footer", 10, TextAnchor.MiddleCenter, new RectOffset(0,0,0,0));
|
||||
CreateMenuButton(footer.transform, "Button_StartGame", "START GAME");
|
||||
CreateMenuButton(footer.transform, "Button_LeaveLobby", "LEAVE LOBBY");
|
||||
CreateMenuButton(footer.transform, "Button_BackFromLobby", "BACK TO MENU");
|
||||
|
||||
// Controllers
|
||||
var mainCtrl = canvas.gameObject.GetComponent<MegaKoop.UI.UGUIMainMenuController>();
|
||||
if (mainCtrl == null) mainCtrl = canvas.gameObject.AddComponent<MegaKoop.UI.UGUIMainMenuController>();
|
||||
var lobbyCtrl = canvas.gameObject.GetComponent<MegaKoop.UI.UGUIMultiplayerLobbyController>();
|
||||
if (lobbyCtrl == null) lobbyCtrl = canvas.gameObject.AddComponent<MegaKoop.UI.UGUIMultiplayerLobbyController>();
|
||||
|
||||
// Inject panel references for reliability
|
||||
mainCtrl.SetPanels(panelMain, panelSettings, panelLobby);
|
||||
lobbyCtrl.SetLobbyRoot(panelLobby);
|
||||
|
||||
Selection.activeGameObject = canvas.gameObject;
|
||||
|
||||
Debug.Log("[UGUIMenuBuilder] UGUI Main Menu generated successfully. You can press Play and test.");
|
||||
}
|
||||
|
||||
private static GameObject CreatePanel(Transform parent, string name, Vector2 size)
|
||||
{
|
||||
var go = new GameObject(name, typeof(RectTransform), typeof(Image));
|
||||
go.transform.SetParent(parent, false);
|
||||
var rt = (RectTransform)go.transform;
|
||||
rt.anchorMin = rt.anchorMax = new Vector2(0.5f, 0.5f);
|
||||
rt.pivot = new Vector2(0.5f, 0.5f);
|
||||
rt.sizeDelta = size;
|
||||
var img = go.GetComponent<Image>();
|
||||
img.color = new Color(0.13f, 0.13f, 0.13f, 0.95f);
|
||||
return go;
|
||||
}
|
||||
|
||||
private static GameObject CreateVerticalGroup(Transform parent, string name, float spacing, TextAnchor align, RectOffset padding)
|
||||
{
|
||||
var go = new GameObject(name, typeof(RectTransform), typeof(VerticalLayoutGroup), typeof(ContentSizeFitter));
|
||||
go.transform.SetParent(parent, false);
|
||||
var rt = (RectTransform)go.transform;
|
||||
rt.anchorMin = new Vector2(0, 0); rt.anchorMax = new Vector2(1, 1); rt.offsetMin = new Vector2(0,0); rt.offsetMax = new Vector2(0,0);
|
||||
var vlg = go.GetComponent<VerticalLayoutGroup>();
|
||||
vlg.spacing = spacing; vlg.childAlignment = align; vlg.padding = padding; vlg.childForceExpandWidth = true; vlg.childControlWidth = true; vlg.childControlHeight = false;
|
||||
var fitter = go.GetComponent<ContentSizeFitter>();
|
||||
fitter.verticalFit = ContentSizeFitter.FitMode.PreferredSize; fitter.horizontalFit = ContentSizeFitter.FitMode.Unconstrained;
|
||||
return go;
|
||||
}
|
||||
|
||||
private static GameObject CreateHorizontalGroup(Transform parent, string name, float spacing, TextAnchor align, RectOffset padding)
|
||||
{
|
||||
var go = new GameObject(name, typeof(RectTransform), typeof(HorizontalLayoutGroup));
|
||||
go.transform.SetParent(parent, false);
|
||||
var rt = (RectTransform)go.transform;
|
||||
rt.anchorMin = new Vector2(0, 0); rt.anchorMax = new Vector2(1, 0); rt.pivot = new Vector2(0.5f, 0.5f);
|
||||
rt.sizeDelta = new Vector2(0, 60);
|
||||
var hlg = go.GetComponent<HorizontalLayoutGroup>();
|
||||
hlg.spacing = spacing; hlg.childAlignment = align; hlg.padding = padding; hlg.childControlWidth = true; hlg.childForceExpandWidth = true;
|
||||
return go;
|
||||
}
|
||||
|
||||
private static GameObject CreateText(Transform parent, string name, string text, int fontSize, TextAnchor anchor, Color color, FontStyles fontStyle)
|
||||
{
|
||||
var go = new GameObject(name, typeof(RectTransform), typeof(TextMeshProUGUI), typeof(LayoutElement));
|
||||
go.transform.SetParent(parent, false);
|
||||
var t = go.GetComponent<TextMeshProUGUI>();
|
||||
t.text = text; t.fontSize = fontSize; t.color = color; t.alignment = MapAlignment(anchor); t.fontStyle = fontStyle;
|
||||
t.enableWordWrapping = false; // avoid vertical letters
|
||||
t.raycastTarget = false; // don't block parent UI clicks
|
||||
if (TMP_Settings.defaultFontAsset != null) t.font = TMP_Settings.defaultFontAsset;
|
||||
var le = go.GetComponent<LayoutElement>();
|
||||
le.minHeight = Mathf.Max(24, fontSize + 12);
|
||||
var rt = (RectTransform)go.transform; rt.sizeDelta = new Vector2(0, fontSize + 20);
|
||||
return go;
|
||||
}
|
||||
|
||||
private static TextAlignmentOptions MapAlignment(TextAnchor anchor)
|
||||
{
|
||||
switch (anchor)
|
||||
{
|
||||
case TextAnchor.UpperLeft: return TextAlignmentOptions.TopLeft;
|
||||
case TextAnchor.UpperCenter: return TextAlignmentOptions.Top;
|
||||
case TextAnchor.UpperRight: return TextAlignmentOptions.TopRight;
|
||||
case TextAnchor.MiddleLeft: return TextAlignmentOptions.MidlineLeft;
|
||||
case TextAnchor.MiddleCenter: return TextAlignmentOptions.Midline;
|
||||
case TextAnchor.MiddleRight: return TextAlignmentOptions.MidlineRight;
|
||||
case TextAnchor.LowerLeft: return TextAlignmentOptions.BottomLeft;
|
||||
case TextAnchor.LowerCenter: return TextAlignmentOptions.Bottom;
|
||||
case TextAnchor.LowerRight: return TextAlignmentOptions.BottomRight;
|
||||
default: return TextAlignmentOptions.Center;
|
||||
}
|
||||
}
|
||||
|
||||
private static GameObject CreateMenuButton(Transform parent, string name, string label, bool isDanger = false)
|
||||
{
|
||||
var go = new GameObject(name, typeof(RectTransform), typeof(Image), typeof(Button));
|
||||
go.transform.SetParent(parent, false);
|
||||
var img = go.GetComponent<Image>();
|
||||
img.color = isDanger ? new Color(0.5f, 0.15f, 0.15f, 0.9f) : new Color(0.25f, 0.5f, 0.25f, 0.9f);
|
||||
var rt = (RectTransform)go.transform; rt.sizeDelta = new Vector2(0, 48);
|
||||
var leBtn = go.AddComponent<LayoutElement>();
|
||||
leBtn.flexibleWidth = 1; leBtn.minHeight = 48;
|
||||
var text = CreateText(go.transform, "Text", label, 20, TextAnchor.MiddleCenter, Color.white, FontStyles.Bold);
|
||||
var textRT = (RectTransform)text.transform; textRT.anchorMin = new Vector2(0,0); textRT.anchorMax = new Vector2(1,1); textRT.offsetMin = Vector2.zero; textRT.offsetMax = Vector2.zero;
|
||||
return go;
|
||||
}
|
||||
|
||||
private static GameObject CreateInputField(Transform parent, string name, string placeholder)
|
||||
{
|
||||
var go = new GameObject(name, typeof(RectTransform), typeof(Image), typeof(TMP_InputField));
|
||||
go.transform.SetParent(parent, false);
|
||||
var img = go.GetComponent<Image>(); img.color = new Color(0.1f,0.1f,0.1f,0.9f);
|
||||
var rt = (RectTransform)go.transform; rt.sizeDelta = new Vector2(600, 50);
|
||||
var viewport = new GameObject("TextViewport", typeof(RectTransform)); viewport.transform.SetParent(go.transform, false);
|
||||
var viewportRT = (RectTransform)viewport.transform; viewportRT.anchorMin = new Vector2(0,0); viewportRT.anchorMax = new Vector2(1,1); viewportRT.offsetMin = new Vector2(10,6); viewportRT.offsetMax = new Vector2(-10,-6);
|
||||
var text = CreateText(viewport.transform, "Text", string.Empty, 20, TextAnchor.MiddleLeft, Color.white, FontStyles.Normal);
|
||||
var placeholderGO = CreateText(viewport.transform, "Placeholder", placeholder, 18, TextAnchor.MiddleLeft, new Color(0.7f,0.7f,0.7f), FontStyles.Italic);
|
||||
var input = go.GetComponent<TMP_InputField>();
|
||||
input.textViewport = viewportRT;
|
||||
input.textComponent = text.GetComponent<TextMeshProUGUI>();
|
||||
input.placeholder = placeholderGO.GetComponent<TextMeshProUGUI>();
|
||||
var tRT = (RectTransform)text.transform; tRT.anchorMin = new Vector2(0,0); tRT.anchorMax = new Vector2(1,1); tRT.offsetMin = new Vector2(10,0); tRT.offsetMax = new Vector2(-10,0);
|
||||
var pRT = (RectTransform)placeholderGO.transform; pRT.anchorMin = new Vector2(0,0); pRT.anchorMax = new Vector2(1,1); pRT.offsetMin = new Vector2(10,0); pRT.offsetMax = new Vector2(-10,0);
|
||||
return go;
|
||||
}
|
||||
|
||||
private static GameObject CreateDropdown(Transform parent, string name, string[] options)
|
||||
{
|
||||
var go = new GameObject(name, typeof(RectTransform), typeof(Image), typeof(TMP_Dropdown));
|
||||
go.transform.SetParent(parent, false);
|
||||
var img = go.GetComponent<Image>(); img.color = new Color(0.2f,0.2f,0.2f,0.9f);
|
||||
var rt = (RectTransform)go.transform; rt.sizeDelta = new Vector2(600, 50);
|
||||
|
||||
// Caption label
|
||||
var caption = CreateText(go.transform, "Label", options.FirstOrDefault() ?? "Option", 18, TextAnchor.MiddleLeft, Color.white, FontStyles.Normal);
|
||||
var arrow = CreateText(go.transform, "Arrow", "▼", 18, TextAnchor.MiddleRight, Color.white, FontStyles.Bold);
|
||||
|
||||
// Template (disabled by default)
|
||||
var template = new GameObject("Template", typeof(RectTransform), typeof(Image), typeof(ScrollRect));
|
||||
template.transform.SetParent(go.transform, false);
|
||||
var templateRT = (RectTransform)template.transform;
|
||||
templateRT.anchorMin = new Vector2(0, 0); templateRT.anchorMax = new Vector2(1, 0); templateRT.pivot = new Vector2(0.5f, 1);
|
||||
templateRT.sizeDelta = new Vector2(0, 220); // visible dropdown height
|
||||
template.SetActive(false);
|
||||
var templateImg = template.GetComponent<Image>(); templateImg.color = new Color(0.1f,0.1f,0.1f,0.95f);
|
||||
|
||||
// Viewport
|
||||
var viewport = new GameObject("Viewport", typeof(RectTransform), typeof(Mask), typeof(Image));
|
||||
viewport.transform.SetParent(template.transform, false);
|
||||
var viewportRT = (RectTransform)viewport.transform; viewportRT.anchorMin = new Vector2(0,0); viewportRT.anchorMax = new Vector2(1,1); viewportRT.offsetMin = Vector2.zero; viewportRT.offsetMax = Vector2.zero;
|
||||
var vImg = viewport.GetComponent<Image>(); vImg.color = new Color(0,0,0,0.2f);
|
||||
viewport.GetComponent<Mask>().showMaskGraphic = false;
|
||||
|
||||
// Scroll content
|
||||
var content = new GameObject("Content", typeof(RectTransform), typeof(VerticalLayoutGroup));
|
||||
content.transform.SetParent(viewport.transform, false);
|
||||
var contentRT = (RectTransform)content.transform; contentRT.anchorMin = new Vector2(0,1); contentRT.anchorMax = new Vector2(1,1); contentRT.pivot = new Vector2(0.5f,1);
|
||||
var vlg = content.GetComponent<VerticalLayoutGroup>(); vlg.spacing = 4; vlg.childForceExpandWidth = true; vlg.childControlHeight = true;
|
||||
|
||||
// Item (Toggle)
|
||||
var item = new GameObject("Item", typeof(RectTransform), typeof(Toggle));
|
||||
item.transform.SetParent(content.transform, false);
|
||||
var itemRT = (RectTransform)item.transform; itemRT.sizeDelta = new Vector2(0, 30);
|
||||
var itemBG = new GameObject("Item Background", typeof(RectTransform), typeof(Image));
|
||||
itemBG.transform.SetParent(item.transform, false);
|
||||
var itemBGImg = itemBG.GetComponent<Image>(); itemBGImg.color = new Color(0.2f,0.2f,0.2f,0.9f);
|
||||
var itemCheck = new GameObject("Item Checkmark", typeof(RectTransform), typeof(Image));
|
||||
itemCheck.transform.SetParent(itemBG.transform, false);
|
||||
var itemCheckImg = itemCheck.GetComponent<Image>(); itemCheckImg.color = new Color(0.7f,1f,0.7f,1f);
|
||||
var itemLabelGO = CreateText(item.transform, "Item Label", "Option", 18, TextAnchor.MiddleLeft, Color.white, FontStyles.Normal);
|
||||
|
||||
// Position sub-elements
|
||||
var bgRT = (RectTransform)itemBG.transform; bgRT.anchorMin = new Vector2(0,0); bgRT.anchorMax = new Vector2(1,1); bgRT.offsetMin = Vector2.zero; bgRT.offsetMax = Vector2.zero;
|
||||
var ckRT = (RectTransform)itemCheck.transform; ckRT.anchorMin = new Vector2(0,0.5f); ckRT.anchorMax = new Vector2(0,0.5f); ckRT.pivot = new Vector2(0,0.5f); ckRT.sizeDelta = new Vector2(18,18); ckRT.anchoredPosition = new Vector2(6,0);
|
||||
var itemLabelRT = (RectTransform)itemLabelGO.transform; itemLabelRT.anchorMin = new Vector2(0,0); itemLabelRT.anchorMax = new Vector2(1,1); itemLabelRT.offsetMin = new Vector2(28,0); itemLabelRT.offsetMax = new Vector2(-6,0);
|
||||
|
||||
// Toggle wiring
|
||||
var tgl = item.GetComponent<Toggle>();
|
||||
tgl.targetGraphic = itemBGImg; tgl.graphic = itemCheckImg;
|
||||
|
||||
// Dropdown wiring
|
||||
var dd = go.GetComponent<TMP_Dropdown>();
|
||||
dd.template = template.GetComponent<RectTransform>();
|
||||
dd.captionText = caption.GetComponent<TextMeshProUGUI>();
|
||||
dd.itemText = itemLabelGO.GetComponent<TextMeshProUGUI>();
|
||||
dd.options = options.Select(o => new TMP_Dropdown.OptionData(o)).ToList();
|
||||
dd.RefreshShownValue();
|
||||
|
||||
// ScrollRect wiring
|
||||
var scr = template.GetComponent<ScrollRect>();
|
||||
scr.viewport = viewport.GetComponent<RectTransform>();
|
||||
scr.content = content.GetComponent<RectTransform>();
|
||||
scr.horizontal = false; scr.vertical = true;
|
||||
return go;
|
||||
}
|
||||
|
||||
private static GameObject CreateToggle(Transform parent, string name, string labelText, bool initial)
|
||||
{
|
||||
var go = new GameObject(name, typeof(RectTransform), typeof(Toggle));
|
||||
go.transform.SetParent(parent, false);
|
||||
var bg = CreateImage(go.transform, "Background", new Color(0.2f,0.2f,0.2f));
|
||||
var check = CreateImage(bg.transform, "Checkmark", new Color(0.7f,1f,0.7f));
|
||||
var label = CreateText(go.transform, "Label", labelText, 18, TextAnchor.MiddleLeft, Color.white, FontStyles.Normal);
|
||||
var t = go.GetComponent<Toggle>();
|
||||
t.isOn = initial; t.graphic = check.GetComponent<Image>(); t.targetGraphic = bg.GetComponent<Image>();
|
||||
var rt = (RectTransform)go.transform; rt.sizeDelta = new Vector2(600, 40);
|
||||
var bgRT = (RectTransform)bg.transform; bgRT.anchorMin = new Vector2(0,0.5f); bgRT.anchorMax = new Vector2(0,0.5f); bgRT.pivot = new Vector2(0,0.5f); bgRT.sizeDelta = new Vector2(24,24);
|
||||
var checkRT = (RectTransform)check.transform; checkRT.anchorMin = checkRT.anchorMax = new Vector2(0.5f,0.5f); checkRT.sizeDelta = new Vector2(16,16);
|
||||
var labelRT = (RectTransform)label.transform; labelRT.anchorMin = new Vector2(0,0); labelRT.anchorMax = new Vector2(1,1); labelRT.offsetMin = new Vector2(34,0); labelRT.offsetMax = new Vector2(0,0);
|
||||
return go;
|
||||
}
|
||||
|
||||
private static GameObject CreateImage(Transform parent, string name, Color color)
|
||||
{
|
||||
var go = new GameObject(name, typeof(RectTransform), typeof(Image));
|
||||
go.transform.SetParent(parent, false);
|
||||
var img = go.GetComponent<Image>(); img.color = color;
|
||||
return go;
|
||||
}
|
||||
|
||||
private static void CreateSpacer(Transform parent, float height)
|
||||
{
|
||||
var sp = new GameObject("Spacer", typeof(RectTransform));
|
||||
sp.transform.SetParent(parent, false);
|
||||
var rt = (RectTransform)sp.transform; rt.sizeDelta = new Vector2(0, height);
|
||||
}
|
||||
|
||||
private static ScrollRect CreateScrollList(Transform parent, out Transform content, string scrollName, string viewportName, string contentName)
|
||||
{
|
||||
var scrollGO = new GameObject(scrollName, typeof(RectTransform), typeof(Image), typeof(ScrollRect));
|
||||
scrollGO.transform.SetParent(parent, false);
|
||||
var srt = (RectTransform)scrollGO.transform; srt.sizeDelta = new Vector2(0, 240);
|
||||
var img = scrollGO.GetComponent<Image>(); img.color = new Color(0,0,0,0.3f);
|
||||
var viewport = new GameObject(viewportName, typeof(RectTransform), typeof(Mask), typeof(Image));
|
||||
viewport.transform.SetParent(scrollGO.transform, false);
|
||||
var vImg = viewport.GetComponent<Image>(); vImg.color = new Color(0,0,0,0.1f);
|
||||
viewport.GetComponent<Mask>().showMaskGraphic = false;
|
||||
var vprt = (RectTransform)viewport.transform; vprt.anchorMin = new Vector2(0,0); vprt.anchorMax = new Vector2(1,1); vprt.offsetMin = Vector2.zero; vprt.offsetMax = Vector2.zero;
|
||||
var contentGO = new GameObject(contentName, typeof(RectTransform), typeof(VerticalLayoutGroup));
|
||||
contentGO.transform.SetParent(viewport.transform, false);
|
||||
var vlg = contentGO.GetComponent<VerticalLayoutGroup>(); vlg.spacing = 8; vlg.childAlignment = TextAnchor.UpperLeft; vlg.childForceExpandWidth = true;
|
||||
var crt = (RectTransform)contentGO.transform; crt.anchorMin = new Vector2(0,1); crt.anchorMax = new Vector2(1,1); crt.pivot = new Vector2(0.5f,1); crt.offsetMin = new Vector2(0,0); crt.offsetMax = new Vector2(0,0);
|
||||
var csf = contentGO.AddComponent<ContentSizeFitter>(); csf.verticalFit = ContentSizeFitter.FitMode.PreferredSize;
|
||||
content = contentGO.transform;
|
||||
var scroll = scrollGO.GetComponent<ScrollRect>(); scroll.viewport = (RectTransform)viewport.transform; scroll.content = (RectTransform)content; scroll.horizontal = false; scroll.vertical = true;
|
||||
return scroll;
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
2
Editor/UGUIMenuBuilder.cs.meta
Normal file
2
Editor/UGUIMenuBuilder.cs.meta
Normal file
@@ -0,0 +1,2 @@
|
||||
fileFormatVersion: 2
|
||||
guid: df87baf68222f994a9f1c6df431c496e
|
||||
84
Editor/UIToolkitCleanup.cs
Normal file
84
Editor/UIToolkitCleanup.cs
Normal file
@@ -0,0 +1,84 @@
|
||||
#if UNITY_EDITOR
|
||||
using System;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using UnityEditor;
|
||||
using UnityEngine;
|
||||
using UnityEngine.SceneManagement;
|
||||
using System.Collections.Generic;
|
||||
#if UNITY_2021_1_OR_NEWER
|
||||
using UnityEngine.UIElements; // for UIDocument
|
||||
#endif
|
||||
|
||||
namespace MegaKoop.EditorTools
|
||||
{
|
||||
public static class UIToolkitCleanup
|
||||
{
|
||||
[MenuItem("Tools/MegaKoop/Cleanup UI Toolkit Assets (Backup & Remove)", priority = 50)]
|
||||
public static void CleanupUIToolkit()
|
||||
{
|
||||
string timestamp = DateTime.Now.ToString("yyyyMMdd_HHmmss");
|
||||
string backupRoot = $"Assets/_Backup_UIToolkit_{timestamp}";
|
||||
Directory.CreateDirectory(backupRoot);
|
||||
|
||||
// Collect UXML/USS assets
|
||||
var all = AssetDatabase.GetAllAssetPaths();
|
||||
var toMove = all.Where(p => p.EndsWith(".uxml", StringComparison.OrdinalIgnoreCase) || p.EndsWith(".uss", StringComparison.OrdinalIgnoreCase)).ToList();
|
||||
|
||||
// Also move common PanelSettings assets by name
|
||||
toMove.AddRange(all.Where(p => Path.GetFileName(p).ToLower().Contains("panelsettings") && p.EndsWith(".asset", StringComparison.OrdinalIgnoreCase)));
|
||||
|
||||
// Move known UI Toolkit scripts (optional)
|
||||
var uiToolkitScripts = new List<string>
|
||||
{
|
||||
"Assets/UI/Scripts/MainMenuController.cs",
|
||||
"Assets/UI/Scripts/MultiplayerLobbyController.cs",
|
||||
"Assets/UI/Scripts/PanelSettingsSetup.cs",
|
||||
"Assets/UI/SimplePanelSettings.cs",
|
||||
"Assets/UI/Editor/CreatePanelSettings.cs"
|
||||
};
|
||||
|
||||
foreach (var path in toMove.Distinct())
|
||||
{
|
||||
string dest = Path.Combine(backupRoot, Path.GetFileName(path)).Replace('\\','/');
|
||||
var err = AssetDatabase.MoveAsset(path, dest);
|
||||
if (!string.IsNullOrEmpty(err))
|
||||
{
|
||||
Debug.LogWarning($"[Cleanup] Move failed for {path}: {err}");
|
||||
}
|
||||
}
|
||||
|
||||
foreach (var path in uiToolkitScripts)
|
||||
{
|
||||
if (File.Exists(path))
|
||||
{
|
||||
string dest = Path.Combine(backupRoot, Path.GetFileName(path)).Replace('\\','/');
|
||||
var err = AssetDatabase.MoveAsset(path, dest);
|
||||
if (!string.IsNullOrEmpty(err))
|
||||
{
|
||||
Debug.LogWarning($"[Cleanup] Move failed for {path}: {err}");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
AssetDatabase.Refresh();
|
||||
Debug.Log($"[UIToolkitCleanup] Moved {toMove.Count} assets to {backupRoot}.");
|
||||
|
||||
// Remove UIDocument components from all open scenes
|
||||
int removed = 0;
|
||||
#if UNITY_2021_1_OR_NEWER
|
||||
foreach (var go in GameObject.FindObjectsOfType<GameObject>())
|
||||
{
|
||||
var doc = go.GetComponent<UIDocument>();
|
||||
if (doc != null)
|
||||
{
|
||||
Undo.DestroyObjectImmediate(doc);
|
||||
removed++;
|
||||
}
|
||||
}
|
||||
#endif
|
||||
Debug.Log($"[UIToolkitCleanup] Removed {removed} UIDocument components from the current scene(s).\nIf some scenes are not open, open them and re-run this to strip UIDocuments there as well.");
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
2
Editor/UIToolkitCleanup.cs.meta
Normal file
2
Editor/UIToolkitCleanup.cs.meta
Normal file
@@ -0,0 +1,2 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 59b0cbc81c3376640a2d6fd93cb01034
|
||||
8
Kevin Iglesias.meta
Normal file
8
Kevin Iglesias.meta
Normal file
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 65df0d6e19d9b5a4ab6d16a9830e0d63
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
8
Kevin Iglesias/Human Animations.meta
Normal file
8
Kevin Iglesias/Human Animations.meta
Normal file
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: b6e7451db795eb14b8b86c01246b4e45
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
8
Kevin Iglesias/Human Animations/Animations.meta
Normal file
8
Kevin Iglesias/Human Animations/Animations.meta
Normal file
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: efeb8c36a1723364392603dda24becb0
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
8
Kevin Iglesias/Human Animations/Animations/Female.meta
Normal file
8
Kevin Iglesias/Human Animations/Animations/Female.meta
Normal file
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: a188c029449cdad41b29e2705df3bea4
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: c9d75aa1220dbf54ea1d38d28fb95489
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 2a8871b9ab0ba0841b6bd3e47e267021
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
Binary file not shown.
@@ -0,0 +1,975 @@
|
||||
fileFormatVersion: 2
|
||||
guid: b3d13322675e10d47aa75892a620c7bc
|
||||
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@Attack1H01_L
|
||||
takeName: Untitled
|
||||
internalID: 3094330708855449807
|
||||
firstFrame: 0
|
||||
lastFrame: 33
|
||||
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: 151650
|
||||
packageName: Human Melee Animations
|
||||
packageVersion: 2.0.2
|
||||
assetPath: Assets/Kevin Iglesias/Human Animations/Animations/Female/Combat/1H/HumanF@Attack1H01_L.fbx
|
||||
uploadId: 771796
|
||||
Binary file not shown.
@@ -0,0 +1,975 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 408142c06e2d48c4db8065d1fbbcc8eb
|
||||
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@Attack1H01_R
|
||||
takeName: Untitled
|
||||
internalID: 3094330708855449807
|
||||
firstFrame: 0
|
||||
lastFrame: 42
|
||||
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: 151650
|
||||
packageName: Human Melee Animations
|
||||
packageVersion: 2.0.2
|
||||
assetPath: Assets/Kevin Iglesias/Human Animations/Animations/Female/Combat/1H/HumanF@Attack1H01_R.fbx
|
||||
uploadId: 771796
|
||||
Binary file not shown.
@@ -0,0 +1,975 @@
|
||||
fileFormatVersion: 2
|
||||
guid: b3f78eb338ccf5e4fbe3e710ddbacaa7
|
||||
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@Attack1H02_L
|
||||
takeName: Untitled
|
||||
internalID: 3094330708855449807
|
||||
firstFrame: 0
|
||||
lastFrame: 31
|
||||
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: 151650
|
||||
packageName: Human Melee Animations
|
||||
packageVersion: 2.0.2
|
||||
assetPath: Assets/Kevin Iglesias/Human Animations/Animations/Female/Combat/1H/HumanF@Attack1H02_L.fbx
|
||||
uploadId: 771796
|
||||
Binary file not shown.
@@ -0,0 +1,975 @@
|
||||
fileFormatVersion: 2
|
||||
guid: beb43ecd0c676ec4ca7ee96c05c427be
|
||||
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@Attack1H02_R
|
||||
takeName: Untitled
|
||||
internalID: 3094330708855449807
|
||||
firstFrame: 0
|
||||
lastFrame: 35
|
||||
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: 151650
|
||||
packageName: Human Melee Animations
|
||||
packageVersion: 2.0.2
|
||||
assetPath: Assets/Kevin Iglesias/Human Animations/Animations/Female/Combat/1H/HumanF@Attack1H02_R.fbx
|
||||
uploadId: 771796
|
||||
Binary file not shown.
@@ -0,0 +1,975 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 51abf42ce9b0fb14095cec752ae7f176
|
||||
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@Attack1H03_L
|
||||
takeName: Untitled
|
||||
internalID: 3094330708855449807
|
||||
firstFrame: 0
|
||||
lastFrame: 34
|
||||
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: 151650
|
||||
packageName: Human Melee Animations
|
||||
packageVersion: 2.0.2
|
||||
assetPath: Assets/Kevin Iglesias/Human Animations/Animations/Female/Combat/1H/HumanF@Attack1H03_L.fbx
|
||||
uploadId: 771796
|
||||
Binary file not shown.
@@ -0,0 +1,975 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 6b0c07f3c2cc3ac43a9453b5ec26152d
|
||||
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@Attack1H03_R
|
||||
takeName: Untitled
|
||||
internalID: 3094330708855449807
|
||||
firstFrame: 0
|
||||
lastFrame: 39
|
||||
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: 151650
|
||||
packageName: Human Melee Animations
|
||||
packageVersion: 2.0.2
|
||||
assetPath: Assets/Kevin Iglesias/Human Animations/Animations/Female/Combat/1H/HumanF@Attack1H03_R.fbx
|
||||
uploadId: 771796
|
||||
Binary file not shown.
@@ -0,0 +1,975 @@
|
||||
fileFormatVersion: 2
|
||||
guid: cbb7060626d974743bb0d4c0ea0603bf
|
||||
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@Attack1H04_R
|
||||
takeName: Untitled
|
||||
internalID: 3094330708855449807
|
||||
firstFrame: 0
|
||||
lastFrame: 35
|
||||
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: 151650
|
||||
packageName: Human Melee Animations
|
||||
packageVersion: 2.0.2
|
||||
assetPath: Assets/Kevin Iglesias/Human Animations/Animations/Female/Combat/1H/HumanF@Attack1H04_R.fbx
|
||||
uploadId: 771796
|
||||
Binary file not shown.
@@ -0,0 +1,975 @@
|
||||
fileFormatVersion: 2
|
||||
guid: b961f4de9666fdc49b2945c36721d431
|
||||
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@AttackDW01
|
||||
takeName: Untitled
|
||||
internalID: 3094330708855449807
|
||||
firstFrame: 0
|
||||
lastFrame: 35
|
||||
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: 151650
|
||||
packageName: Human Melee Animations
|
||||
packageVersion: 2.0.2
|
||||
assetPath: Assets/Kevin Iglesias/Human Animations/Animations/Female/Combat/1H/HumanF@AttackDW01.fbx
|
||||
uploadId: 771796
|
||||
Binary file not shown.
@@ -0,0 +1,975 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 517c88318117e4143a77df8927ed00df
|
||||
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@AttackDW02
|
||||
takeName: Untitled
|
||||
internalID: 3094330708855449807
|
||||
firstFrame: 0
|
||||
lastFrame: 37
|
||||
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: 151650
|
||||
packageName: Human Melee Animations
|
||||
packageVersion: 2.0.2
|
||||
assetPath: Assets/Kevin Iglesias/Human Animations/Animations/Female/Combat/1H/HumanF@AttackDW02.fbx
|
||||
uploadId: 771796
|
||||
Binary file not shown.
@@ -0,0 +1,975 @@
|
||||
fileFormatVersion: 2
|
||||
guid: b1efd34419385a74f8c495cc5af7233a
|
||||
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@CombatEnter1H01
|
||||
takeName: Untitled
|
||||
internalID: 3094330708855449807
|
||||
firstFrame: 0
|
||||
lastFrame: 16
|
||||
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: 151650
|
||||
packageName: Human Melee Animations
|
||||
packageVersion: 2.0.2
|
||||
assetPath: Assets/Kevin Iglesias/Human Animations/Animations/Female/Combat/1H/HumanF@CombatEnter1H01.fbx
|
||||
uploadId: 771796
|
||||
Binary file not shown.
@@ -0,0 +1,975 @@
|
||||
fileFormatVersion: 2
|
||||
guid: aa4260128a899b34aadebf0e1bff83af
|
||||
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@CombatExit1H01
|
||||
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: 151650
|
||||
packageName: Human Melee Animations
|
||||
packageVersion: 2.0.2
|
||||
assetPath: Assets/Kevin Iglesias/Human Animations/Animations/Female/Combat/1H/HumanF@CombatExit1H01.fbx
|
||||
uploadId: 771796
|
||||
Binary file not shown.
@@ -0,0 +1,975 @@
|
||||
fileFormatVersion: 2
|
||||
guid: c163a36c98396ee4488ff914e337cf3c
|
||||
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@CombatIdle1H01
|
||||
takeName: Untitled
|
||||
internalID: 3094330708855449807
|
||||
firstFrame: 0
|
||||
lastFrame: 40
|
||||
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: 151650
|
||||
packageName: Human Melee Animations
|
||||
packageVersion: 2.0.2
|
||||
assetPath: Assets/Kevin Iglesias/Human Animations/Animations/Female/Combat/1H/HumanF@CombatIdle1H01.fbx
|
||||
uploadId: 771796
|
||||
Binary file not shown.
@@ -0,0 +1,976 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 30dd1104295076f4daa463f64dd79d45
|
||||
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@Parry1H01_L - Hit
|
||||
takeName: Untitled
|
||||
internalID: 3094330708855449807
|
||||
firstFrame: 0
|
||||
lastFrame: 26
|
||||
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: 151650
|
||||
packageName: Human Melee Animations
|
||||
packageVersion: 2.0.2
|
||||
assetPath: Assets/Kevin Iglesias/Human Animations/Animations/Female/Combat/1H/HumanF@Parry1H01_L
|
||||
- Hit.fbx
|
||||
uploadId: 771796
|
||||
Binary file not shown.
@@ -0,0 +1,976 @@
|
||||
fileFormatVersion: 2
|
||||
guid: d482e6aafc4faf746a96afd21115778f
|
||||
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@Parry1H01_L - Loop
|
||||
takeName: Untitled
|
||||
internalID: 3094330708855449807
|
||||
firstFrame: 0
|
||||
lastFrame: 40
|
||||
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: 151650
|
||||
packageName: Human Melee Animations
|
||||
packageVersion: 2.0.2
|
||||
assetPath: Assets/Kevin Iglesias/Human Animations/Animations/Female/Combat/1H/HumanF@Parry1H01_L
|
||||
- Loop.fbx
|
||||
uploadId: 771796
|
||||
Binary file not shown.
@@ -0,0 +1,976 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 9a9091587edf813439a28c0efc2304a4
|
||||
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@Parry1H01_R - Hit
|
||||
takeName: Untitled
|
||||
internalID: 3094330708855449807
|
||||
firstFrame: 0
|
||||
lastFrame: 26
|
||||
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: 151650
|
||||
packageName: Human Melee Animations
|
||||
packageVersion: 2.0.2
|
||||
assetPath: Assets/Kevin Iglesias/Human Animations/Animations/Female/Combat/1H/HumanF@Parry1H01_R
|
||||
- Hit.fbx
|
||||
uploadId: 771796
|
||||
Binary file not shown.
@@ -0,0 +1,976 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 819d5504243b25743ab4572498a9230a
|
||||
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@Parry1H01_R - Loop
|
||||
takeName: Untitled
|
||||
internalID: 3094330708855449807
|
||||
firstFrame: 0
|
||||
lastFrame: 40
|
||||
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: 151650
|
||||
packageName: Human Melee Animations
|
||||
packageVersion: 2.0.2
|
||||
assetPath: Assets/Kevin Iglesias/Human Animations/Animations/Female/Combat/1H/HumanF@Parry1H01_R
|
||||
- Loop.fbx
|
||||
uploadId: 771796
|
||||
Binary file not shown.
@@ -0,0 +1,976 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 717f642ddd6fab5459d580fd1c9d6b92
|
||||
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@ParryDW01 - Hit
|
||||
takeName: Untitled
|
||||
internalID: 3094330708855449807
|
||||
firstFrame: 0
|
||||
lastFrame: 26
|
||||
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: 151650
|
||||
packageName: Human Melee Animations
|
||||
packageVersion: 2.0.2
|
||||
assetPath: Assets/Kevin Iglesias/Human Animations/Animations/Female/Combat/1H/HumanF@ParryDW01
|
||||
- Hit.fbx
|
||||
uploadId: 771796
|
||||
Binary file not shown.
@@ -0,0 +1,976 @@
|
||||
fileFormatVersion: 2
|
||||
guid: b19b7673895fdac4c989a7b4fd1be815
|
||||
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@ParryDW01 - Loop
|
||||
takeName: Untitled
|
||||
internalID: 3094330708855449807
|
||||
firstFrame: 0
|
||||
lastFrame: 40
|
||||
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: 151650
|
||||
packageName: Human Melee Animations
|
||||
packageVersion: 2.0.2
|
||||
assetPath: Assets/Kevin Iglesias/Human Animations/Animations/Female/Combat/1H/HumanF@ParryDW01
|
||||
- Loop.fbx
|
||||
uploadId: 771796
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: a8ddc2c14327f6947ba73feb9d87cd95
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
Binary file not shown.
@@ -0,0 +1,975 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 48fa84abc2c3a744e8561044d83beb93
|
||||
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@Attack2H01
|
||||
takeName: Untitled
|
||||
internalID: 3094330708855449807
|
||||
firstFrame: 0
|
||||
lastFrame: 48
|
||||
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: 151650
|
||||
packageName: Human Melee Animations
|
||||
packageVersion: 2.0.2
|
||||
assetPath: Assets/Kevin Iglesias/Human Animations/Animations/Female/Combat/2H/HumanF@Attack2H01.fbx
|
||||
uploadId: 771796
|
||||
Binary file not shown.
@@ -0,0 +1,975 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 32e858e0c7afc5048a929db6a96667f4
|
||||
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@Attack2H02
|
||||
takeName: Untitled
|
||||
internalID: 3094330708855449807
|
||||
firstFrame: 0
|
||||
lastFrame: 47
|
||||
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: 151650
|
||||
packageName: Human Melee Animations
|
||||
packageVersion: 2.0.2
|
||||
assetPath: Assets/Kevin Iglesias/Human Animations/Animations/Female/Combat/2H/HumanF@Attack2H02.fbx
|
||||
uploadId: 771796
|
||||
Binary file not shown.
@@ -0,0 +1,975 @@
|
||||
fileFormatVersion: 2
|
||||
guid: c63922977ff079d4a98df4d99b54f5e9
|
||||
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@Attack2H03
|
||||
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: 151650
|
||||
packageName: Human Melee Animations
|
||||
packageVersion: 2.0.2
|
||||
assetPath: Assets/Kevin Iglesias/Human Animations/Animations/Female/Combat/2H/HumanF@Attack2H03.fbx
|
||||
uploadId: 771796
|
||||
Binary file not shown.
@@ -0,0 +1,975 @@
|
||||
fileFormatVersion: 2
|
||||
guid: d24257a25dfa2414a9a3f69a32eb313d
|
||||
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@Attack2H04
|
||||
takeName: Untitled
|
||||
internalID: 3094330708855449807
|
||||
firstFrame: 0
|
||||
lastFrame: 42
|
||||
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: 151650
|
||||
packageName: Human Melee Animations
|
||||
packageVersion: 2.0.2
|
||||
assetPath: Assets/Kevin Iglesias/Human Animations/Animations/Female/Combat/2H/HumanF@Attack2H04.fbx
|
||||
uploadId: 771796
|
||||
Binary file not shown.
@@ -0,0 +1,975 @@
|
||||
fileFormatVersion: 2
|
||||
guid: c478a00695bc9214da85f354a86c7d50
|
||||
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@CombatEnter2H01
|
||||
takeName: Untitled
|
||||
internalID: 3094330708855449807
|
||||
firstFrame: 0
|
||||
lastFrame: 16
|
||||
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: 151650
|
||||
packageName: Human Melee Animations
|
||||
packageVersion: 2.0.2
|
||||
assetPath: Assets/Kevin Iglesias/Human Animations/Animations/Female/Combat/2H/HumanF@CombatEnter2H01.fbx
|
||||
uploadId: 771796
|
||||
Binary file not shown.
@@ -0,0 +1,975 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 02bb8219748bf0e4b940072103f31b6f
|
||||
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@CombatExit2H01
|
||||
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: 151650
|
||||
packageName: Human Melee Animations
|
||||
packageVersion: 2.0.2
|
||||
assetPath: Assets/Kevin Iglesias/Human Animations/Animations/Female/Combat/2H/HumanF@CombatExit2H01.fbx
|
||||
uploadId: 771796
|
||||
Binary file not shown.
@@ -0,0 +1,975 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 1ad5e2c82dc0082448aa849151560b5d
|
||||
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@CombatIdle2H01
|
||||
takeName: Untitled
|
||||
internalID: 3094330708855449807
|
||||
firstFrame: 0
|
||||
lastFrame: 40
|
||||
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: 151650
|
||||
packageName: Human Melee Animations
|
||||
packageVersion: 2.0.2
|
||||
assetPath: Assets/Kevin Iglesias/Human Animations/Animations/Female/Combat/2H/HumanF@CombatIdle2H01.fbx
|
||||
uploadId: 771796
|
||||
Binary file not shown.
@@ -0,0 +1,976 @@
|
||||
fileFormatVersion: 2
|
||||
guid: c12a7103322513349ba79c3ce14d4d0b
|
||||
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@Parry2H01 - Hit
|
||||
takeName: Untitled
|
||||
internalID: 3094330708855449807
|
||||
firstFrame: 0
|
||||
lastFrame: 26
|
||||
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: 151650
|
||||
packageName: Human Melee Animations
|
||||
packageVersion: 2.0.2
|
||||
assetPath: Assets/Kevin Iglesias/Human Animations/Animations/Female/Combat/2H/HumanF@Parry2H01
|
||||
- Hit.fbx
|
||||
uploadId: 771796
|
||||
Binary file not shown.
@@ -0,0 +1,976 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 43957c2c0b54be7458c1060b0b11da0c
|
||||
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@Parry2H01 - Loop
|
||||
takeName: Untitled
|
||||
internalID: 3094330708855449807
|
||||
firstFrame: 0
|
||||
lastFrame: 40
|
||||
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: 151650
|
||||
packageName: Human Melee Animations
|
||||
packageVersion: 2.0.2
|
||||
assetPath: Assets/Kevin Iglesias/Human Animations/Animations/Female/Combat/2H/HumanF@Parry2H01
|
||||
- Loop.fbx
|
||||
uploadId: 771796
|
||||
Binary file not shown.
@@ -0,0 +1,975 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 33ead5f6ecd30db40bc9209ff361f049
|
||||
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@CombatDamage01
|
||||
takeName: Untitled
|
||||
internalID: 3094330708855449807
|
||||
firstFrame: 0
|
||||
lastFrame: 30
|
||||
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: 151650
|
||||
packageName: Human Melee Animations
|
||||
packageVersion: 2.0.2
|
||||
assetPath: Assets/Kevin Iglesias/Human Animations/Animations/Female/Combat/HumanF@CombatDamage01.fbx
|
||||
uploadId: 771796
|
||||
Binary file not shown.
@@ -0,0 +1,975 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 7c50e21cabf4d094799a351a0d481b97
|
||||
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@CombatDamage02
|
||||
takeName: Untitled
|
||||
internalID: 3094330708855449807
|
||||
firstFrame: 0
|
||||
lastFrame: 32
|
||||
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: 151650
|
||||
packageName: Human Melee Animations
|
||||
packageVersion: 2.0.2
|
||||
assetPath: Assets/Kevin Iglesias/Human Animations/Animations/Female/Combat/HumanF@CombatDamage02.fbx
|
||||
uploadId: 771796
|
||||
Binary file not shown.
@@ -0,0 +1,975 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 7760eb562ddb5444b8d0e43f7c2192df
|
||||
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@CombatDeath01
|
||||
takeName: Untitled
|
||||
internalID: 3094330708855449807
|
||||
firstFrame: 0
|
||||
lastFrame: 45
|
||||
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: 151650
|
||||
packageName: Human Melee Animations
|
||||
packageVersion: 2.0.2
|
||||
assetPath: Assets/Kevin Iglesias/Human Animations/Animations/Female/Combat/HumanF@CombatDeath01.fbx
|
||||
uploadId: 771796
|
||||
Binary file not shown.
@@ -0,0 +1,975 @@
|
||||
fileFormatVersion: 2
|
||||
guid: d81a49737fecf834d9cba56bc65977f8
|
||||
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@CombatDeath02
|
||||
takeName: Untitled
|
||||
internalID: 3094330708855449807
|
||||
firstFrame: 0
|
||||
lastFrame: 33
|
||||
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: 151650
|
||||
packageName: Human Melee Animations
|
||||
packageVersion: 2.0.2
|
||||
assetPath: Assets/Kevin Iglesias/Human Animations/Animations/Female/Combat/HumanF@CombatDeath02.fbx
|
||||
uploadId: 771796
|
||||
Binary file not shown.
@@ -0,0 +1,975 @@
|
||||
fileFormatVersion: 2
|
||||
guid: fbf1938c2eaa52a46b465cf5cb6768e6
|
||||
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@CombatDeath03
|
||||
takeName: Untitled
|
||||
internalID: 3094330708855449807
|
||||
firstFrame: 0
|
||||
lastFrame: 35
|
||||
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: 151650
|
||||
packageName: Human Melee Animations
|
||||
packageVersion: 2.0.2
|
||||
assetPath: Assets/Kevin Iglesias/Human Animations/Animations/Female/Combat/HumanF@CombatDeath03.fbx
|
||||
uploadId: 771796
|
||||
Binary file not shown.
@@ -0,0 +1,975 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 07f5d413654442a438076df9640e133f
|
||||
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@CombatDeath04
|
||||
takeName: Untitled
|
||||
internalID: 3094330708855449807
|
||||
firstFrame: 0
|
||||
lastFrame: 41
|
||||
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: 151650
|
||||
packageName: Human Melee Animations
|
||||
packageVersion: 2.0.2
|
||||
assetPath: Assets/Kevin Iglesias/Human Animations/Animations/Female/Combat/HumanF@CombatDeath04.fbx
|
||||
uploadId: 771796
|
||||
Binary file not shown.
@@ -0,0 +1,975 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 6abe61edacb78c74489739f89ec126bc
|
||||
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@CombatIdle01
|
||||
takeName: Untitled
|
||||
internalID: 3094330708855449807
|
||||
firstFrame: 0
|
||||
lastFrame: 40
|
||||
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: 151650
|
||||
packageName: Human Melee Animations
|
||||
packageVersion: 2.0.2
|
||||
assetPath: Assets/Kevin Iglesias/Human Animations/Animations/Female/Combat/HumanF@CombatIdle01.fbx
|
||||
uploadId: 771796
|
||||
Binary file not shown.
@@ -0,0 +1,975 @@
|
||||
fileFormatVersion: 2
|
||||
guid: b09be4f98e05fa7489d148a376fc0f1c
|
||||
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@Death01
|
||||
takeName: HumanF@Death05
|
||||
internalID: 5957932628511814003
|
||||
firstFrame: 0
|
||||
lastFrame: 22
|
||||
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: 151650
|
||||
packageName: Human Melee Animations
|
||||
packageVersion: 2.0.2
|
||||
assetPath: Assets/Kevin Iglesias/Human Animations/Animations/Female/Combat/HumanF@Death01.fbx
|
||||
uploadId: 771796
|
||||
Binary file not shown.
@@ -0,0 +1,975 @@
|
||||
fileFormatVersion: 2
|
||||
guid: bd386f443b5aff1478cfc4d9f157d560
|
||||
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@Death02
|
||||
takeName: HumanF@Death06
|
||||
internalID: 4303349539650078155
|
||||
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: 151650
|
||||
packageName: Human Melee Animations
|
||||
packageVersion: 2.0.2
|
||||
assetPath: Assets/Kevin Iglesias/Human Animations/Animations/Female/Combat/HumanF@Death02.fbx
|
||||
uploadId: 771796
|
||||
Binary file not shown.
@@ -0,0 +1,975 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 3ddd841560130dc458df47a75894ce5e
|
||||
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@Dodge01
|
||||
takeName: Untitled
|
||||
internalID: 3094330708855449807
|
||||
firstFrame: 0
|
||||
lastFrame: 32
|
||||
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: 151650
|
||||
packageName: Human Melee Animations
|
||||
packageVersion: 2.0.2
|
||||
assetPath: Assets/Kevin Iglesias/Human Animations/Animations/Female/Combat/HumanF@Dodge01.fbx
|
||||
uploadId: 771796
|
||||
Binary file not shown.
@@ -0,0 +1,976 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 0a25c0df162034c45bf7090377c75713
|
||||
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@Knockdown01 - Fall
|
||||
takeName: Untitled
|
||||
internalID: 3094330708855449807
|
||||
firstFrame: 0
|
||||
lastFrame: 28
|
||||
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: 157744
|
||||
packageName: Human Basic Motions
|
||||
packageVersion: 2.4
|
||||
assetPath: Assets/Kevin Iglesias/Human Animations/Animations/Female/Combat/HumanF@Knockdown01
|
||||
- Fall.fbx
|
||||
uploadId: 762144
|
||||
Binary file not shown.
@@ -0,0 +1,976 @@
|
||||
fileFormatVersion: 2
|
||||
guid: a5add0365f0ed0743b632d3a5f32c2f6
|
||||
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@Knockdown01 - Ground
|
||||
takeName: Untitled
|
||||
internalID: 3094330708855449807
|
||||
firstFrame: 0
|
||||
lastFrame: 52
|
||||
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: 157744
|
||||
packageName: Human Basic Motions
|
||||
packageVersion: 2.4
|
||||
assetPath: Assets/Kevin Iglesias/Human Animations/Animations/Female/Combat/HumanF@Knockdown01
|
||||
- Ground.fbx
|
||||
uploadId: 762144
|
||||
Binary file not shown.
@@ -0,0 +1,976 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 358ba99f0aadce742a16b410af044e33
|
||||
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@Knockdown01 - StandUp
|
||||
takeName: Untitled
|
||||
internalID: 3094330708855449807
|
||||
firstFrame: 0
|
||||
lastFrame: 35
|
||||
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: 157744
|
||||
packageName: Human Basic Motions
|
||||
packageVersion: 2.4
|
||||
assetPath: Assets/Kevin Iglesias/Human Animations/Animations/Female/Combat/HumanF@Knockdown01
|
||||
- StandUp.fbx
|
||||
uploadId: 762144
|
||||
Binary file not shown.
@@ -0,0 +1,975 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 6bc3ab383df35674db1c49d5c09cf9f3
|
||||
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@Stun01
|
||||
takeName: Untitled
|
||||
internalID: 3094330708855449807
|
||||
firstFrame: 0
|
||||
lastFrame: 80
|
||||
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: 157744
|
||||
packageName: Human Basic Motions
|
||||
packageVersion: 2.4
|
||||
assetPath: Assets/Kevin Iglesias/Human Animations/Animations/Female/Combat/HumanF@Stun01.fbx
|
||||
uploadId: 762144
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 599d3bd6a6c705845acfd5bd677b9e2c
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
Binary file not shown.
@@ -0,0 +1,975 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 8427f593ea039e74fb73c8088e896c9a
|
||||
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@AttackPolearm01
|
||||
takeName: Untitled
|
||||
internalID: 3094330708855449807
|
||||
firstFrame: 0
|
||||
lastFrame: 41
|
||||
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: 151650
|
||||
packageName: Human Melee Animations
|
||||
packageVersion: 2.0.2
|
||||
assetPath: Assets/Kevin Iglesias/Human Animations/Animations/Female/Combat/Polearm/HumanF@AttackPolearm01.fbx
|
||||
uploadId: 771796
|
||||
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user