场景设计
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 4e418daa52e9f514e84cb928913a9282
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 945383d2ff39ec546bc8fa5a396f9756
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,10 @@
|
||||
fileFormatVersion: 2
|
||||
guid: ed9d2c7cebcf9be4e9fa52a4b0479222
|
||||
ScriptedImporter:
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
script: {fileID: 11500000, guid: 625f186215c104763be7675aa2d941aa, type: 3}
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 6023463b97795b5439bf62bf9ec91ddc
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,30 @@
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
|
||||
namespace INab.Demo
|
||||
{
|
||||
public class FloatingCoin : MonoBehaviour
|
||||
{
|
||||
public float rotationSpeed = 100f;
|
||||
public float floatSpeed = 0.5f;
|
||||
public float floatHeight = 0.5f;
|
||||
|
||||
private Vector3 startPosition;
|
||||
|
||||
private void Start()
|
||||
{
|
||||
startPosition = transform.position;
|
||||
}
|
||||
|
||||
private void Update()
|
||||
{
|
||||
// Rotate the coin
|
||||
transform.Rotate(Vector3.up, rotationSpeed * Time.deltaTime, Space.World);
|
||||
|
||||
// Float the coin up and down
|
||||
Vector3 newPosition = startPosition + new Vector3(0f, Mathf.Sin(Time.time * floatSpeed) * floatHeight, 0f);
|
||||
transform.position = newPosition;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: c024ef0b195e73f4b94131f86f3afb93
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 30134a1579d3b1341aaf9a62d53f086b
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,98 @@
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
using UnityEngine.UI;
|
||||
|
||||
namespace Highlighters
|
||||
{
|
||||
public class CameraManager : MonoBehaviour
|
||||
{
|
||||
public Transform target;
|
||||
|
||||
public Vector3 transformv;
|
||||
|
||||
public float xRot = 0f;
|
||||
public float RestartRotation = 0f;
|
||||
public float yRot = 0f;
|
||||
|
||||
public float distance = 5f;
|
||||
public float sensitivity = 10f;
|
||||
|
||||
//UI elements
|
||||
public Slider rotationSlider;
|
||||
public Slider distanceSlider;
|
||||
|
||||
//private members
|
||||
private bool m_Locked = false;
|
||||
|
||||
private void Start()
|
||||
{
|
||||
rotationSlider.onValueChanged.AddListener(delegate { RotationValueChange(); });
|
||||
distanceSlider.onValueChanged.AddListener(delegate { DistanceValueChange(); });
|
||||
}
|
||||
|
||||
public void RotationValueChange()
|
||||
{
|
||||
if (m_Locked)
|
||||
{
|
||||
yRot = rotationSlider.value;
|
||||
transform.position = target.position + transformv + Quaternion.Euler(xRot, yRot, 0f) * (distance * -Vector3.back);
|
||||
transform.LookAt(target.position + transformv, Vector3.up);
|
||||
}
|
||||
else
|
||||
{
|
||||
yRot = rotationSlider.value;
|
||||
}
|
||||
}
|
||||
|
||||
public void DistanceValueChange()
|
||||
{
|
||||
if (m_Locked)
|
||||
{
|
||||
distance = distanceSlider.value;
|
||||
transform.position = target.position + transformv + Quaternion.Euler(xRot, yRot, 0f) * (distance * -Vector3.back);
|
||||
transform.LookAt(target.position + transformv, Vector3.up);
|
||||
}
|
||||
else
|
||||
{
|
||||
distance = distanceSlider.value;
|
||||
}
|
||||
}
|
||||
|
||||
void Update()
|
||||
{
|
||||
|
||||
if (Input.GetKeyDown(KeyCode.Space))
|
||||
{
|
||||
LockRotation();
|
||||
}
|
||||
|
||||
if (Input.GetKeyDown(KeyCode.M))
|
||||
{
|
||||
yRot = RestartRotation;
|
||||
}
|
||||
|
||||
if (m_Locked) return;
|
||||
|
||||
yRot += sensitivity * Time.deltaTime;
|
||||
|
||||
transform.position = target.position + transformv + Quaternion.Euler(xRot, yRot, 0f) * (distance * -Vector3.back);
|
||||
transform.LookAt(target.position + transformv, Vector3.up);
|
||||
|
||||
if (yRot >= 360) yRot = 0;
|
||||
|
||||
UiManager();
|
||||
|
||||
}
|
||||
|
||||
void UiManager()
|
||||
{
|
||||
rotationSlider.value = yRot;
|
||||
}
|
||||
|
||||
public void LockRotation()
|
||||
{
|
||||
m_Locked = !m_Locked;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 71f20312f3223b54780a73928fb64c11
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,136 @@
|
||||
using UnityEngine;
|
||||
using System.Collections;
|
||||
|
||||
namespace Highlighters
|
||||
{
|
||||
public class Camera_Controller : MonoBehaviour
|
||||
{
|
||||
public float Normal_Speed = 25.0f; //Normal movement speed
|
||||
|
||||
public float Shift_Speed = 54.0f; //multiplies movement speed by how long shift is held down.
|
||||
|
||||
public float Speed_Cap = 54.0f; //Max cap for speed when shift is held down
|
||||
|
||||
public float Camera_Sensitivity = 0.6f; //How sensitive it with mouse
|
||||
|
||||
private Vector3 Mouse_Location = new Vector3(255, 255, 255); //Mouse location on screen during play (Set to near the middle of the screen)
|
||||
|
||||
private float Total_Speed = 1.0f; //Total speed variable for shift
|
||||
|
||||
public bool freeze = false;
|
||||
public bool freezeMouse = true;
|
||||
|
||||
void Update()
|
||||
{
|
||||
|
||||
if (Input.GetKey(KeyCode.Escape))
|
||||
{
|
||||
freeze = !freeze;
|
||||
}
|
||||
if (freeze) return;
|
||||
|
||||
if (Input.GetKey(KeyCode.M))
|
||||
{
|
||||
freezeMouse = !freezeMouse;
|
||||
}
|
||||
if (!freezeMouse)
|
||||
{
|
||||
|
||||
//Camera angles based on mouse position
|
||||
Mouse_Location = Input.mousePosition - Mouse_Location;
|
||||
|
||||
Mouse_Location = new Vector3(-Mouse_Location.y * Camera_Sensitivity, Mouse_Location.x * Camera_Sensitivity, 0);
|
||||
|
||||
Mouse_Location = new Vector3(transform.eulerAngles.x + Mouse_Location.x, transform.eulerAngles.y + Mouse_Location.y, 0);
|
||||
|
||||
transform.eulerAngles = Mouse_Location;
|
||||
|
||||
Mouse_Location = Input.mousePosition;
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
//Keyboard controls
|
||||
|
||||
Vector3 Cam = GetBaseInput();
|
||||
if (Input.GetKey(KeyCode.LeftShift))
|
||||
{
|
||||
|
||||
|
||||
Total_Speed += Time.deltaTime;
|
||||
|
||||
Cam = Cam * Total_Speed * Shift_Speed;
|
||||
|
||||
Cam.x = Mathf.Clamp(Cam.x, -Speed_Cap, Speed_Cap);
|
||||
|
||||
Cam.y = Mathf.Clamp(Cam.y, -Speed_Cap, Speed_Cap);
|
||||
|
||||
Cam.z = Mathf.Clamp(Cam.z, -Speed_Cap, Speed_Cap);
|
||||
|
||||
|
||||
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
|
||||
Total_Speed = Mathf.Clamp(Total_Speed * 0.5f, 1f, 1000f);
|
||||
|
||||
Cam = Cam * Normal_Speed;
|
||||
|
||||
|
||||
}
|
||||
|
||||
Cam = Cam * Time.deltaTime;
|
||||
|
||||
Vector3 newPosition = transform.position;
|
||||
|
||||
if (Input.GetKey(KeyCode.Space))
|
||||
{
|
||||
|
||||
|
||||
//If the player wants to move on X and Z axis only by pressing space (good for re-adjusting angle shots)
|
||||
transform.Translate(Cam);
|
||||
newPosition.x = transform.position.x;
|
||||
newPosition.z = transform.position.z;
|
||||
transform.position = newPosition;
|
||||
|
||||
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
|
||||
transform.Translate(Cam);
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
private Vector3 GetBaseInput()
|
||||
{
|
||||
|
||||
|
||||
Vector3 Camera_Velocity = new Vector3();
|
||||
|
||||
float HorizontalInput = Input.GetAxis("Horizontal"); //Input for horizontal movement
|
||||
|
||||
float VerticalInput = Input.GetAxis("Vertical"); //Input for Vertical movement
|
||||
|
||||
|
||||
|
||||
Camera_Velocity += new Vector3(HorizontalInput, 0, 0);
|
||||
|
||||
Camera_Velocity += new Vector3(0, 0, VerticalInput);
|
||||
|
||||
return Camera_Velocity;
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 42dd1a894d85db548a183bdc6a398828
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,30 @@
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
namespace Highlighters
|
||||
{
|
||||
public class FloatingObject : MonoBehaviour
|
||||
{
|
||||
// The amplitude of the coin's oscillation
|
||||
public float amplitude = 0.5f;
|
||||
|
||||
// The frequency of the coin's oscillation
|
||||
public float frequency = 1.0f;
|
||||
|
||||
// The starting position of the coin
|
||||
private Vector3 startPos;
|
||||
|
||||
void Start()
|
||||
{
|
||||
// Store the starting position of the coin
|
||||
startPos = transform.position;
|
||||
}
|
||||
|
||||
void Update()
|
||||
{
|
||||
// Calculate the coin's new position based on a sinusoidal oscillation
|
||||
float newYPos = amplitude * Mathf.Sin(Time.time * frequency);
|
||||
transform.position = startPos + new Vector3(0, newYPos, 0);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 853b5bbbb4a669445bf3ad34ab46319a
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,26 @@
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
|
||||
namespace Highlighters
|
||||
{
|
||||
public class ObjectOscilate : MonoBehaviour
|
||||
{
|
||||
public float minX;
|
||||
public float maxX;
|
||||
public float speed = 1.0f;
|
||||
|
||||
void Update()
|
||||
{
|
||||
// Calculate oscillation value using ping-pong function
|
||||
float oscillation = Mathf.PingPong(Time.time * speed, 1.0f);
|
||||
|
||||
// Calculate X position for the object
|
||||
float posX = Mathf.Lerp(minX, maxX, oscillation);
|
||||
|
||||
// Set position of game object based on oscillation value
|
||||
transform.localPosition = new Vector3(posX, transform.localPosition.y, transform.localPosition.z);
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: f3673f63a6b49dc4c9ebcb2cf0f2d6b8
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,74 @@
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
using UnityEngine.UI;
|
||||
using UnityEngine.UIElements;
|
||||
|
||||
namespace Highlighters
|
||||
{
|
||||
public class TestSceneManager : MonoBehaviour
|
||||
{
|
||||
public List<GameObject> objectsToShow = new List<GameObject>();
|
||||
|
||||
public Text text;
|
||||
|
||||
private int currentObjectActiveID = 0;
|
||||
|
||||
// Start is called before the first frame update
|
||||
void Start()
|
||||
{
|
||||
foreach (var obj in objectsToShow)
|
||||
{
|
||||
obj.SetActive(false);
|
||||
}
|
||||
|
||||
if (objectsToShow.Count > 0) objectsToShow[0].SetActive(true);
|
||||
}
|
||||
|
||||
// Update is called once per frame
|
||||
void Update()
|
||||
{
|
||||
if (objectsToShow.Count < 1) return;
|
||||
|
||||
if (text != null) text.text = (currentObjectActiveID + 1).ToString() + " / " + objectsToShow.Count.ToString();
|
||||
|
||||
if (Input.GetKeyDown(KeyCode.LeftArrow))
|
||||
{
|
||||
Previous();
|
||||
}
|
||||
|
||||
if (Input.GetKeyDown(KeyCode.RightArrow))
|
||||
{
|
||||
Next();
|
||||
}
|
||||
}
|
||||
|
||||
public void Next()
|
||||
{
|
||||
foreach (var item in objectsToShow)
|
||||
{
|
||||
item.SetActive(false);
|
||||
}
|
||||
|
||||
//objectsToShow[currentObjectActiveID].SetActive(false);
|
||||
currentObjectActiveID++;
|
||||
currentObjectActiveID = currentObjectActiveID % objectsToShow.Count;
|
||||
|
||||
objectsToShow[currentObjectActiveID].SetActive(true);
|
||||
}
|
||||
|
||||
public void Previous()
|
||||
{
|
||||
foreach (var item in objectsToShow)
|
||||
{
|
||||
item.SetActive(false);
|
||||
}
|
||||
|
||||
//objectsToShow[currentObjectActiveID].SetActive(false);
|
||||
currentObjectActiveID--;
|
||||
if (currentObjectActiveID < 0) currentObjectActiveID = objectsToShow.Count - 1;
|
||||
|
||||
objectsToShow[currentObjectActiveID].SetActive(true);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 9f8f5864b1fe3a945864e1bef3f537ef
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 6fb2d0533e4d87b4183642d0adc6f128
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 29869ab04c6fe7348b2cdaa32ab127cc
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 1819e491e0a21704da825bdc8a0873bd
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 0d6b71ccb4eeb3341a51d26c381ea7ea
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 429260b8e2f26f7408e8d77268520358
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
Binary file not shown.
@@ -0,0 +1,97 @@
|
||||
fileFormatVersion: 2
|
||||
guid: c6a55ba99e9e99d41b7eef123e311a43
|
||||
ModelImporter:
|
||||
serializedVersion: 19301
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
materials:
|
||||
materialImportMode: 1
|
||||
materialName: 0
|
||||
materialSearch: 1
|
||||
materialLocation: 1
|
||||
animations:
|
||||
legacyGenerateAnimations: 4
|
||||
bakeSimulation: 0
|
||||
resampleCurves: 1
|
||||
optimizeGameObjects: 0
|
||||
motionNodeName:
|
||||
rigImportErrors:
|
||||
rigImportWarnings:
|
||||
animationImportErrors:
|
||||
animationImportWarnings:
|
||||
animationRetargetingWarnings:
|
||||
animationDoRetargetingWarnings: 0
|
||||
importAnimatedCustomProperties: 0
|
||||
importConstraints: 0
|
||||
animationCompression: 1
|
||||
animationRotationError: 0.5
|
||||
animationPositionError: 0.5
|
||||
animationScaleError: 0.5
|
||||
animationWrapMode: 0
|
||||
extraExposedTransformPaths: []
|
||||
extraUserProperties: []
|
||||
clipAnimations: []
|
||||
isReadable: 0
|
||||
meshes:
|
||||
lODScreenPercentages: []
|
||||
globalScale: 1
|
||||
meshCompression: 0
|
||||
addColliders: 0
|
||||
useSRGBMaterialColor: 1
|
||||
sortHierarchyByName: 1
|
||||
importVisibility: 1
|
||||
importBlendShapes: 1
|
||||
importCameras: 1
|
||||
importLights: 1
|
||||
fileIdsGeneration: 2
|
||||
swapUVChannels: 0
|
||||
generateSecondaryUV: 0
|
||||
useFileUnits: 1
|
||||
keepQuads: 0
|
||||
weldVertices: 1
|
||||
preserveHierarchy: 0
|
||||
skinWeightsMode: 0
|
||||
maxBonesPerVertex: 4
|
||||
minBoneWeight: 0.001
|
||||
meshOptimizationFlags: -1
|
||||
indexFormat: 0
|
||||
secondaryUVAngleDistortion: 8
|
||||
secondaryUVAreaDistortion: 15.000001
|
||||
secondaryUVHardAngle: 88
|
||||
secondaryUVPackMargin: 4
|
||||
useFileScale: 1
|
||||
tangentSpace:
|
||||
normalSmoothAngle: 60
|
||||
normalImportMode: 0
|
||||
tangentImportMode: 3
|
||||
normalCalculationMode: 4
|
||||
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0
|
||||
blendShapeNormalImportMode: 1
|
||||
normalSmoothingSource: 0
|
||||
referencedClips: []
|
||||
importAnimation: 1
|
||||
humanDescription:
|
||||
serializedVersion: 3
|
||||
human: []
|
||||
skeleton: []
|
||||
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: {instanceID: 0}
|
||||
autoGenerateAvatarMappingIfUnspecified: 1
|
||||
animationType: 2
|
||||
humanoidOversampling: 1
|
||||
avatarSetup: 0
|
||||
additionalBone: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
Binary file not shown.
@@ -0,0 +1,97 @@
|
||||
fileFormatVersion: 2
|
||||
guid: d2f0da3998423f44594868ffed55c3e6
|
||||
ModelImporter:
|
||||
serializedVersion: 19301
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
materials:
|
||||
materialImportMode: 1
|
||||
materialName: 0
|
||||
materialSearch: 1
|
||||
materialLocation: 1
|
||||
animations:
|
||||
legacyGenerateAnimations: 4
|
||||
bakeSimulation: 0
|
||||
resampleCurves: 1
|
||||
optimizeGameObjects: 0
|
||||
motionNodeName:
|
||||
rigImportErrors:
|
||||
rigImportWarnings:
|
||||
animationImportErrors:
|
||||
animationImportWarnings:
|
||||
animationRetargetingWarnings:
|
||||
animationDoRetargetingWarnings: 0
|
||||
importAnimatedCustomProperties: 0
|
||||
importConstraints: 0
|
||||
animationCompression: 1
|
||||
animationRotationError: 0.5
|
||||
animationPositionError: 0.5
|
||||
animationScaleError: 0.5
|
||||
animationWrapMode: 0
|
||||
extraExposedTransformPaths: []
|
||||
extraUserProperties: []
|
||||
clipAnimations: []
|
||||
isReadable: 0
|
||||
meshes:
|
||||
lODScreenPercentages: []
|
||||
globalScale: 1
|
||||
meshCompression: 0
|
||||
addColliders: 0
|
||||
useSRGBMaterialColor: 1
|
||||
sortHierarchyByName: 1
|
||||
importVisibility: 1
|
||||
importBlendShapes: 1
|
||||
importCameras: 1
|
||||
importLights: 1
|
||||
fileIdsGeneration: 2
|
||||
swapUVChannels: 0
|
||||
generateSecondaryUV: 0
|
||||
useFileUnits: 1
|
||||
keepQuads: 0
|
||||
weldVertices: 1
|
||||
preserveHierarchy: 0
|
||||
skinWeightsMode: 0
|
||||
maxBonesPerVertex: 4
|
||||
minBoneWeight: 0.001
|
||||
meshOptimizationFlags: -1
|
||||
indexFormat: 0
|
||||
secondaryUVAngleDistortion: 8
|
||||
secondaryUVAreaDistortion: 15.000001
|
||||
secondaryUVHardAngle: 88
|
||||
secondaryUVPackMargin: 4
|
||||
useFileScale: 1
|
||||
tangentSpace:
|
||||
normalSmoothAngle: 60
|
||||
normalImportMode: 0
|
||||
tangentImportMode: 3
|
||||
normalCalculationMode: 4
|
||||
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0
|
||||
blendShapeNormalImportMode: 1
|
||||
normalSmoothingSource: 0
|
||||
referencedClips: []
|
||||
importAnimation: 1
|
||||
humanDescription:
|
||||
serializedVersion: 3
|
||||
human: []
|
||||
skeleton: []
|
||||
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: {instanceID: 0}
|
||||
autoGenerateAvatarMappingIfUnspecified: 1
|
||||
animationType: 2
|
||||
humanoidOversampling: 1
|
||||
avatarSetup: 0
|
||||
additionalBone: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
Binary file not shown.
@@ -0,0 +1,97 @@
|
||||
fileFormatVersion: 2
|
||||
guid: aa38d7b0e367ecc4aac915dcfe957879
|
||||
ModelImporter:
|
||||
serializedVersion: 19301
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
materials:
|
||||
materialImportMode: 1
|
||||
materialName: 0
|
||||
materialSearch: 1
|
||||
materialLocation: 1
|
||||
animations:
|
||||
legacyGenerateAnimations: 4
|
||||
bakeSimulation: 0
|
||||
resampleCurves: 1
|
||||
optimizeGameObjects: 0
|
||||
motionNodeName:
|
||||
rigImportErrors:
|
||||
rigImportWarnings:
|
||||
animationImportErrors:
|
||||
animationImportWarnings:
|
||||
animationRetargetingWarnings:
|
||||
animationDoRetargetingWarnings: 0
|
||||
importAnimatedCustomProperties: 0
|
||||
importConstraints: 0
|
||||
animationCompression: 1
|
||||
animationRotationError: 0.5
|
||||
animationPositionError: 0.5
|
||||
animationScaleError: 0.5
|
||||
animationWrapMode: 0
|
||||
extraExposedTransformPaths: []
|
||||
extraUserProperties: []
|
||||
clipAnimations: []
|
||||
isReadable: 0
|
||||
meshes:
|
||||
lODScreenPercentages: []
|
||||
globalScale: 1
|
||||
meshCompression: 0
|
||||
addColliders: 0
|
||||
useSRGBMaterialColor: 1
|
||||
sortHierarchyByName: 1
|
||||
importVisibility: 1
|
||||
importBlendShapes: 1
|
||||
importCameras: 1
|
||||
importLights: 1
|
||||
fileIdsGeneration: 2
|
||||
swapUVChannels: 0
|
||||
generateSecondaryUV: 0
|
||||
useFileUnits: 1
|
||||
keepQuads: 0
|
||||
weldVertices: 1
|
||||
preserveHierarchy: 0
|
||||
skinWeightsMode: 0
|
||||
maxBonesPerVertex: 4
|
||||
minBoneWeight: 0.001
|
||||
meshOptimizationFlags: -1
|
||||
indexFormat: 0
|
||||
secondaryUVAngleDistortion: 8
|
||||
secondaryUVAreaDistortion: 15.000001
|
||||
secondaryUVHardAngle: 88
|
||||
secondaryUVPackMargin: 4
|
||||
useFileScale: 1
|
||||
tangentSpace:
|
||||
normalSmoothAngle: 60
|
||||
normalImportMode: 0
|
||||
tangentImportMode: 3
|
||||
normalCalculationMode: 4
|
||||
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0
|
||||
blendShapeNormalImportMode: 1
|
||||
normalSmoothingSource: 0
|
||||
referencedClips: []
|
||||
importAnimation: 1
|
||||
humanDescription:
|
||||
serializedVersion: 3
|
||||
human: []
|
||||
skeleton: []
|
||||
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: {instanceID: 0}
|
||||
autoGenerateAvatarMappingIfUnspecified: 1
|
||||
animationType: 2
|
||||
humanoidOversampling: 1
|
||||
avatarSetup: 0
|
||||
additionalBone: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
Binary file not shown.
@@ -0,0 +1,97 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 426a2785f8a940049aac2c246661cf09
|
||||
ModelImporter:
|
||||
serializedVersion: 19301
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
materials:
|
||||
materialImportMode: 1
|
||||
materialName: 0
|
||||
materialSearch: 1
|
||||
materialLocation: 1
|
||||
animations:
|
||||
legacyGenerateAnimations: 4
|
||||
bakeSimulation: 0
|
||||
resampleCurves: 1
|
||||
optimizeGameObjects: 0
|
||||
motionNodeName:
|
||||
rigImportErrors:
|
||||
rigImportWarnings:
|
||||
animationImportErrors:
|
||||
animationImportWarnings:
|
||||
animationRetargetingWarnings:
|
||||
animationDoRetargetingWarnings: 0
|
||||
importAnimatedCustomProperties: 0
|
||||
importConstraints: 0
|
||||
animationCompression: 1
|
||||
animationRotationError: 0.5
|
||||
animationPositionError: 0.5
|
||||
animationScaleError: 0.5
|
||||
animationWrapMode: 0
|
||||
extraExposedTransformPaths: []
|
||||
extraUserProperties: []
|
||||
clipAnimations: []
|
||||
isReadable: 0
|
||||
meshes:
|
||||
lODScreenPercentages: []
|
||||
globalScale: 1
|
||||
meshCompression: 0
|
||||
addColliders: 0
|
||||
useSRGBMaterialColor: 1
|
||||
sortHierarchyByName: 1
|
||||
importVisibility: 1
|
||||
importBlendShapes: 1
|
||||
importCameras: 1
|
||||
importLights: 1
|
||||
fileIdsGeneration: 2
|
||||
swapUVChannels: 0
|
||||
generateSecondaryUV: 0
|
||||
useFileUnits: 1
|
||||
keepQuads: 0
|
||||
weldVertices: 1
|
||||
preserveHierarchy: 0
|
||||
skinWeightsMode: 0
|
||||
maxBonesPerVertex: 4
|
||||
minBoneWeight: 0.001
|
||||
meshOptimizationFlags: -1
|
||||
indexFormat: 0
|
||||
secondaryUVAngleDistortion: 8
|
||||
secondaryUVAreaDistortion: 15.000001
|
||||
secondaryUVHardAngle: 88
|
||||
secondaryUVPackMargin: 4
|
||||
useFileScale: 1
|
||||
tangentSpace:
|
||||
normalSmoothAngle: 60
|
||||
normalImportMode: 0
|
||||
tangentImportMode: 3
|
||||
normalCalculationMode: 4
|
||||
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0
|
||||
blendShapeNormalImportMode: 1
|
||||
normalSmoothingSource: 0
|
||||
referencedClips: []
|
||||
importAnimation: 1
|
||||
humanDescription:
|
||||
serializedVersion: 3
|
||||
human: []
|
||||
skeleton: []
|
||||
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: {instanceID: 0}
|
||||
autoGenerateAvatarMappingIfUnspecified: 1
|
||||
animationType: 2
|
||||
humanoidOversampling: 1
|
||||
avatarSetup: 0
|
||||
additionalBone: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
Binary file not shown.
@@ -0,0 +1,97 @@
|
||||
fileFormatVersion: 2
|
||||
guid: fce3bf5a5b603db45ab0048fb6ab44df
|
||||
ModelImporter:
|
||||
serializedVersion: 19301
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
materials:
|
||||
materialImportMode: 1
|
||||
materialName: 0
|
||||
materialSearch: 1
|
||||
materialLocation: 1
|
||||
animations:
|
||||
legacyGenerateAnimations: 4
|
||||
bakeSimulation: 0
|
||||
resampleCurves: 1
|
||||
optimizeGameObjects: 0
|
||||
motionNodeName:
|
||||
rigImportErrors:
|
||||
rigImportWarnings:
|
||||
animationImportErrors:
|
||||
animationImportWarnings:
|
||||
animationRetargetingWarnings:
|
||||
animationDoRetargetingWarnings: 0
|
||||
importAnimatedCustomProperties: 0
|
||||
importConstraints: 0
|
||||
animationCompression: 1
|
||||
animationRotationError: 0.5
|
||||
animationPositionError: 0.5
|
||||
animationScaleError: 0.5
|
||||
animationWrapMode: 0
|
||||
extraExposedTransformPaths: []
|
||||
extraUserProperties: []
|
||||
clipAnimations: []
|
||||
isReadable: 0
|
||||
meshes:
|
||||
lODScreenPercentages: []
|
||||
globalScale: 1
|
||||
meshCompression: 0
|
||||
addColliders: 0
|
||||
useSRGBMaterialColor: 1
|
||||
sortHierarchyByName: 1
|
||||
importVisibility: 1
|
||||
importBlendShapes: 1
|
||||
importCameras: 1
|
||||
importLights: 1
|
||||
fileIdsGeneration: 2
|
||||
swapUVChannels: 0
|
||||
generateSecondaryUV: 0
|
||||
useFileUnits: 1
|
||||
keepQuads: 0
|
||||
weldVertices: 1
|
||||
preserveHierarchy: 0
|
||||
skinWeightsMode: 0
|
||||
maxBonesPerVertex: 4
|
||||
minBoneWeight: 0.001
|
||||
meshOptimizationFlags: -1
|
||||
indexFormat: 0
|
||||
secondaryUVAngleDistortion: 8
|
||||
secondaryUVAreaDistortion: 15.000001
|
||||
secondaryUVHardAngle: 88
|
||||
secondaryUVPackMargin: 4
|
||||
useFileScale: 1
|
||||
tangentSpace:
|
||||
normalSmoothAngle: 60
|
||||
normalImportMode: 0
|
||||
tangentImportMode: 3
|
||||
normalCalculationMode: 4
|
||||
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0
|
||||
blendShapeNormalImportMode: 1
|
||||
normalSmoothingSource: 0
|
||||
referencedClips: []
|
||||
importAnimation: 1
|
||||
humanDescription:
|
||||
serializedVersion: 3
|
||||
human: []
|
||||
skeleton: []
|
||||
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: {instanceID: 0}
|
||||
autoGenerateAvatarMappingIfUnspecified: 1
|
||||
animationType: 2
|
||||
humanoidOversampling: 1
|
||||
avatarSetup: 0
|
||||
additionalBone: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
Binary file not shown.
@@ -0,0 +1,97 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 7e0223e1d3e1733499accfa5ebffb67e
|
||||
ModelImporter:
|
||||
serializedVersion: 19301
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
materials:
|
||||
materialImportMode: 1
|
||||
materialName: 0
|
||||
materialSearch: 1
|
||||
materialLocation: 1
|
||||
animations:
|
||||
legacyGenerateAnimations: 4
|
||||
bakeSimulation: 0
|
||||
resampleCurves: 1
|
||||
optimizeGameObjects: 0
|
||||
motionNodeName:
|
||||
rigImportErrors:
|
||||
rigImportWarnings:
|
||||
animationImportErrors:
|
||||
animationImportWarnings:
|
||||
animationRetargetingWarnings:
|
||||
animationDoRetargetingWarnings: 0
|
||||
importAnimatedCustomProperties: 0
|
||||
importConstraints: 0
|
||||
animationCompression: 1
|
||||
animationRotationError: 0.5
|
||||
animationPositionError: 0.5
|
||||
animationScaleError: 0.5
|
||||
animationWrapMode: 0
|
||||
extraExposedTransformPaths: []
|
||||
extraUserProperties: []
|
||||
clipAnimations: []
|
||||
isReadable: 0
|
||||
meshes:
|
||||
lODScreenPercentages: []
|
||||
globalScale: 1
|
||||
meshCompression: 0
|
||||
addColliders: 0
|
||||
useSRGBMaterialColor: 1
|
||||
sortHierarchyByName: 1
|
||||
importVisibility: 1
|
||||
importBlendShapes: 1
|
||||
importCameras: 1
|
||||
importLights: 1
|
||||
fileIdsGeneration: 2
|
||||
swapUVChannels: 0
|
||||
generateSecondaryUV: 0
|
||||
useFileUnits: 1
|
||||
keepQuads: 0
|
||||
weldVertices: 1
|
||||
preserveHierarchy: 0
|
||||
skinWeightsMode: 0
|
||||
maxBonesPerVertex: 4
|
||||
minBoneWeight: 0.001
|
||||
meshOptimizationFlags: -1
|
||||
indexFormat: 0
|
||||
secondaryUVAngleDistortion: 8
|
||||
secondaryUVAreaDistortion: 15.000001
|
||||
secondaryUVHardAngle: 88
|
||||
secondaryUVPackMargin: 4
|
||||
useFileScale: 1
|
||||
tangentSpace:
|
||||
normalSmoothAngle: 60
|
||||
normalImportMode: 0
|
||||
tangentImportMode: 3
|
||||
normalCalculationMode: 4
|
||||
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0
|
||||
blendShapeNormalImportMode: 1
|
||||
normalSmoothingSource: 0
|
||||
referencedClips: []
|
||||
importAnimation: 1
|
||||
humanDescription:
|
||||
serializedVersion: 3
|
||||
human: []
|
||||
skeleton: []
|
||||
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: {instanceID: 0}
|
||||
autoGenerateAvatarMappingIfUnspecified: 1
|
||||
animationType: 2
|
||||
humanoidOversampling: 1
|
||||
avatarSetup: 0
|
||||
additionalBone: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
Binary file not shown.
@@ -0,0 +1,97 @@
|
||||
fileFormatVersion: 2
|
||||
guid: d0a9bfb4b5f28174884e89dd76563ae8
|
||||
ModelImporter:
|
||||
serializedVersion: 19301
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
materials:
|
||||
materialImportMode: 1
|
||||
materialName: 0
|
||||
materialSearch: 1
|
||||
materialLocation: 1
|
||||
animations:
|
||||
legacyGenerateAnimations: 4
|
||||
bakeSimulation: 0
|
||||
resampleCurves: 1
|
||||
optimizeGameObjects: 0
|
||||
motionNodeName:
|
||||
rigImportErrors:
|
||||
rigImportWarnings:
|
||||
animationImportErrors:
|
||||
animationImportWarnings:
|
||||
animationRetargetingWarnings:
|
||||
animationDoRetargetingWarnings: 0
|
||||
importAnimatedCustomProperties: 0
|
||||
importConstraints: 0
|
||||
animationCompression: 1
|
||||
animationRotationError: 0.5
|
||||
animationPositionError: 0.5
|
||||
animationScaleError: 0.5
|
||||
animationWrapMode: 0
|
||||
extraExposedTransformPaths: []
|
||||
extraUserProperties: []
|
||||
clipAnimations: []
|
||||
isReadable: 0
|
||||
meshes:
|
||||
lODScreenPercentages: []
|
||||
globalScale: 1
|
||||
meshCompression: 0
|
||||
addColliders: 0
|
||||
useSRGBMaterialColor: 1
|
||||
sortHierarchyByName: 1
|
||||
importVisibility: 1
|
||||
importBlendShapes: 1
|
||||
importCameras: 1
|
||||
importLights: 1
|
||||
fileIdsGeneration: 2
|
||||
swapUVChannels: 0
|
||||
generateSecondaryUV: 0
|
||||
useFileUnits: 1
|
||||
keepQuads: 0
|
||||
weldVertices: 1
|
||||
preserveHierarchy: 0
|
||||
skinWeightsMode: 0
|
||||
maxBonesPerVertex: 4
|
||||
minBoneWeight: 0.001
|
||||
meshOptimizationFlags: -1
|
||||
indexFormat: 0
|
||||
secondaryUVAngleDistortion: 8
|
||||
secondaryUVAreaDistortion: 15.000001
|
||||
secondaryUVHardAngle: 88
|
||||
secondaryUVPackMargin: 4
|
||||
useFileScale: 1
|
||||
tangentSpace:
|
||||
normalSmoothAngle: 60
|
||||
normalImportMode: 0
|
||||
tangentImportMode: 3
|
||||
normalCalculationMode: 4
|
||||
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0
|
||||
blendShapeNormalImportMode: 1
|
||||
normalSmoothingSource: 0
|
||||
referencedClips: []
|
||||
importAnimation: 1
|
||||
humanDescription:
|
||||
serializedVersion: 3
|
||||
human: []
|
||||
skeleton: []
|
||||
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: {instanceID: 0}
|
||||
autoGenerateAvatarMappingIfUnspecified: 1
|
||||
animationType: 2
|
||||
humanoidOversampling: 1
|
||||
avatarSetup: 0
|
||||
additionalBone: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
Binary file not shown.
@@ -0,0 +1,97 @@
|
||||
fileFormatVersion: 2
|
||||
guid: f712806514868e54699156ec05dcb749
|
||||
ModelImporter:
|
||||
serializedVersion: 19301
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
materials:
|
||||
materialImportMode: 1
|
||||
materialName: 0
|
||||
materialSearch: 1
|
||||
materialLocation: 1
|
||||
animations:
|
||||
legacyGenerateAnimations: 4
|
||||
bakeSimulation: 0
|
||||
resampleCurves: 1
|
||||
optimizeGameObjects: 0
|
||||
motionNodeName:
|
||||
rigImportErrors:
|
||||
rigImportWarnings:
|
||||
animationImportErrors:
|
||||
animationImportWarnings:
|
||||
animationRetargetingWarnings:
|
||||
animationDoRetargetingWarnings: 0
|
||||
importAnimatedCustomProperties: 0
|
||||
importConstraints: 0
|
||||
animationCompression: 1
|
||||
animationRotationError: 0.5
|
||||
animationPositionError: 0.5
|
||||
animationScaleError: 0.5
|
||||
animationWrapMode: 0
|
||||
extraExposedTransformPaths: []
|
||||
extraUserProperties: []
|
||||
clipAnimations: []
|
||||
isReadable: 0
|
||||
meshes:
|
||||
lODScreenPercentages: []
|
||||
globalScale: 1
|
||||
meshCompression: 0
|
||||
addColliders: 0
|
||||
useSRGBMaterialColor: 1
|
||||
sortHierarchyByName: 1
|
||||
importVisibility: 1
|
||||
importBlendShapes: 1
|
||||
importCameras: 1
|
||||
importLights: 1
|
||||
fileIdsGeneration: 2
|
||||
swapUVChannels: 0
|
||||
generateSecondaryUV: 0
|
||||
useFileUnits: 1
|
||||
keepQuads: 0
|
||||
weldVertices: 1
|
||||
preserveHierarchy: 0
|
||||
skinWeightsMode: 0
|
||||
maxBonesPerVertex: 4
|
||||
minBoneWeight: 0.001
|
||||
meshOptimizationFlags: -1
|
||||
indexFormat: 0
|
||||
secondaryUVAngleDistortion: 8
|
||||
secondaryUVAreaDistortion: 15.000001
|
||||
secondaryUVHardAngle: 88
|
||||
secondaryUVPackMargin: 4
|
||||
useFileScale: 1
|
||||
tangentSpace:
|
||||
normalSmoothAngle: 60
|
||||
normalImportMode: 0
|
||||
tangentImportMode: 3
|
||||
normalCalculationMode: 4
|
||||
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0
|
||||
blendShapeNormalImportMode: 1
|
||||
normalSmoothingSource: 0
|
||||
referencedClips: []
|
||||
importAnimation: 1
|
||||
humanDescription:
|
||||
serializedVersion: 3
|
||||
human: []
|
||||
skeleton: []
|
||||
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: {instanceID: 0}
|
||||
autoGenerateAvatarMappingIfUnspecified: 1
|
||||
animationType: 2
|
||||
humanoidOversampling: 1
|
||||
avatarSetup: 0
|
||||
additionalBone: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
Binary file not shown.
@@ -0,0 +1,97 @@
|
||||
fileFormatVersion: 2
|
||||
guid: ff02a0a00ab750f48b09459b1cafd1b8
|
||||
ModelImporter:
|
||||
serializedVersion: 19301
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
materials:
|
||||
materialImportMode: 1
|
||||
materialName: 0
|
||||
materialSearch: 1
|
||||
materialLocation: 1
|
||||
animations:
|
||||
legacyGenerateAnimations: 4
|
||||
bakeSimulation: 0
|
||||
resampleCurves: 1
|
||||
optimizeGameObjects: 0
|
||||
motionNodeName:
|
||||
rigImportErrors:
|
||||
rigImportWarnings:
|
||||
animationImportErrors:
|
||||
animationImportWarnings:
|
||||
animationRetargetingWarnings:
|
||||
animationDoRetargetingWarnings: 0
|
||||
importAnimatedCustomProperties: 0
|
||||
importConstraints: 0
|
||||
animationCompression: 1
|
||||
animationRotationError: 0.5
|
||||
animationPositionError: 0.5
|
||||
animationScaleError: 0.5
|
||||
animationWrapMode: 0
|
||||
extraExposedTransformPaths: []
|
||||
extraUserProperties: []
|
||||
clipAnimations: []
|
||||
isReadable: 0
|
||||
meshes:
|
||||
lODScreenPercentages: []
|
||||
globalScale: 1
|
||||
meshCompression: 0
|
||||
addColliders: 0
|
||||
useSRGBMaterialColor: 1
|
||||
sortHierarchyByName: 1
|
||||
importVisibility: 1
|
||||
importBlendShapes: 1
|
||||
importCameras: 1
|
||||
importLights: 1
|
||||
fileIdsGeneration: 2
|
||||
swapUVChannels: 0
|
||||
generateSecondaryUV: 0
|
||||
useFileUnits: 1
|
||||
keepQuads: 0
|
||||
weldVertices: 1
|
||||
preserveHierarchy: 0
|
||||
skinWeightsMode: 0
|
||||
maxBonesPerVertex: 4
|
||||
minBoneWeight: 0.001
|
||||
meshOptimizationFlags: -1
|
||||
indexFormat: 0
|
||||
secondaryUVAngleDistortion: 8
|
||||
secondaryUVAreaDistortion: 15.000001
|
||||
secondaryUVHardAngle: 88
|
||||
secondaryUVPackMargin: 4
|
||||
useFileScale: 1
|
||||
tangentSpace:
|
||||
normalSmoothAngle: 60
|
||||
normalImportMode: 0
|
||||
tangentImportMode: 3
|
||||
normalCalculationMode: 4
|
||||
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0
|
||||
blendShapeNormalImportMode: 1
|
||||
normalSmoothingSource: 0
|
||||
referencedClips: []
|
||||
importAnimation: 1
|
||||
humanDescription:
|
||||
serializedVersion: 3
|
||||
human: []
|
||||
skeleton: []
|
||||
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: {instanceID: 0}
|
||||
autoGenerateAvatarMappingIfUnspecified: 1
|
||||
animationType: 2
|
||||
humanoidOversampling: 1
|
||||
avatarSetup: 0
|
||||
additionalBone: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 2a70527d2b9ce604f9f0b75c2d0f3e29
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,88 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!21 &2100000
|
||||
Material:
|
||||
serializedVersion: 8
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name: SkyboxLiteWarm
|
||||
m_Shader: {fileID: 106, guid: 0000000000000000f000000000000000, type: 0}
|
||||
m_ValidKeywords:
|
||||
- _SUNDISK_HIGH_QUALITY
|
||||
m_InvalidKeywords: []
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 0
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: -1
|
||||
stringTagMap: {}
|
||||
disabledShaderPasses: []
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _BumpMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailAlbedoMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailMask:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailNormalMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _EmissionMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MainTex:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MetallicGlossMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _OcclusionMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ParallaxMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _AtmosphereThickness: 0.5
|
||||
- _BumpScale: 1
|
||||
- _Cutoff: 0.5
|
||||
- _DetailNormalMapScale: 1
|
||||
- _DstBlend: 0
|
||||
- _Exposure: 1.18
|
||||
- _GlossMapScale: 1
|
||||
- _Glossiness: 0.5
|
||||
- _GlossyReflections: 1
|
||||
- _Metallic: 0
|
||||
- _Mode: 0
|
||||
- _OcclusionStrength: 1
|
||||
- _Parallax: 0.02
|
||||
- _SmoothnessTextureChannel: 0
|
||||
- _SpecularHighlights: 1
|
||||
- _SrcBlend: 1
|
||||
- _SunDisk: 2
|
||||
- _SunSize: 0.05
|
||||
- _SunSizeConvergence: 3.5
|
||||
- _UVSec: 0
|
||||
- _ZWrite: 1
|
||||
m_Colors:
|
||||
- _Color: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _GroundColor: {r: 0.4811321, g: 0.4750801, b: 0.4750801, a: 1}
|
||||
- _SkyTint: {r: 0.8820755, g: 1, b: 0.9987828, a: 1}
|
||||
m_BuildTextureStacks: []
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: aeab33f69c199e54794f516d31450ec4
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: a0d7d0ffd22a58f4ba73a3fdb34a7d6d
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
Binary file not shown.
@@ -0,0 +1,120 @@
|
||||
fileFormatVersion: 2
|
||||
guid: d1118dda59970a2449ee890fa247c4c5
|
||||
TextureImporter:
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
serializedVersion: 11
|
||||
mipmaps:
|
||||
mipMapMode: 0
|
||||
enableMipMap: 1
|
||||
sRGBTexture: 1
|
||||
linearTexture: 0
|
||||
fadeOut: 0
|
||||
borderMipMap: 0
|
||||
mipMapsPreserveCoverage: 0
|
||||
alphaTestReferenceValue: 0.5
|
||||
mipMapFadeDistanceStart: 1
|
||||
mipMapFadeDistanceEnd: 3
|
||||
bumpmap:
|
||||
convertToNormalMap: 0
|
||||
externalNormalMap: 0
|
||||
heightScale: 0.25
|
||||
normalMapFilter: 0
|
||||
isReadable: 0
|
||||
streamingMipmaps: 0
|
||||
streamingMipmapsPriority: 0
|
||||
vTOnly: 0
|
||||
grayScaleToAlpha: 0
|
||||
generateCubemap: 6
|
||||
cubemapConvolution: 0
|
||||
seamlessCubemap: 0
|
||||
textureFormat: 1
|
||||
maxTextureSize: 2048
|
||||
textureSettings:
|
||||
serializedVersion: 2
|
||||
filterMode: -1
|
||||
aniso: -1
|
||||
mipBias: -100
|
||||
wrapU: -1
|
||||
wrapV: -1
|
||||
wrapW: -1
|
||||
nPOTScale: 1
|
||||
lightmap: 0
|
||||
compressionQuality: 50
|
||||
spriteMode: 0
|
||||
spriteExtrude: 1
|
||||
spriteMeshType: 1
|
||||
alignment: 0
|
||||
spritePivot: {x: 0.5, y: 0.5}
|
||||
spritePixelsToUnits: 100
|
||||
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
|
||||
spriteGenerateFallbackPhysicsShape: 1
|
||||
alphaUsage: 1
|
||||
alphaIsTransparency: 0
|
||||
spriteTessellationDetail: -1
|
||||
textureType: 0
|
||||
textureShape: 1
|
||||
singleChannelComponent: 0
|
||||
flipbookRows: 1
|
||||
flipbookColumns: 1
|
||||
maxTextureSizeSet: 0
|
||||
compressionQualitySet: 0
|
||||
textureFormatSet: 0
|
||||
ignorePngGamma: 0
|
||||
applyGammaDecoding: 0
|
||||
platformSettings:
|
||||
- serializedVersion: 3
|
||||
buildTarget: DefaultTexturePlatform
|
||||
maxTextureSize: 1024
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 1
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 3
|
||||
buildTarget: Standalone
|
||||
maxTextureSize: 1024
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 1
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 3
|
||||
buildTarget: iPhone
|
||||
maxTextureSize: 1024
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 1
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
spriteSheet:
|
||||
serializedVersion: 2
|
||||
sprites: []
|
||||
outline: []
|
||||
physicsShape: []
|
||||
bones: []
|
||||
spriteID:
|
||||
internalID: 0
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
spritePackingTag:
|
||||
pSDRemoveMatte: 0
|
||||
pSDShowRemoveMatteOption: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
Binary file not shown.
@@ -0,0 +1,144 @@
|
||||
fileFormatVersion: 2
|
||||
guid: d4d6919451fe3e24388816386a6d15a4
|
||||
TextureImporter:
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
serializedVersion: 11
|
||||
mipmaps:
|
||||
mipMapMode: 0
|
||||
enableMipMap: 1
|
||||
sRGBTexture: 1
|
||||
linearTexture: 0
|
||||
fadeOut: 0
|
||||
borderMipMap: 0
|
||||
mipMapsPreserveCoverage: 0
|
||||
alphaTestReferenceValue: 0.5
|
||||
mipMapFadeDistanceStart: 1
|
||||
mipMapFadeDistanceEnd: 3
|
||||
bumpmap:
|
||||
convertToNormalMap: 0
|
||||
externalNormalMap: 0
|
||||
heightScale: 0.25
|
||||
normalMapFilter: 0
|
||||
isReadable: 0
|
||||
streamingMipmaps: 0
|
||||
streamingMipmapsPriority: 0
|
||||
vTOnly: 0
|
||||
grayScaleToAlpha: 0
|
||||
generateCubemap: 6
|
||||
cubemapConvolution: 0
|
||||
seamlessCubemap: 0
|
||||
textureFormat: 1
|
||||
maxTextureSize: 2048
|
||||
textureSettings:
|
||||
serializedVersion: 2
|
||||
filterMode: -1
|
||||
aniso: 2
|
||||
mipBias: -100
|
||||
wrapU: 0
|
||||
wrapV: 0
|
||||
wrapW: 0
|
||||
nPOTScale: 1
|
||||
lightmap: 0
|
||||
compressionQuality: 50
|
||||
spriteMode: 0
|
||||
spriteExtrude: 1
|
||||
spriteMeshType: 1
|
||||
alignment: 0
|
||||
spritePivot: {x: 0.5, y: 0.5}
|
||||
spritePixelsToUnits: 100
|
||||
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
|
||||
spriteGenerateFallbackPhysicsShape: 1
|
||||
alphaUsage: 1
|
||||
alphaIsTransparency: 0
|
||||
spriteTessellationDetail: -1
|
||||
textureType: 0
|
||||
textureShape: 1
|
||||
singleChannelComponent: 0
|
||||
flipbookRows: 1
|
||||
flipbookColumns: 1
|
||||
maxTextureSizeSet: 0
|
||||
compressionQualitySet: 0
|
||||
textureFormatSet: 0
|
||||
ignorePngGamma: 0
|
||||
applyGammaDecoding: 0
|
||||
platformSettings:
|
||||
- serializedVersion: 3
|
||||
buildTarget: DefaultTexturePlatform
|
||||
maxTextureSize: 1024
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 1
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 3
|
||||
buildTarget: Standalone
|
||||
maxTextureSize: 1024
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 1
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 3
|
||||
buildTarget: iPhone
|
||||
maxTextureSize: 1024
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 1
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 3
|
||||
buildTarget: Android
|
||||
maxTextureSize: 8192
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 3
|
||||
buildTarget: Windows Store Apps
|
||||
maxTextureSize: 8192
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
spriteSheet:
|
||||
serializedVersion: 2
|
||||
sprites: []
|
||||
outline: []
|
||||
physicsShape: []
|
||||
bones: []
|
||||
spriteID:
|
||||
internalID: 0
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
spritePackingTag:
|
||||
pSDRemoveMatte: 0
|
||||
pSDShowRemoveMatteOption: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
Binary file not shown.
@@ -0,0 +1,120 @@
|
||||
fileFormatVersion: 2
|
||||
guid: c5c221ed57a3bf6488f8eba0db28a004
|
||||
TextureImporter:
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
serializedVersion: 11
|
||||
mipmaps:
|
||||
mipMapMode: 0
|
||||
enableMipMap: 1
|
||||
sRGBTexture: 0
|
||||
linearTexture: 0
|
||||
fadeOut: 0
|
||||
borderMipMap: 0
|
||||
mipMapsPreserveCoverage: 0
|
||||
alphaTestReferenceValue: 0.5
|
||||
mipMapFadeDistanceStart: 1
|
||||
mipMapFadeDistanceEnd: 3
|
||||
bumpmap:
|
||||
convertToNormalMap: 0
|
||||
externalNormalMap: 0
|
||||
heightScale: 0.25
|
||||
normalMapFilter: 0
|
||||
isReadable: 0
|
||||
streamingMipmaps: 0
|
||||
streamingMipmapsPriority: 0
|
||||
vTOnly: 0
|
||||
grayScaleToAlpha: 0
|
||||
generateCubemap: 6
|
||||
cubemapConvolution: 0
|
||||
seamlessCubemap: 0
|
||||
textureFormat: 1
|
||||
maxTextureSize: 2048
|
||||
textureSettings:
|
||||
serializedVersion: 2
|
||||
filterMode: -1
|
||||
aniso: -1
|
||||
mipBias: -100
|
||||
wrapU: -1
|
||||
wrapV: -1
|
||||
wrapW: -1
|
||||
nPOTScale: 1
|
||||
lightmap: 0
|
||||
compressionQuality: 50
|
||||
spriteMode: 0
|
||||
spriteExtrude: 1
|
||||
spriteMeshType: 1
|
||||
alignment: 0
|
||||
spritePivot: {x: 0.5, y: 0.5}
|
||||
spritePixelsToUnits: 100
|
||||
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
|
||||
spriteGenerateFallbackPhysicsShape: 1
|
||||
alphaUsage: 1
|
||||
alphaIsTransparency: 0
|
||||
spriteTessellationDetail: -1
|
||||
textureType: 1
|
||||
textureShape: 1
|
||||
singleChannelComponent: 0
|
||||
flipbookRows: 1
|
||||
flipbookColumns: 1
|
||||
maxTextureSizeSet: 0
|
||||
compressionQualitySet: 0
|
||||
textureFormatSet: 0
|
||||
ignorePngGamma: 0
|
||||
applyGammaDecoding: 0
|
||||
platformSettings:
|
||||
- serializedVersion: 3
|
||||
buildTarget: DefaultTexturePlatform
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 3
|
||||
buildTarget: Standalone
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 3
|
||||
buildTarget: iPhone
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
spriteSheet:
|
||||
serializedVersion: 2
|
||||
sprites: []
|
||||
outline: []
|
||||
physicsShape: []
|
||||
bones: []
|
||||
spriteID:
|
||||
internalID: 0
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
spritePackingTag:
|
||||
pSDRemoveMatte: 0
|
||||
pSDShowRemoveMatteOption: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
Binary file not shown.
@@ -0,0 +1,132 @@
|
||||
fileFormatVersion: 2
|
||||
guid: d9c0dd5cdac07b145be73329e489869a
|
||||
TextureImporter:
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
serializedVersion: 11
|
||||
mipmaps:
|
||||
mipMapMode: 0
|
||||
enableMipMap: 1
|
||||
sRGBTexture: 1
|
||||
linearTexture: 0
|
||||
fadeOut: 0
|
||||
borderMipMap: 0
|
||||
mipMapsPreserveCoverage: 0
|
||||
alphaTestReferenceValue: 0.5
|
||||
mipMapFadeDistanceStart: 1
|
||||
mipMapFadeDistanceEnd: 3
|
||||
bumpmap:
|
||||
convertToNormalMap: 0
|
||||
externalNormalMap: 0
|
||||
heightScale: 0.25
|
||||
normalMapFilter: 0
|
||||
isReadable: 0
|
||||
streamingMipmaps: 0
|
||||
streamingMipmapsPriority: 0
|
||||
vTOnly: 0
|
||||
grayScaleToAlpha: 0
|
||||
generateCubemap: 6
|
||||
cubemapConvolution: 0
|
||||
seamlessCubemap: 0
|
||||
textureFormat: 1
|
||||
maxTextureSize: 2048
|
||||
textureSettings:
|
||||
serializedVersion: 2
|
||||
filterMode: -1
|
||||
aniso: -1
|
||||
mipBias: -100
|
||||
wrapU: 0
|
||||
wrapV: 0
|
||||
wrapW: 0
|
||||
nPOTScale: 1
|
||||
lightmap: 0
|
||||
compressionQuality: 50
|
||||
spriteMode: 0
|
||||
spriteExtrude: 1
|
||||
spriteMeshType: 1
|
||||
alignment: 0
|
||||
spritePivot: {x: 0.5, y: 0.5}
|
||||
spritePixelsToUnits: 100
|
||||
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
|
||||
spriteGenerateFallbackPhysicsShape: 1
|
||||
alphaUsage: 0
|
||||
alphaIsTransparency: 0
|
||||
spriteTessellationDetail: -1
|
||||
textureType: 0
|
||||
textureShape: 1
|
||||
singleChannelComponent: 0
|
||||
flipbookRows: 1
|
||||
flipbookColumns: 1
|
||||
maxTextureSizeSet: 0
|
||||
compressionQualitySet: 0
|
||||
textureFormatSet: 0
|
||||
ignorePngGamma: 0
|
||||
applyGammaDecoding: 1
|
||||
platformSettings:
|
||||
- serializedVersion: 3
|
||||
buildTarget: DefaultTexturePlatform
|
||||
maxTextureSize: 1024
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 1
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 3
|
||||
buildTarget: Standalone
|
||||
maxTextureSize: 1024
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 1
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 3
|
||||
buildTarget: iPhone
|
||||
maxTextureSize: 1024
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 1
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 3
|
||||
buildTarget: WebGL
|
||||
maxTextureSize: 512
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 2
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 1
|
||||
spriteSheet:
|
||||
serializedVersion: 2
|
||||
sprites: []
|
||||
outline: []
|
||||
physicsShape: []
|
||||
bones: []
|
||||
spriteID:
|
||||
internalID: 0
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
spritePackingTag:
|
||||
pSDRemoveMatte: 0
|
||||
pSDShowRemoveMatteOption: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 83f763c2d2a1d6f4fa9ca9f9ce77df10
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,285 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!114 &-1583039984944758972
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 11
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
version: 13
|
||||
hdPluginSubTargetMaterialVersions:
|
||||
m_Keys: []
|
||||
m_Values:
|
||||
--- !u!114 &-272362022367997255
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 11
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
version: 10
|
||||
--- !u!21 &2100000
|
||||
Material:
|
||||
serializedVersion: 8
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name: Blue_Mat
|
||||
m_Shader: {fileID: -6465566751694194690, guid: ed9d2c7cebcf9be4e9fa52a4b0479222, type: 3}
|
||||
m_Parent: {fileID: 0}
|
||||
m_ModifiedSerializedProperties: 0
|
||||
m_ValidKeywords: []
|
||||
m_InvalidKeywords:
|
||||
- _DISABLE_SSR_TRANSPARENT
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 0
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: 2000
|
||||
stringTagMap: {}
|
||||
disabledShaderPasses:
|
||||
- TransparentDepthPrepass
|
||||
- TransparentDepthPostpass
|
||||
- TransparentBackface
|
||||
- RayTracingPrepass
|
||||
- MOTIONVECTORS
|
||||
m_LockedProperties:
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _BaseMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _BumpMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailAlbedoMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailMask:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailNormalMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _EmissionMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _GuideTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _Guide_Noise:
|
||||
m_Texture: {fileID: 2800000, guid: 03b9f416729b1844387ea6c6ba41b746, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MainTex:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MetallicGlossMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _OcclusionMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ParallaxMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _SpecGlossMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_Lightmaps:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_LightmapsInd:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_ShadowMasks:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _AddPrecomputedVelocity: 0
|
||||
- _AlphaClip: 0
|
||||
- _AlphaCutoffEnable: 0
|
||||
- _AlphaDstBlend: 0
|
||||
- _AlphaSrcBlend: 1
|
||||
- _AlphaToMask: 0
|
||||
- _AlphaToMaskInspectorValue: 0
|
||||
- _Angle: 0
|
||||
- _BUILTIN_AlphaClip: 1
|
||||
- _BUILTIN_Blend: 0
|
||||
- _BUILTIN_CullMode: 2
|
||||
- _BUILTIN_DstBlend: 0
|
||||
- _BUILTIN_QueueControl: 0
|
||||
- _BUILTIN_QueueOffset: 0
|
||||
- _BUILTIN_SrcBlend: 1
|
||||
- _BUILTIN_Surface: 0
|
||||
- _BUILTIN_ZTest: 4
|
||||
- _BUILTIN_ZWrite: 1
|
||||
- _BUILTIN_ZWriteControl: 1
|
||||
- _Blend: 0
|
||||
- _BlendMode: 0
|
||||
- _BlendModePreserveSpecular: 0
|
||||
- _BumpScale: 1
|
||||
- _BurnHardness: 0
|
||||
- _BurnOffset: 0
|
||||
- _Burn_Hardness: 0
|
||||
- _Burn_Offset: 0
|
||||
- _CastShadows: 1
|
||||
- _ClearCoatMask: 0
|
||||
- _ClearCoatSmoothness: 0
|
||||
- _ConservativeDepthOffsetEnable: 0
|
||||
- _Cull: 2
|
||||
- _CullMode: 2
|
||||
- _CullModeForward: 2
|
||||
- _Cutoff: 0
|
||||
- _DepthOffsetEnable: 0
|
||||
- _DetailAlbedoMapScale: 1
|
||||
- _DetailNormalMapScale: 1
|
||||
- _DisplacementOffset: 0
|
||||
- _DisplacementPerVertex: 0
|
||||
- _DisplacementRandomOffsetScale: 0
|
||||
- _DisplacementRotationDegrees: 0
|
||||
- _DisplacementSmoothness: 0
|
||||
- _DoubleSidedEnable: 0
|
||||
- _DoubleSidedGIMode: 0
|
||||
- _DoubleSidedNormalMode: 2
|
||||
- _DstBlend: 0
|
||||
- _EmberOffset: 0
|
||||
- _EmberSmoothness: 0
|
||||
- _EmberWidth: 0
|
||||
- _Ember_Offset: 0
|
||||
- _Ember_Smoothness: 0.02
|
||||
- _Ember_Width: 0.02
|
||||
- _EnableBlendModePreserveSpecularLighting: 1
|
||||
- _EnableFogOnTransparent: 1
|
||||
- _EnvironmentReflections: 1
|
||||
- _ExcludeFromTUAndAA: 0
|
||||
- _GlossMapScale: 1
|
||||
- _Glossiness: 0.5
|
||||
- _GlossyReflections: 1
|
||||
- _GuideStrength: 0
|
||||
- _GuideTiling: 0
|
||||
- _Guide_Strength: 0.13
|
||||
- _Guide_Tilling: 18
|
||||
- _INVERT: 0
|
||||
- _Invert: 0
|
||||
- _Length: 0
|
||||
- _Metallic: 0
|
||||
- _Mode: 0
|
||||
- _OcclusionStrength: 1
|
||||
- _OpaqueCullMode: 2
|
||||
- _Parallax: 0.02
|
||||
- _QueueControl: 0
|
||||
- _QueueOffset: 0
|
||||
- _Radius1: 0
|
||||
- _Radius2: 0
|
||||
- _RayTracing: 0
|
||||
- _ReceiveShadows: 1
|
||||
- _ReceivesSSR: 1
|
||||
- _ReceivesSSRTransparent: 0
|
||||
- _RefractionModel: 0
|
||||
- _RenderQueueType: 1
|
||||
- _RequireSplitLighting: 0
|
||||
- _Smoothness: 0.5
|
||||
- _SmoothnessTextureChannel: 0
|
||||
- _SpecularHighlights: 1
|
||||
- _SrcBlend: 1
|
||||
- _StencilRef: 0
|
||||
- _StencilRefDepth: 8
|
||||
- _StencilRefDistortionVec: 4
|
||||
- _StencilRefGBuffer: 10
|
||||
- _StencilRefMV: 40
|
||||
- _StencilWriteMask: 6
|
||||
- _StencilWriteMaskDepth: 8
|
||||
- _StencilWriteMaskDistortionVec: 4
|
||||
- _StencilWriteMaskGBuffer: 14
|
||||
- _StencilWriteMaskMV: 40
|
||||
- _SupportDecals: 1
|
||||
- _Surface: 0
|
||||
- _SurfaceType: 0
|
||||
- _TransparentBackfaceEnable: 0
|
||||
- _TransparentCullMode: 2
|
||||
- _TransparentDepthPostpassEnable: 0
|
||||
- _TransparentDepthPrepassEnable: 0
|
||||
- _TransparentSortPriority: 0
|
||||
- _TransparentWritingMotionVec: 0
|
||||
- _TransparentZWrite: 0
|
||||
- _USE_TRIPLANAR_UVS: 0
|
||||
- _UVSec: 0
|
||||
- _UseBackColor: 0
|
||||
- _UseShadowThreshold: 0
|
||||
- _Use_Emission: 0
|
||||
- _Use_Metallic_Texture: 0
|
||||
- _WorkflowMode: 1
|
||||
- _ZTest: 4
|
||||
- _ZTestDepthEqualForOpaque: 3
|
||||
- _ZTestGBuffer: 4
|
||||
- _ZTestTransparent: 4
|
||||
- _ZWrite: 1
|
||||
- _ZWriteControl: 0
|
||||
- _size: 0
|
||||
- _smoothness: 0.388
|
||||
m_Colors:
|
||||
- _BackColor: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _Back_Color: {r: 8, g: 3.984314, b: 0, a: 0}
|
||||
- _BaseColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _BurnColor: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _Burn_Color: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _Color: {r: 0.48507768, g: 0.6755646, b: 0.7830188, a: 1}
|
||||
- _DisplacementAxis: {r: 0, g: 1, b: 0, a: 0}
|
||||
- _DoubleSidedConstants: {r: 1, g: 1, b: -1, a: 0}
|
||||
- _EmberColor: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _Ember_Color: {r: 7.999999, g: 0, b: 7.5079913, a: 0}
|
||||
- _EmissionColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _Forward: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _LocalPos1: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _LocalPos2: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _Offset: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _Right: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _Scale: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _SpecColor: {r: 0.2, g: 0.2, b: 0.2, a: 1}
|
||||
- _Tiling: {r: 1, g: 1, b: 0, a: 0}
|
||||
- _Up: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _WorldSpacePos: {r: 0, g: 0, b: 0, a: 0}
|
||||
m_BuildTextureStacks: []
|
||||
m_AllowLocking: 1
|
||||
--- !u!114 &6468512038253622178
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 11
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: 639247ca83abc874e893eb93af2b5e44, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
version: 0
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 979aef027a1c86c42a15ce35fce366fa
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,285 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!114 &-2253864083164058952
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 11
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: 639247ca83abc874e893eb93af2b5e44, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
version: 0
|
||||
--- !u!21 &2100000
|
||||
Material:
|
||||
serializedVersion: 8
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name: GridBlue_01_Mat
|
||||
m_Shader: {fileID: -6465566751694194690, guid: ed9d2c7cebcf9be4e9fa52a4b0479222, type: 3}
|
||||
m_Parent: {fileID: 0}
|
||||
m_ModifiedSerializedProperties: 0
|
||||
m_ValidKeywords: []
|
||||
m_InvalidKeywords:
|
||||
- _EMISSION
|
||||
m_LightmapFlags: 6
|
||||
m_EnableInstancingVariants: 0
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: 2000
|
||||
stringTagMap: {}
|
||||
disabledShaderPasses:
|
||||
- TransparentDepthPrepass
|
||||
- TransparentDepthPostpass
|
||||
- TransparentBackface
|
||||
- RayTracingPrepass
|
||||
- MOTIONVECTORS
|
||||
m_LockedProperties:
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _BaseMap:
|
||||
m_Texture: {fileID: 2800000, guid: d1118dda59970a2449ee890fa247c4c5, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0.004, y: 0}
|
||||
- _BumpMap:
|
||||
m_Texture: {fileID: 2800000, guid: c5c221ed57a3bf6488f8eba0db28a004, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailAlbedoMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailMask:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailNormalMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _EmissionMap:
|
||||
m_Texture: {fileID: 2800000, guid: d4d6919451fe3e24388816386a6d15a4, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _GuideTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _Guide_Noise:
|
||||
m_Texture: {fileID: 2800000, guid: 03b9f416729b1844387ea6c6ba41b746, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MainTex:
|
||||
m_Texture: {fileID: 2800000, guid: d1118dda59970a2449ee890fa247c4c5, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0.004, y: 0}
|
||||
- _MetallicGlossMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _OcclusionMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ParallaxMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _SpecGlossMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_Lightmaps:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_LightmapsInd:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_ShadowMasks:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _AddPrecomputedVelocity: 0
|
||||
- _AlphaClip: 0
|
||||
- _AlphaCutoffEnable: 0
|
||||
- _AlphaDstBlend: 0
|
||||
- _AlphaSrcBlend: 1
|
||||
- _AlphaToMask: 0
|
||||
- _AlphaToMaskInspectorValue: 0
|
||||
- _Angle: 0
|
||||
- _BUILTIN_AlphaClip: 1
|
||||
- _BUILTIN_Blend: 0
|
||||
- _BUILTIN_CullMode: 2
|
||||
- _BUILTIN_DstBlend: 0
|
||||
- _BUILTIN_QueueControl: 0
|
||||
- _BUILTIN_QueueOffset: 0
|
||||
- _BUILTIN_SrcBlend: 1
|
||||
- _BUILTIN_Surface: 0
|
||||
- _BUILTIN_ZTest: 4
|
||||
- _BUILTIN_ZWrite: 1
|
||||
- _BUILTIN_ZWriteControl: 1
|
||||
- _Blend: 0
|
||||
- _BlendMode: 0
|
||||
- _BlendModePreserveSpecular: 0
|
||||
- _BumpScale: 1
|
||||
- _BurnHardness: 0
|
||||
- _BurnOffset: 0
|
||||
- _Burn_Hardness: 0
|
||||
- _Burn_Offset: 0
|
||||
- _CastShadows: 1
|
||||
- _ClearCoatMask: 0
|
||||
- _ClearCoatSmoothness: 0
|
||||
- _ConservativeDepthOffsetEnable: 0
|
||||
- _Cull: 2
|
||||
- _CullMode: 2
|
||||
- _CullModeForward: 2
|
||||
- _Cutoff: 0
|
||||
- _DepthOffsetEnable: 0
|
||||
- _DetailAlbedoMapScale: 1
|
||||
- _DetailNormalMapScale: 1
|
||||
- _DisplacementOffset: 0
|
||||
- _DisplacementPerVertex: 0
|
||||
- _DisplacementRandomOffsetScale: 0
|
||||
- _DisplacementRotationDegrees: 0
|
||||
- _DisplacementSmoothness: 0
|
||||
- _DoubleSidedEnable: 0
|
||||
- _DoubleSidedGIMode: 0
|
||||
- _DoubleSidedNormalMode: 2
|
||||
- _DstBlend: 0
|
||||
- _EmberOffset: 0
|
||||
- _EmberSmoothness: 0
|
||||
- _EmberWidth: 0
|
||||
- _Ember_Offset: 0
|
||||
- _Ember_Smoothness: 0.02
|
||||
- _Ember_Width: 0.02
|
||||
- _EnableBlendModePreserveSpecularLighting: 1
|
||||
- _EnableFogOnTransparent: 1
|
||||
- _EnvironmentReflections: 1
|
||||
- _ExcludeFromTUAndAA: 0
|
||||
- _GlossMapScale: 1
|
||||
- _Glossiness: 0.477
|
||||
- _GlossyReflections: 1
|
||||
- _GuideStrength: 0
|
||||
- _GuideTiling: 0
|
||||
- _Guide_Strength: 0.13
|
||||
- _Guide_Tilling: 18
|
||||
- _INVERT: 0
|
||||
- _Invert: 0
|
||||
- _Length: 0
|
||||
- _Metallic: 0
|
||||
- _Mode: 0
|
||||
- _OcclusionStrength: 0
|
||||
- _OpaqueCullMode: 2
|
||||
- _Parallax: 0.02
|
||||
- _QueueControl: 0
|
||||
- _QueueOffset: 0
|
||||
- _Radius1: 0
|
||||
- _Radius2: 0
|
||||
- _RayTracing: 0
|
||||
- _ReceiveShadows: 1
|
||||
- _ReceivesSSR: 1
|
||||
- _ReceivesSSRTransparent: 0
|
||||
- _RefractionModel: 0
|
||||
- _RenderQueueType: 1
|
||||
- _RequireSplitLighting: 0
|
||||
- _Smoothness: 0
|
||||
- _SmoothnessTextureChannel: 0
|
||||
- _SpecularHighlights: 1
|
||||
- _SrcBlend: 1
|
||||
- _StencilRef: 0
|
||||
- _StencilRefDepth: 8
|
||||
- _StencilRefDistortionVec: 4
|
||||
- _StencilRefGBuffer: 10
|
||||
- _StencilRefMV: 40
|
||||
- _StencilWriteMask: 6
|
||||
- _StencilWriteMaskDepth: 8
|
||||
- _StencilWriteMaskDistortionVec: 4
|
||||
- _StencilWriteMaskGBuffer: 14
|
||||
- _StencilWriteMaskMV: 40
|
||||
- _SupportDecals: 1
|
||||
- _Surface: 0
|
||||
- _SurfaceType: 0
|
||||
- _TransparentBackfaceEnable: 0
|
||||
- _TransparentCullMode: 2
|
||||
- _TransparentDepthPostpassEnable: 0
|
||||
- _TransparentDepthPrepassEnable: 0
|
||||
- _TransparentSortPriority: 0
|
||||
- _TransparentWritingMotionVec: 0
|
||||
- _TransparentZWrite: 0
|
||||
- _USE_TRIPLANAR_UVS: 0
|
||||
- _UVSec: 0
|
||||
- _UseBackColor: 0
|
||||
- _UseShadowThreshold: 0
|
||||
- _Use_Emission: 0
|
||||
- _Use_Metallic_Texture: 0
|
||||
- _WorkflowMode: 1
|
||||
- _ZTest: 4
|
||||
- _ZTestDepthEqualForOpaque: 3
|
||||
- _ZTestGBuffer: 4
|
||||
- _ZTestTransparent: 4
|
||||
- _ZWrite: 1
|
||||
- _ZWriteControl: 0
|
||||
- _size: 0
|
||||
- _smoothness: 0.388
|
||||
m_Colors:
|
||||
- _BackColor: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _Back_Color: {r: 8, g: 3.984314, b: 0, a: 0}
|
||||
- _BaseColor: {r: 0.27038085, g: 0.6601244, b: 0.8773585, a: 1}
|
||||
- _BurnColor: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _Burn_Color: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _Color: {r: 0.27038082, g: 0.66012436, b: 0.8773585, a: 1}
|
||||
- _DisplacementAxis: {r: 0, g: 1, b: 0, a: 0}
|
||||
- _DoubleSidedConstants: {r: 1, g: 1, b: -1, a: 0}
|
||||
- _EmberColor: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _Ember_Color: {r: 7.999999, g: 0, b: 7.5079913, a: 0}
|
||||
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _Forward: {r: 0, g: 0, b: 1, a: 0}
|
||||
- _LocalPos1: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _LocalPos2: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _Offset: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _Right: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _Scale: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _SpecColor: {r: 0.2, g: 0.2, b: 0.2, a: 1}
|
||||
- _Tiling: {r: 1, g: 1, b: 0, a: 0}
|
||||
- _Up: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _WorldSpacePos: {r: 0, g: 0, b: 0, a: 0}
|
||||
m_BuildTextureStacks: []
|
||||
m_AllowLocking: 1
|
||||
--- !u!114 &4889104241632654758
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 11
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
version: 10
|
||||
--- !u!114 &7339092782627175321
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 11
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
version: 13
|
||||
hdPluginSubTargetMaterialVersions:
|
||||
m_Keys: []
|
||||
m_Values:
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: ff188f58422043f489060e28a5e4e0c0
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,290 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!114 &-7556890858160364350
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 11
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
version: 13
|
||||
hdPluginSubTargetMaterialVersions:
|
||||
m_Keys: []
|
||||
m_Values:
|
||||
--- !u!114 &-6525371121564429377
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 11
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: 639247ca83abc874e893eb93af2b5e44, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
version: 0
|
||||
--- !u!21 &2100000
|
||||
Material:
|
||||
serializedVersion: 8
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name: GridOrange_01_Mat
|
||||
m_Shader: {fileID: -6465566751694194690, guid: ed9d2c7cebcf9be4e9fa52a4b0479222, type: 3}
|
||||
m_Parent: {fileID: 0}
|
||||
m_ModifiedSerializedProperties: 0
|
||||
m_ValidKeywords: []
|
||||
m_InvalidKeywords:
|
||||
- _DISABLE_SSR_TRANSPARENT
|
||||
- _EMISSION
|
||||
m_LightmapFlags: 6
|
||||
m_EnableInstancingVariants: 0
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: 2000
|
||||
stringTagMap: {}
|
||||
disabledShaderPasses:
|
||||
- TransparentDepthPrepass
|
||||
- TransparentDepthPostpass
|
||||
- TransparentBackface
|
||||
- RayTracingPrepass
|
||||
- MOTIONVECTORS
|
||||
m_LockedProperties:
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _BaseMap:
|
||||
m_Texture: {fileID: 2800000, guid: d9c0dd5cdac07b145be73329e489869a, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0.004, y: 0}
|
||||
- _BumpMap:
|
||||
m_Texture: {fileID: 2800000, guid: c5c221ed57a3bf6488f8eba0db28a004, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailAlbedoMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailMask:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailNormalMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _EmissionMap:
|
||||
m_Texture: {fileID: 2800000, guid: d4d6919451fe3e24388816386a6d15a4, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _GuideTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _Guide_Noise:
|
||||
m_Texture: {fileID: 2800000, guid: 03b9f416729b1844387ea6c6ba41b746, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MainTex:
|
||||
m_Texture: {fileID: 2800000, guid: d9c0dd5cdac07b145be73329e489869a, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0.004, y: 0}
|
||||
- _MetallicGlossMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _OcclusionMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ParallaxMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _SpecGlossMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_Lightmaps:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_LightmapsInd:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_ShadowMasks:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _AddPrecomputedVelocity: 0
|
||||
- _AlphaClip: 0
|
||||
- _AlphaCutoffEnable: 0
|
||||
- _AlphaDstBlend: 0
|
||||
- _AlphaSrcBlend: 1
|
||||
- _AlphaToMask: 0
|
||||
- _AlphaToMaskInspectorValue: 0
|
||||
- _Angle: 0
|
||||
- _BUILTIN_AlphaClip: 1
|
||||
- _BUILTIN_Blend: 0
|
||||
- _BUILTIN_CullMode: 2
|
||||
- _BUILTIN_DstBlend: 0
|
||||
- _BUILTIN_QueueControl: 0
|
||||
- _BUILTIN_QueueOffset: 0
|
||||
- _BUILTIN_SrcBlend: 1
|
||||
- _BUILTIN_Surface: 0
|
||||
- _BUILTIN_ZTest: 4
|
||||
- _BUILTIN_ZWrite: 1
|
||||
- _BUILTIN_ZWriteControl: 1
|
||||
- _Blend: 0
|
||||
- _BlendMode: 0
|
||||
- _BlendModePreserveSpecular: 0
|
||||
- _BumpScale: 1
|
||||
- _BurnHardness: 0
|
||||
- _BurnOffset: 0
|
||||
- _Burn_Hardness: 0
|
||||
- _Burn_Offset: 0
|
||||
- _CastShadows: 1
|
||||
- _ClearCoatMask: 0
|
||||
- _ClearCoatSmoothness: 0
|
||||
- _ConservativeDepthOffsetEnable: 0
|
||||
- _Cull: 2
|
||||
- _CullMode: 2
|
||||
- _CullModeForward: 2
|
||||
- _Cutoff: 0
|
||||
- _DepthOffsetEnable: 0
|
||||
- _DetailAlbedoMapScale: 1
|
||||
- _DetailNormalMapScale: 1
|
||||
- _DisplacementOffset: 0
|
||||
- _DisplacementPerVertex: 0
|
||||
- _DisplacementRandomOffsetScale: 0
|
||||
- _DisplacementRotationDegrees: 0
|
||||
- _DisplacementSmoothness: 0
|
||||
- _DoubleSidedEnable: 0
|
||||
- _DoubleSidedGIMode: 0
|
||||
- _DoubleSidedNormalMode: 2
|
||||
- _DstBlend: 0
|
||||
- _EdgeSmoothness: 0.313
|
||||
- _EmberOffset: 0
|
||||
- _EmberSmoothness: 0
|
||||
- _EmberWidth: 0
|
||||
- _Ember_Offset: 0
|
||||
- _Ember_Smoothness: 0.02
|
||||
- _Ember_Width: 0.02
|
||||
- _EnableBlendModePreserveSpecularLighting: 1
|
||||
- _EnableFogOnTransparent: 1
|
||||
- _EnvironmentReflections: 0
|
||||
- _ExcludeFromTUAndAA: 0
|
||||
- _GlossMapScale: 1
|
||||
- _Glossiness: 0.477
|
||||
- _GlossyReflections: 0
|
||||
- _GuideStrength: 0
|
||||
- _GuideTiling: 1
|
||||
- _Guide_Strength: 0.13
|
||||
- _Guide_Tilling: 18
|
||||
- _INVERT: 0
|
||||
- _Invert: 0
|
||||
- _Length: 0
|
||||
- _Metallic: 0
|
||||
- _Mode: 0
|
||||
- _OcclusionStrength: 0
|
||||
- _OpaqueCullMode: 2
|
||||
- _Parallax: 0.02
|
||||
- _QueueControl: 0
|
||||
- _QueueOffset: 0
|
||||
- _Radius1: 0
|
||||
- _Radius2: 0
|
||||
- _RayTracing: 0
|
||||
- _ReceiveShadows: 1
|
||||
- _ReceivesSSR: 1
|
||||
- _ReceivesSSRTransparent: 0
|
||||
- _RefractionModel: 0
|
||||
- _RenderQueueType: 1
|
||||
- _RequireSplitLighting: 0
|
||||
- _Smoothness: 0
|
||||
- _SmoothnessTextureChannel: 0
|
||||
- _Smoothness_1: 0
|
||||
- _SpecularHighlights: 1
|
||||
- _SrcBlend: 1
|
||||
- _StencilRef: 0
|
||||
- _StencilRefDepth: 8
|
||||
- _StencilRefDistortionVec: 4
|
||||
- _StencilRefGBuffer: 10
|
||||
- _StencilRefMV: 40
|
||||
- _StencilWriteMask: 6
|
||||
- _StencilWriteMaskDepth: 8
|
||||
- _StencilWriteMaskDistortionVec: 4
|
||||
- _StencilWriteMaskGBuffer: 14
|
||||
- _StencilWriteMaskMV: 40
|
||||
- _SupportDecals: 1
|
||||
- _Surface: 0
|
||||
- _SurfaceType: 0
|
||||
- _TransparentBackfaceEnable: 0
|
||||
- _TransparentCullMode: 2
|
||||
- _TransparentDepthPostpassEnable: 0
|
||||
- _TransparentDepthPrepassEnable: 0
|
||||
- _TransparentSortPriority: 0
|
||||
- _TransparentWritingMotionVec: 0
|
||||
- _TransparentZWrite: 0
|
||||
- _USE_TRIPLANAR_UVS: 0
|
||||
- _UVSec: 0
|
||||
- _UseBackColor: 0
|
||||
- _UseShadowThreshold: 0
|
||||
- _Use_Emission: 0
|
||||
- _Use_Metallic_Texture: 0
|
||||
- _WorkflowMode: 1
|
||||
- _ZTest: 4
|
||||
- _ZTestDepthEqualForOpaque: 3
|
||||
- _ZTestGBuffer: 4
|
||||
- _ZTestTransparent: 4
|
||||
- _ZWrite: 1
|
||||
- _ZWriteControl: 1
|
||||
- _size: 0
|
||||
- _smoothness: 0.388
|
||||
m_Colors:
|
||||
- _BackColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _Back_Color: {r: 8, g: 3.984314, b: 0, a: 0}
|
||||
- _BaseColor: {r: 1, g: 0.5985916, b: 0, a: 1}
|
||||
- _BurnColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _Burn_Color: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _Color: {r: 1, g: 0.5985916, b: 0, a: 1}
|
||||
- _Direciton: {r: 14.96, g: 741.9, b: 0, a: 0}
|
||||
- _DisplacementAxis: {r: 0, g: 1, b: 0, a: 0}
|
||||
- _DoubleSidedConstants: {r: 1, g: 1, b: -1, a: 0}
|
||||
- _EmberColor: {r: 10, g: 1.8, b: 0.2, a: 1}
|
||||
- _Ember_Color: {r: 7.999999, g: 0, b: 7.5079913, a: 0}
|
||||
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _Forward: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _LocalPos1: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _LocalPos2: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _Offset: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _Offsets: {r: 0.009, g: 0.003, b: 0.006, a: 0}
|
||||
- _Right: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _Scale: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _SpecColor: {r: 0.2, g: 0.2, b: 0.2, a: 1}
|
||||
- _Tiling: {r: 1, g: 1, b: 0, a: 0}
|
||||
- _Up: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _WorldSpacePos: {r: 0, g: 0, b: 0, a: 0}
|
||||
m_BuildTextureStacks: []
|
||||
m_AllowLocking: 1
|
||||
--- !u!114 &4628965128947302990
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 11
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
version: 10
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 7ab977a21c92388468ee65ad1c0e5a78
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,286 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!114 &-5788133031919579493
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 11
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
version: 10
|
||||
--- !u!21 &2100000
|
||||
Material:
|
||||
serializedVersion: 8
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name: GridWhite_01_Mat
|
||||
m_Shader: {fileID: -6465566751694194690, guid: ed9d2c7cebcf9be4e9fa52a4b0479222, type: 3}
|
||||
m_Parent: {fileID: 0}
|
||||
m_ModifiedSerializedProperties: 0
|
||||
m_ValidKeywords: []
|
||||
m_InvalidKeywords:
|
||||
- _DISABLE_SSR_TRANSPARENT
|
||||
- _EMISSION
|
||||
m_LightmapFlags: 6
|
||||
m_EnableInstancingVariants: 0
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: 2000
|
||||
stringTagMap: {}
|
||||
disabledShaderPasses:
|
||||
- TransparentDepthPrepass
|
||||
- TransparentDepthPostpass
|
||||
- TransparentBackface
|
||||
- RayTracingPrepass
|
||||
- MOTIONVECTORS
|
||||
m_LockedProperties:
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _BaseMap:
|
||||
m_Texture: {fileID: 2800000, guid: d9c0dd5cdac07b145be73329e489869a, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0.004, y: 0}
|
||||
- _BumpMap:
|
||||
m_Texture: {fileID: 2800000, guid: c5c221ed57a3bf6488f8eba0db28a004, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailAlbedoMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailMask:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailNormalMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _EmissionMap:
|
||||
m_Texture: {fileID: 2800000, guid: d4d6919451fe3e24388816386a6d15a4, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _GuideTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _Guide_Noise:
|
||||
m_Texture: {fileID: 2800000, guid: 03b9f416729b1844387ea6c6ba41b746, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MainTex:
|
||||
m_Texture: {fileID: 2800000, guid: d9c0dd5cdac07b145be73329e489869a, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0.004, y: 0}
|
||||
- _MetallicGlossMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _OcclusionMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ParallaxMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _SpecGlossMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_Lightmaps:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_LightmapsInd:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_ShadowMasks:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _AddPrecomputedVelocity: 0
|
||||
- _AlphaClip: 0
|
||||
- _AlphaCutoffEnable: 0
|
||||
- _AlphaDstBlend: 0
|
||||
- _AlphaSrcBlend: 1
|
||||
- _AlphaToMask: 0
|
||||
- _AlphaToMaskInspectorValue: 0
|
||||
- _Angle: 0
|
||||
- _BUILTIN_AlphaClip: 1
|
||||
- _BUILTIN_Blend: 0
|
||||
- _BUILTIN_CullMode: 2
|
||||
- _BUILTIN_DstBlend: 0
|
||||
- _BUILTIN_QueueControl: 0
|
||||
- _BUILTIN_QueueOffset: 0
|
||||
- _BUILTIN_SrcBlend: 1
|
||||
- _BUILTIN_Surface: 0
|
||||
- _BUILTIN_ZTest: 4
|
||||
- _BUILTIN_ZWrite: 1
|
||||
- _BUILTIN_ZWriteControl: 1
|
||||
- _Blend: 0
|
||||
- _BlendMode: 0
|
||||
- _BlendModePreserveSpecular: 0
|
||||
- _BumpScale: 1
|
||||
- _BurnHardness: 0
|
||||
- _BurnOffset: 0
|
||||
- _Burn_Hardness: 0
|
||||
- _Burn_Offset: 0
|
||||
- _CastShadows: 1
|
||||
- _ClearCoatMask: 0
|
||||
- _ClearCoatSmoothness: 0
|
||||
- _ConservativeDepthOffsetEnable: 0
|
||||
- _Cull: 2
|
||||
- _CullMode: 2
|
||||
- _CullModeForward: 2
|
||||
- _Cutoff: 0
|
||||
- _DepthOffsetEnable: 0
|
||||
- _DetailAlbedoMapScale: 1
|
||||
- _DetailNormalMapScale: 1
|
||||
- _DisplacementOffset: 0
|
||||
- _DisplacementPerVertex: 0
|
||||
- _DisplacementRandomOffsetScale: 0
|
||||
- _DisplacementRotationDegrees: 0
|
||||
- _DisplacementSmoothness: 0
|
||||
- _DoubleSidedEnable: 0
|
||||
- _DoubleSidedGIMode: 0
|
||||
- _DoubleSidedNormalMode: 2
|
||||
- _DstBlend: 0
|
||||
- _EmberOffset: 0
|
||||
- _EmberSmoothness: 0
|
||||
- _EmberWidth: 0
|
||||
- _Ember_Offset: 0
|
||||
- _Ember_Smoothness: 0.02
|
||||
- _Ember_Width: 0.02
|
||||
- _EnableBlendModePreserveSpecularLighting: 1
|
||||
- _EnableFogOnTransparent: 1
|
||||
- _EnvironmentReflections: 0
|
||||
- _ExcludeFromTUAndAA: 0
|
||||
- _GlossMapScale: 1
|
||||
- _Glossiness: 0.477
|
||||
- _GlossyReflections: 0
|
||||
- _GuideStrength: 0
|
||||
- _GuideTiling: 0
|
||||
- _Guide_Strength: 0.13
|
||||
- _Guide_Tilling: 18
|
||||
- _INVERT: 0
|
||||
- _Invert: 0
|
||||
- _Length: 0
|
||||
- _Metallic: 0
|
||||
- _Mode: 0
|
||||
- _OcclusionStrength: 0
|
||||
- _OpaqueCullMode: 2
|
||||
- _Parallax: 0.02
|
||||
- _QueueControl: 0
|
||||
- _QueueOffset: 0
|
||||
- _Radius1: 0
|
||||
- _Radius2: 0
|
||||
- _RayTracing: 0
|
||||
- _ReceiveShadows: 1
|
||||
- _ReceivesSSR: 1
|
||||
- _ReceivesSSRTransparent: 0
|
||||
- _RefractionModel: 0
|
||||
- _RenderQueueType: 1
|
||||
- _RequireSplitLighting: 0
|
||||
- _Smoothness: 0
|
||||
- _SmoothnessTextureChannel: 0
|
||||
- _SpecularHighlights: 1
|
||||
- _SrcBlend: 1
|
||||
- _StencilRef: 0
|
||||
- _StencilRefDepth: 8
|
||||
- _StencilRefDistortionVec: 4
|
||||
- _StencilRefGBuffer: 10
|
||||
- _StencilRefMV: 40
|
||||
- _StencilWriteMask: 6
|
||||
- _StencilWriteMaskDepth: 8
|
||||
- _StencilWriteMaskDistortionVec: 4
|
||||
- _StencilWriteMaskGBuffer: 14
|
||||
- _StencilWriteMaskMV: 40
|
||||
- _SupportDecals: 1
|
||||
- _Surface: 0
|
||||
- _SurfaceType: 0
|
||||
- _TransparentBackfaceEnable: 0
|
||||
- _TransparentCullMode: 2
|
||||
- _TransparentDepthPostpassEnable: 0
|
||||
- _TransparentDepthPrepassEnable: 0
|
||||
- _TransparentSortPriority: 0
|
||||
- _TransparentWritingMotionVec: 0
|
||||
- _TransparentZWrite: 0
|
||||
- _USE_TRIPLANAR_UVS: 0
|
||||
- _UVSec: 0
|
||||
- _UseBackColor: 0
|
||||
- _UseShadowThreshold: 0
|
||||
- _Use_Emission: 0
|
||||
- _Use_Metallic_Texture: 0
|
||||
- _WorkflowMode: 1
|
||||
- _ZTest: 4
|
||||
- _ZTestDepthEqualForOpaque: 3
|
||||
- _ZTestGBuffer: 4
|
||||
- _ZTestTransparent: 4
|
||||
- _ZWrite: 1
|
||||
- _ZWriteControl: 0
|
||||
- _size: 0
|
||||
- _smoothness: 0.388
|
||||
m_Colors:
|
||||
- _BackColor: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _Back_Color: {r: 8, g: 3.984314, b: 0, a: 0}
|
||||
- _BaseColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _BurnColor: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _Burn_Color: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _Color: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _DisplacementAxis: {r: 0, g: 1, b: 0, a: 0}
|
||||
- _DoubleSidedConstants: {r: 1, g: 1, b: -1, a: 0}
|
||||
- _EmberColor: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _Ember_Color: {r: 7.999999, g: 0, b: 7.5079913, a: 0}
|
||||
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _Forward: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _LocalPos1: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _LocalPos2: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _Offset: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _Right: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _Scale: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _SpecColor: {r: 0.2, g: 0.2, b: 0.2, a: 1}
|
||||
- _Tiling: {r: 1, g: 1, b: 0, a: 0}
|
||||
- _Up: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _WorldSpacePos: {r: 0, g: 0, b: 0, a: 0}
|
||||
m_BuildTextureStacks: []
|
||||
m_AllowLocking: 1
|
||||
--- !u!114 &5011123300232846696
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 11
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: 639247ca83abc874e893eb93af2b5e44, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
version: 0
|
||||
--- !u!114 &7258388284191213897
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 11
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
version: 13
|
||||
hdPluginSubTargetMaterialVersions:
|
||||
m_Keys: []
|
||||
m_Values:
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: dbf898c9f9c4a2d46aa6336e23caeb61
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: bd0594e05c55e5e4eac6832e7e79ad14
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 5d3c85b6cf230664688e39ecdaf1b5ba
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 8ff0287120c4ebb45a768b17b64f7dd4
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
Binary file not shown.
@@ -0,0 +1,924 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 063aa479676c4084ebf187660ca0a7b8
|
||||
ModelImporter:
|
||||
serializedVersion: 20200
|
||||
internalIDToNameTable:
|
||||
- first:
|
||||
74: -2702400367771620057
|
||||
second: InAir
|
||||
externalObjects: {}
|
||||
materials:
|
||||
materialImportMode: 2
|
||||
materialName: 0
|
||||
materialSearch: 1
|
||||
materialLocation: 1
|
||||
animations:
|
||||
legacyGenerateAnimations: 4
|
||||
bakeSimulation: 0
|
||||
resampleCurves: 1
|
||||
optimizeGameObjects: 0
|
||||
motionNodeName:
|
||||
rigImportErrors:
|
||||
rigImportWarnings: "Copied Avatar Rig Configuration mis-match. Bone length in
|
||||
copied configuration does not match position in animation file:\n\t'Left_UpperLeg'
|
||||
: position error = 3.626586 mm\n\t'Left_Foot' : position error = 12.542060
|
||||
mm\n\t'Left_Toes' : position error = 30.265436 mm\n\t'Right_UpperLeg' : position
|
||||
error = 3.626659 mm\n\t'Right_Foot' : position error = 12.543159 mm\n\t'Right_Toes'
|
||||
: position error = 30.260939 mm\n"
|
||||
animationImportErrors:
|
||||
animationImportWarnings:
|
||||
animationRetargetingWarnings:
|
||||
animationDoRetargetingWarnings: 0
|
||||
importAnimatedCustomProperties: 0
|
||||
importConstraints: 0
|
||||
animationCompression: 1
|
||||
animationRotationError: 0.25
|
||||
animationPositionError: 0.05
|
||||
animationScaleError: 0.05
|
||||
animationWrapMode: 0
|
||||
extraExposedTransformPaths: []
|
||||
extraUserProperties: []
|
||||
clipAnimations:
|
||||
- serializedVersion: 16
|
||||
name: InAir
|
||||
takeName: InAir
|
||||
internalID: 0
|
||||
firstFrame: 0
|
||||
lastFrame: 80
|
||||
wrapMode: 0
|
||||
orientationOffsetY: 0
|
||||
level: 0
|
||||
cycleOffset: 0
|
||||
loop: 0
|
||||
hasAdditiveReferencePose: 0
|
||||
loopTime: 1
|
||||
loopBlend: 1
|
||||
loopBlendOrientation: 1
|
||||
loopBlendPositionY: 1
|
||||
loopBlendPositionXZ: 1
|
||||
keepOriginalOrientation: 1
|
||||
keepOriginalPositionY: 1
|
||||
keepOriginalPositionXZ: 1
|
||||
heightFromFeet: 0
|
||||
mirror: 0
|
||||
bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
|
||||
curves: []
|
||||
events: []
|
||||
transformMask: []
|
||||
maskType: 3
|
||||
maskSource: {instanceID: 0}
|
||||
additiveReferencePoseFrame: 0
|
||||
isReadable: 0
|
||||
meshes:
|
||||
lODScreenPercentages: []
|
||||
globalScale: 1
|
||||
meshCompression: 0
|
||||
addColliders: 0
|
||||
useSRGBMaterialColor: 1
|
||||
sortHierarchyByName: 1
|
||||
importVisibility: 1
|
||||
importBlendShapes: 1
|
||||
importCameras: 1
|
||||
importLights: 1
|
||||
fileIdsGeneration: 2
|
||||
swapUVChannels: 0
|
||||
generateSecondaryUV: 0
|
||||
useFileUnits: 1
|
||||
keepQuads: 0
|
||||
weldVertices: 1
|
||||
bakeAxisConversion: 0
|
||||
preserveHierarchy: 0
|
||||
skinWeightsMode: 0
|
||||
maxBonesPerVertex: 4
|
||||
minBoneWeight: 0.001
|
||||
meshOptimizationFlags: -1
|
||||
indexFormat: 0
|
||||
secondaryUVAngleDistortion: 8
|
||||
secondaryUVAreaDistortion: 15.000001
|
||||
secondaryUVHardAngle: 88
|
||||
secondaryUVMarginMethod: 1
|
||||
secondaryUVMinLightmapResolution: 40
|
||||
secondaryUVMinObjectScale: 1
|
||||
secondaryUVPackMargin: 4
|
||||
useFileScale: 1
|
||||
tangentSpace:
|
||||
normalSmoothAngle: 60
|
||||
normalImportMode: 0
|
||||
tangentImportMode: 3
|
||||
normalCalculationMode: 4
|
||||
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0
|
||||
blendShapeNormalImportMode: 1
|
||||
normalSmoothingSource: 0
|
||||
referencedClips: []
|
||||
importAnimation: 1
|
||||
humanDescription:
|
||||
serializedVersion: 3
|
||||
human:
|
||||
- boneName: 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: Right_UpperLeg
|
||||
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: Right_LowerLeg
|
||||
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: Right_Foot
|
||||
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: Right_Toes
|
||||
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: 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: 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: UpperChest
|
||||
humanName: UpperChest
|
||||
limit:
|
||||
min: {x: 0, y: 0, z: 0}
|
||||
max: {x: 0, y: 0, z: 0}
|
||||
value: {x: 0, y: 0, z: 0}
|
||||
length: 0
|
||||
modified: 0
|
||||
- boneName: Right_Shoulder
|
||||
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: Right_UpperArm
|
||||
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: Right_LowerArm
|
||||
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: Right_Hand
|
||||
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: 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: 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: 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: Left_Shoulder
|
||||
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: Left_UpperArm
|
||||
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: Left_LowerArm
|
||||
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: Left_Hand
|
||||
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: Left_UpperLeg
|
||||
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: Left_LowerLeg
|
||||
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: Left_Foot
|
||||
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: Left_Toes
|
||||
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: Left_ThumbProximal
|
||||
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: Left_ThumbIntermediate
|
||||
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: Left_ThumbDistal
|
||||
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: Left_IndexProximal
|
||||
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: Left_IndexIntermediate
|
||||
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: Left_IndexDistal
|
||||
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: Left_MiddleProximal
|
||||
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: Left_MiddleIntermediate
|
||||
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: Left_MiddleDistal
|
||||
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: Left_RingProximal
|
||||
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: Left_RingIntermediate
|
||||
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: Left_RingDistal
|
||||
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: Left_PinkyProximal
|
||||
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: Left_PinkyIntermediate
|
||||
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: Left_PinkyDistal
|
||||
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: Right_ThumbProximal
|
||||
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: Right_ThumbIntermediate
|
||||
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: Right_ThumbDistal
|
||||
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: Right_IndexProximal
|
||||
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: Right_IndexIntermediate
|
||||
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: Right_IndexDistal
|
||||
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: Right_MiddleProximal
|
||||
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: Right_MiddleIntermediate
|
||||
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: Right_MiddleDistal
|
||||
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: Right_RingProximal
|
||||
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: Right_RingIntermediate
|
||||
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: Right_RingDistal
|
||||
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: Right_PinkyProximal
|
||||
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: Right_PinkyIntermediate
|
||||
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: Right_PinkyDistal
|
||||
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: Mannequin(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: Geometry
|
||||
parentName: Mannequin(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: Mannequin_Mesh
|
||||
parentName: Geometry
|
||||
position: {x: -0, y: 0, z: 0}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Skeleton
|
||||
parentName: Mannequin(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: Hips
|
||||
parentName: Skeleton
|
||||
position: {x: -0, y: 0.9810986, z: -0.01590455}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_UpperLeg
|
||||
parentName: Hips
|
||||
position: {x: -0.08610317, y: -0.053458035, z: -0.011470641}
|
||||
rotation: {x: 0.999839, y: -0.01775374, z: 0.000046300094, w: -0.0026074864}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_LowerLeg
|
||||
parentName: Left_UpperLeg
|
||||
position: {x: -2.9864513e-16, y: 0.4133444, z: -5.4956034e-17}
|
||||
rotation: {x: 0.034046065, y: 2.2687323e-19, z: 7.728622e-21, w: 0.9994203}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_Foot
|
||||
parentName: Left_LowerLeg
|
||||
position: {x: 0.0000000017320426, y: 0.41403946, z: 7.141509e-16}
|
||||
rotation: {x: -0.035700925, y: 0.049957544, z: -0.019575229, w: 0.9979211}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_Toes
|
||||
parentName: Left_Foot
|
||||
position: {x: 7.105427e-17, y: 0.07224803, z: -0.118065506}
|
||||
rotation: {x: -0.7071068, y: 8.7157646e-33, z: -8.7157646e-33, w: 0.7071068}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_ToesEnd
|
||||
parentName: Left_Toes
|
||||
position: {x: -0.0010026174, y: 0.06423476, z: 0.016843978}
|
||||
rotation: {x: 0.7070656, y: -0.0076321815, z: -0.0076321815, w: 0.7070656}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_UpperLeg
|
||||
parentName: Hips
|
||||
position: {x: 0.086103186, y: -0.053458147, z: -0.0114706475}
|
||||
rotation: {x: 0.0026075041, y: 0.000046300407, z: 0.01775374, w: 0.999839}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_LowerLeg
|
||||
parentName: Right_UpperLeg
|
||||
position: {x: 0.0000004514609, y: -0.41334414, z: 0.000000025994435}
|
||||
rotation: {x: 0.034046065, y: 2.2687323e-19, z: 7.728622e-21, w: 0.9994203}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_Foot
|
||||
parentName: Right_LowerLeg
|
||||
position: {x: -0.0000007472542, y: -0.41403967, z: -0.000000032847502}
|
||||
rotation: {x: -0.035700925, y: 0.049957544, z: -0.019575229, w: 0.9979211}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_Toes
|
||||
parentName: Right_Foot
|
||||
position: {x: -0.00000015643121, y: -0.07224799, z: 0.11807}
|
||||
rotation: {x: -0.7071068, y: 0, z: -0, w: 0.7071068}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_ToesEnd
|
||||
parentName: Right_Toes
|
||||
position: {x: 0.0010031584, y: -0.06423059, z: -0.016843898}
|
||||
rotation: {x: 0.7070656, y: -0.0076321815, z: -0.0076321815, w: 0.7070656}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Spine
|
||||
parentName: Hips
|
||||
position: {x: -0, y: 0.058229383, z: 0.0012229546}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Chest
|
||||
parentName: Spine
|
||||
position: {x: -0, y: 0.1034043, z: 0}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: UpperChest
|
||||
parentName: Chest
|
||||
position: {x: -0, y: 0.1034043, z: 0}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_Shoulder
|
||||
parentName: UpperChest
|
||||
position: {x: -0.0009571358, y: 0.19149224, z: -0.0087277945}
|
||||
rotation: {x: -0.0049494267, y: -0.113521874, z: 0.043275386, w: 0.99258024}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_UpperArm
|
||||
parentName: Left_Shoulder
|
||||
position: {x: -0.16743502, y: -5.684341e-16, z: -2.664535e-17}
|
||||
rotation: {x: 0.12673509, y: 0.03332071, z: 0.6809724, w: 0.72048914}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_LowerArm
|
||||
parentName: Left_UpperArm
|
||||
position: {x: -2.8421706e-16, y: 0.28508067, z: 0}
|
||||
rotation: {x: 0.020536564, y: 0.00832135, z: -0.020624585, w: 0.9995417}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_Hand
|
||||
parentName: Left_LowerArm
|
||||
position: {x: -2.4123817e-10, y: 0.24036221, z: -1.4210853e-16}
|
||||
rotation: {x: -0.047397237, y: -0.24003562, z: 0.013464749, w: 0.9695128}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_IndexProximal
|
||||
parentName: Left_Hand
|
||||
position: {x: 0.007815497, y: 0.0918443, z: 0.02657316}
|
||||
rotation: {x: -0.0000789147, y: -0.7104809, z: -0.006305193, w: 0.70368826}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_IndexIntermediate
|
||||
parentName: Left_IndexProximal
|
||||
position: {x: 9.079803e-16, y: 0.04209777, z: 3.2607592e-16}
|
||||
rotation: {x: 0.030199163, y: 0.00000005960465, z: -0.00000038841978, w: 0.9995439}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_IndexDistal
|
||||
parentName: Left_IndexIntermediate
|
||||
position: {x: -8.20111e-16, y: 0.02513925, z: -4.317065e-16}
|
||||
rotation: {x: 0.03945603, y: 0.000000016383924, z: 0.0000000332638, w: 0.9992213}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_IndexDistalEnd
|
||||
parentName: Left_IndexDistal
|
||||
position: {x: -1.1581012e-16, y: 0.024609203, z: -6.661337e-17}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_MiddleProximal
|
||||
parentName: Left_Hand
|
||||
position: {x: 0.012847862, y: 0.08609763, z: 0.003435423}
|
||||
rotation: {x: -0.004090429, y: -0.6610811, z: -0.004001968, w: 0.7502927}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_MiddleIntermediate
|
||||
parentName: Left_MiddleProximal
|
||||
position: {x: 2.7261607e-16, y: 0.051279362, z: 5.988264e-17}
|
||||
rotation: {x: 0.026233751, y: -0.000000029802322, z: -0.0000007133931, w: 0.99965584}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_MiddleDistal
|
||||
parentName: Left_MiddleIntermediate
|
||||
position: {x: -7.199101e-17, y: 0.028284006, z: -4.93648e-17}
|
||||
rotation: {x: 0.03347514, y: -0, z: -0, w: 0.9994396}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_MiddleDistalEnd
|
||||
parentName: Left_MiddleDistal
|
||||
position: {x: -1.7763565e-16, y: 0.023346113, z: -7.105426e-17}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_PinkyProximal
|
||||
parentName: Left_Hand
|
||||
position: {x: 0.004436847, y: 0.07288173, z: -0.029359013}
|
||||
rotation: {x: -0.02007038, y: -0.5504896, z: -0.008246153, w: 0.83456}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_PinkyIntermediate
|
||||
parentName: Left_PinkyProximal
|
||||
position: {x: 1.9539922e-16, y: 0.032272622, z: -1.4210853e-16}
|
||||
rotation: {x: 0.028115956, y: -0.00000008940699, z: -0.0000005941839, w: 0.9996047}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_PinkyDistal
|
||||
parentName: Left_PinkyIntermediate
|
||||
position: {x: -3.5527133e-17, y: 0.020224448, z: -7.1054265e-17}
|
||||
rotation: {x: 0.03643686, y: 0.00000014611446, z: 0.00000018696, w: 0.999336}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_PinkyDistalEnd
|
||||
parentName: Left_PinkyDistal
|
||||
position: {x: -1.2434495e-16, y: 0.018519057, z: 0}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_RingProximal
|
||||
parentName: Left_Hand
|
||||
position: {x: 0.009525569, y: 0.08161553, z: -0.012242405}
|
||||
rotation: {x: -0.017654313, y: -0.6026994, z: -0.0040520057, w: 0.79776275}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_RingIntermediate
|
||||
parentName: Left_RingProximal
|
||||
position: {x: 3.3750777e-16, y: 0.043630484, z: -1.4210853e-16}
|
||||
rotation: {x: 0.023556013, y: 0.00000026822087, z: 0.0000007636844, w: 0.99972254}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_RingDistal
|
||||
parentName: Left_RingIntermediate
|
||||
position: {x: 1.7763566e-17, y: 0.027115494, z: -1.065814e-16}
|
||||
rotation: {x: 0.03908592, y: -0.000000019744585, z: 0.00000042049942, w: 0.9992359}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_RingDistalEnd
|
||||
parentName: Left_RingDistal
|
||||
position: {x: -7.105426e-17, y: 0.02095726, z: -7.105426e-17}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_ThumbProximal
|
||||
parentName: Left_Hand
|
||||
position: {x: -0.00080496486, y: 0.028816883, z: 0.023514476}
|
||||
rotation: {x: 0.1796032, y: 0.8841741, z: 0.4239896, w: -0.07881452}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_ThumbIntermediate
|
||||
parentName: Left_ThumbProximal
|
||||
position: {x: 2.4357445e-15, y: 0.027578257, z: 0.0038183592}
|
||||
rotation: {x: 0.1278054, y: -0, z: -0, w: 0.9917993}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_ThumbDistal
|
||||
parentName: Left_ThumbIntermediate
|
||||
position: {x: -2.2737365e-15, y: 0.044597257, z: -0.006869915}
|
||||
rotation: {x: -0.045421924, y: -0.00000036741366, z: -0.0000008691409, w: 0.9989679}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_ThumbDistalEnd
|
||||
parentName: Left_ThumbDistal
|
||||
position: {x: -4.2632555e-16, y: 0.029458016, z: 0}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Neck
|
||||
parentName: UpperChest
|
||||
position: {x: -0, y: 0.25104657, z: -0.015329581}
|
||||
rotation: {x: 0.060688436, y: -0, z: -0, w: 0.9981568}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Head
|
||||
parentName: Neck
|
||||
position: {x: -0, y: 0.12747401, z: 0}
|
||||
rotation: {x: -0.060688436, y: 0, z: -0, w: 0.9981568}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Jaw
|
||||
parentName: Head
|
||||
position: {x: -0, y: -0.00763539, z: 0.012895278}
|
||||
rotation: {x: 0.15949209, y: 0.68888485, z: 0.15949209, w: 0.68888485}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_Eye
|
||||
parentName: Head
|
||||
position: {x: -0.03330326, y: 0.034598116, z: 0.0867403}
|
||||
rotation: {x: 0, y: 0.7071068, z: 0, w: 0.7071068}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_Eye
|
||||
parentName: Head
|
||||
position: {x: 0.033303294, y: 0.03459628, z: 0.0867403}
|
||||
rotation: {x: 0.7071068, y: 4.3297806e-17, z: 0.7071068, w: -4.3297806e-17}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Neck_Twist_A
|
||||
parentName: Neck
|
||||
position: {x: -0, y: 0.063737005, z: 0}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_Shoulder
|
||||
parentName: UpperChest
|
||||
position: {x: 0.0009571358, y: 0.19149381, z: -0.008727803}
|
||||
rotation: {x: 0.99258024, y: -0.04327539, z: -0.113521874, w: 0.004949396}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_UpperArm
|
||||
parentName: Right_Shoulder
|
||||
position: {x: 0.16743432, y: -0.0000022099182, z: 0.00000012213746}
|
||||
rotation: {x: 0.1267345, y: 0.033320885, z: 0.68096745, w: 0.720494}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_LowerArm
|
||||
parentName: Right_UpperArm
|
||||
position: {x: 0.0000037273983, y: -0.285085, z: -0.00000035927226}
|
||||
rotation: {x: 0.020541133, y: 0.008317431, z: -0.020620903, w: 0.99954176}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_Hand
|
||||
parentName: Right_LowerArm
|
||||
position: {x: 0.0000014923929, y: -0.24036367, z: 0.0000017856368}
|
||||
rotation: {x: -0.047397237, y: -0.24003562, z: 0.013464749, w: 0.9695128}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_IndexProximal
|
||||
parentName: Right_Hand
|
||||
position: {x: -0.0078223245, y: -0.0918393, z: -0.026574574}
|
||||
rotation: {x: -0.00008773989, y: -0.7104814, z: -0.0063276542, w: 0.7036876}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_IndexIntermediate
|
||||
parentName: Right_IndexProximal
|
||||
position: {x: 0.0000006924457, y: -0.04210151, z: -0.0000013631077}
|
||||
rotation: {x: 0.03020306, y: -0.0000005662439, z: 0.000012195228, w: 0.99954385}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_IndexDistal
|
||||
parentName: Right_IndexIntermediate
|
||||
position: {x: -0.00000032847043, y: -0.025139209, z: -0.0000005960629}
|
||||
rotation: {x: 0.03948371, y: -0.000000052504312, z: -0.000005515076, w: 0.99922025}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_IndexDistalEnd
|
||||
parentName: Right_IndexDistal
|
||||
position: {x: 0.00000023984484, y: -0.024609355, z: 0.0000006271131}
|
||||
rotation: {x: -5.5511138e-17, y: 0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_MiddleProximal
|
||||
parentName: Right_Hand
|
||||
position: {x: -0.012848663, y: -0.08609768, z: -0.0034359337}
|
||||
rotation: {x: -0.0040856875, y: -0.6610817, z: -0.0040004994, w: 0.7502922}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_MiddleIntermediate
|
||||
parentName: Right_MiddleProximal
|
||||
position: {x: 0.000000014272595, y: -0.051275954, z: 0.0000009747695}
|
||||
rotation: {x: 0.026226329, y: -0.0000007450579, z: -0.0000027469353, w: 0.9996561}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_MiddleDistal
|
||||
parentName: Right_MiddleIntermediate
|
||||
position: {x: 0.00000014287376, y: -0.028283618, z: 0.00000019378916}
|
||||
rotation: {x: 0.03347514, y: -0, z: -0, w: 0.9994396}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_MiddleDistalEnd
|
||||
parentName: Right_MiddleDistal
|
||||
position: {x: 0.000000038619483, y: -0.023345316, z: 0.0000005352584}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_PinkyProximal
|
||||
parentName: Right_Hand
|
||||
position: {x: -0.0044381507, y: -0.07288141, z: 0.029358566}
|
||||
rotation: {x: -0.020058475, y: -0.55049545, z: -0.008249418, w: 0.83455646}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_PinkyIntermediate
|
||||
parentName: Right_PinkyProximal
|
||||
position: {x: 0.00000045734515, y: -0.032268908, z: 0.00000088312623}
|
||||
rotation: {x: 0.02811499, y: -0.0000035166731, z: -0.00000016298141, w: 0.9996047}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_PinkyDistal
|
||||
parentName: Right_PinkyIntermediate
|
||||
position: {x: 0.00000023899057, y: -0.02022493, z: 0.00000055474345}
|
||||
rotation: {x: 0.03642403, y: -0.0000024211556, z: -0.000008829222, w: 0.9993365}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_PinkyDistalEnd
|
||||
parentName: Right_PinkyDistal
|
||||
position: {x: 0.000000632002, y: -0.018518865, z: 0.0000001154108}
|
||||
rotation: {x: -1.7347236e-17, y: 0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_RingProximal
|
||||
parentName: Right_Hand
|
||||
position: {x: -0.00952738, y: -0.08161427, z: 0.012242128}
|
||||
rotation: {x: -0.017649079, y: -0.6027014, z: -0.0040535578, w: 0.7977614}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_RingIntermediate
|
||||
parentName: Right_RingProximal
|
||||
position: {x: 0.0000000695935, y: -0.04362872, z: 0.00000080048335}
|
||||
rotation: {x: 0.023547903, y: 0.0000024139879, z: 0.0000069094813, w: 0.9997228}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_RingDistal
|
||||
parentName: Right_RingIntermediate
|
||||
position: {x: -0.000000290747, y: -0.02711462, z: 0.0000000181098}
|
||||
rotation: {x: 0.039100695, y: 0.00000009656897, z: -0.000004755179, w: 0.99923533}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_RingDistalEnd
|
||||
parentName: Right_RingDistal
|
||||
position: {x: 0.00000008856214, y: -0.020957856, z: 0.0000005565459}
|
||||
rotation: {x: 9.02056e-17, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_ThumbProximal
|
||||
parentName: Right_Hand
|
||||
position: {x: 0.00080341793, y: -0.028816395, z: -0.023514695}
|
||||
rotation: {x: 0.17960793, y: 0.8841713, z: 0.42399347, w: -0.07881395}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_ThumbIntermediate
|
||||
parentName: Right_ThumbProximal
|
||||
position: {x: 0.00000015009721, y: -0.02757781, z: -0.0038183848}
|
||||
rotation: {x: 0.12780538, y: -0, z: -0, w: 0.9917993}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_ThumbDistal
|
||||
parentName: Right_ThumbIntermediate
|
||||
position: {x: 0.0000007817755, y: -0.044594634, z: 0.0068707783}
|
||||
rotation: {x: -0.04541878, y: -0.000003060937, z: 0.000004811603, w: 0.99896806}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_ThumbDistalEnd
|
||||
parentName: Right_ThumbDistal
|
||||
position: {x: 0.00000020228964, y: -0.029458148, z: 0.0000009551683}
|
||||
rotation: {x: -2.7755574e-17, y: 0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
armTwist: 1
|
||||
foreArmTwist: 0
|
||||
upperLegTwist: 1
|
||||
legTwist: 0
|
||||
armStretch: 0
|
||||
legStretch: 0
|
||||
feetSpacing: 0
|
||||
globalScale: 1
|
||||
rootMotionBoneName:
|
||||
hasTranslationDoF: 1
|
||||
hasExtraRoot: 0
|
||||
skeletonHasParents: 1
|
||||
lastHumanDescriptionAvatarSource: {fileID: 9000000, guid: 36078ab0369161e49a29d349ae3e0739,
|
||||
type: 3}
|
||||
autoGenerateAvatarMappingIfUnspecified: 1
|
||||
animationType: 3
|
||||
humanoidOversampling: 1
|
||||
avatarSetup: 2
|
||||
addHumanoidExtraRootOnlyWhenUsingAvatar: 1
|
||||
additionalBone: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
Binary file not shown.
@@ -0,0 +1,961 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 98f277b0c8055e143b2fcf058d3c27dc
|
||||
ModelImporter:
|
||||
serializedVersion: 20200
|
||||
internalIDToNameTable:
|
||||
- first:
|
||||
74: 7478122292733868173
|
||||
second: JumpStart
|
||||
- first:
|
||||
74: -2702400367771620057
|
||||
second: InAir
|
||||
- first:
|
||||
74: -9098803823909532060
|
||||
second: JumpLand
|
||||
externalObjects: {}
|
||||
materials:
|
||||
materialImportMode: 1
|
||||
materialName: 0
|
||||
materialSearch: 1
|
||||
materialLocation: 1
|
||||
animations:
|
||||
legacyGenerateAnimations: 4
|
||||
bakeSimulation: 0
|
||||
resampleCurves: 1
|
||||
optimizeGameObjects: 0
|
||||
motionNodeName:
|
||||
rigImportErrors:
|
||||
rigImportWarnings:
|
||||
animationImportErrors:
|
||||
animationImportWarnings:
|
||||
animationRetargetingWarnings:
|
||||
animationDoRetargetingWarnings: 0
|
||||
importAnimatedCustomProperties: 0
|
||||
importConstraints: 0
|
||||
animationCompression: 1
|
||||
animationRotationError: 0.05
|
||||
animationPositionError: 0.05
|
||||
animationScaleError: 0.25
|
||||
animationWrapMode: 0
|
||||
extraExposedTransformPaths: []
|
||||
extraUserProperties: []
|
||||
clipAnimations:
|
||||
- serializedVersion: 16
|
||||
name: JumpStart
|
||||
takeName: JumpStart
|
||||
internalID: 0
|
||||
firstFrame: 28
|
||||
lastFrame: 40
|
||||
wrapMode: 0
|
||||
orientationOffsetY: 0
|
||||
level: 0.2
|
||||
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: []
|
||||
maskType: 3
|
||||
maskSource: {instanceID: 0}
|
||||
additiveReferencePoseFrame: 20
|
||||
- serializedVersion: 16
|
||||
name: JumpLand
|
||||
takeName: JumpStart
|
||||
internalID: 0
|
||||
firstFrame: 55
|
||||
lastFrame: 74
|
||||
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:
|
||||
- time: 0.1615599
|
||||
functionName: OnLand
|
||||
data:
|
||||
objectReferenceParameter: {instanceID: 0}
|
||||
floatParameter: 0
|
||||
intParameter: 0
|
||||
messageOptions: 0
|
||||
transformMask: []
|
||||
maskType: 3
|
||||
maskSource: {instanceID: 0}
|
||||
additiveReferencePoseFrame: 20
|
||||
isReadable: 0
|
||||
meshes:
|
||||
lODScreenPercentages: []
|
||||
globalScale: 1
|
||||
meshCompression: 0
|
||||
addColliders: 0
|
||||
useSRGBMaterialColor: 1
|
||||
sortHierarchyByName: 1
|
||||
importVisibility: 1
|
||||
importBlendShapes: 1
|
||||
importCameras: 1
|
||||
importLights: 1
|
||||
fileIdsGeneration: 2
|
||||
swapUVChannels: 0
|
||||
generateSecondaryUV: 0
|
||||
useFileUnits: 1
|
||||
keepQuads: 0
|
||||
weldVertices: 1
|
||||
bakeAxisConversion: 0
|
||||
preserveHierarchy: 0
|
||||
skinWeightsMode: 0
|
||||
maxBonesPerVertex: 4
|
||||
minBoneWeight: 0.001
|
||||
meshOptimizationFlags: -1
|
||||
indexFormat: 0
|
||||
secondaryUVAngleDistortion: 8
|
||||
secondaryUVAreaDistortion: 15.000001
|
||||
secondaryUVHardAngle: 88
|
||||
secondaryUVMarginMethod: 1
|
||||
secondaryUVMinLightmapResolution: 40
|
||||
secondaryUVMinObjectScale: 1
|
||||
secondaryUVPackMargin: 4
|
||||
useFileScale: 1
|
||||
tangentSpace:
|
||||
normalSmoothAngle: 60
|
||||
normalImportMode: 0
|
||||
tangentImportMode: 3
|
||||
normalCalculationMode: 4
|
||||
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0
|
||||
blendShapeNormalImportMode: 1
|
||||
normalSmoothingSource: 0
|
||||
referencedClips: []
|
||||
importAnimation: 1
|
||||
humanDescription:
|
||||
serializedVersion: 3
|
||||
human:
|
||||
- boneName: 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: Right_UpperLeg
|
||||
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: Right_LowerLeg
|
||||
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: Right_Foot
|
||||
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: Right_Toes
|
||||
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: 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: 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: UpperChest
|
||||
humanName: UpperChest
|
||||
limit:
|
||||
min: {x: 0, y: 0, z: 0}
|
||||
max: {x: 0, y: 0, z: 0}
|
||||
value: {x: 0, y: 0, z: 0}
|
||||
length: 0
|
||||
modified: 0
|
||||
- boneName: Right_Shoulder
|
||||
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: Right_UpperArm
|
||||
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: Right_LowerArm
|
||||
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: Right_Hand
|
||||
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: 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: 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: 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: Left_Shoulder
|
||||
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: Left_UpperArm
|
||||
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: Left_LowerArm
|
||||
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: Left_Hand
|
||||
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: Left_UpperLeg
|
||||
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: Left_LowerLeg
|
||||
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: Left_Foot
|
||||
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: Left_Toes
|
||||
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: Left_ThumbProximal
|
||||
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: Left_ThumbIntermediate
|
||||
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: Left_ThumbDistal
|
||||
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: Left_IndexProximal
|
||||
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: Left_IndexIntermediate
|
||||
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: Left_IndexDistal
|
||||
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: Left_MiddleProximal
|
||||
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: Left_MiddleIntermediate
|
||||
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: Left_MiddleDistal
|
||||
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: Left_RingProximal
|
||||
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: Left_RingIntermediate
|
||||
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: Left_RingDistal
|
||||
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: Left_PinkyProximal
|
||||
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: Left_PinkyIntermediate
|
||||
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: Left_PinkyDistal
|
||||
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: Right_ThumbProximal
|
||||
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: Right_ThumbIntermediate
|
||||
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: Right_ThumbDistal
|
||||
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: Right_IndexProximal
|
||||
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: Right_IndexIntermediate
|
||||
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: Right_IndexDistal
|
||||
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: Right_MiddleProximal
|
||||
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: Right_MiddleIntermediate
|
||||
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: Right_MiddleDistal
|
||||
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: Right_RingProximal
|
||||
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: Right_RingIntermediate
|
||||
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: Right_RingDistal
|
||||
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: Right_PinkyProximal
|
||||
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: Right_PinkyIntermediate
|
||||
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: Right_PinkyDistal
|
||||
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: Mannequin(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: Geometry
|
||||
parentName: Mannequin(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: Mannequin_Mesh
|
||||
parentName: Geometry
|
||||
position: {x: -0, y: 0, z: 0}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Skeleton
|
||||
parentName: Mannequin(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: Hips
|
||||
parentName: Skeleton
|
||||
position: {x: -0, y: 0.9810986, z: -0.01590455}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_UpperLeg
|
||||
parentName: Hips
|
||||
position: {x: -0.08610317, y: -0.053458035, z: -0.011470641}
|
||||
rotation: {x: 0.999839, y: -0.01775374, z: 0.000046300094, w: -0.0026074864}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_LowerLeg
|
||||
parentName: Left_UpperLeg
|
||||
position: {x: -2.9864513e-16, y: 0.4133444, z: -5.4956034e-17}
|
||||
rotation: {x: 0.034046065, y: 2.2687323e-19, z: 7.728622e-21, w: 0.9994203}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_Foot
|
||||
parentName: Left_LowerLeg
|
||||
position: {x: 0.0000000017320426, y: 0.41403946, z: 7.141509e-16}
|
||||
rotation: {x: -0.035700925, y: 0.049957544, z: -0.019575229, w: 0.9979211}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_Toes
|
||||
parentName: Left_Foot
|
||||
position: {x: 7.105427e-17, y: 0.07224803, z: -0.118065506}
|
||||
rotation: {x: -0.7071068, y: 8.7157646e-33, z: -8.7157646e-33, w: 0.7071068}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_ToesEnd
|
||||
parentName: Left_Toes
|
||||
position: {x: -0.0010026174, y: 0.06423476, z: 0.016843978}
|
||||
rotation: {x: 0.7070656, y: -0.0076321815, z: -0.0076321815, w: 0.7070656}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_UpperLeg
|
||||
parentName: Hips
|
||||
position: {x: 0.086103186, y: -0.053458147, z: -0.0114706475}
|
||||
rotation: {x: 0.0026075041, y: 0.000046300407, z: 0.01775374, w: 0.999839}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_LowerLeg
|
||||
parentName: Right_UpperLeg
|
||||
position: {x: 0.0000004514609, y: -0.41334414, z: 0.000000025994435}
|
||||
rotation: {x: 0.034046065, y: 2.2687323e-19, z: 7.728622e-21, w: 0.9994203}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_Foot
|
||||
parentName: Right_LowerLeg
|
||||
position: {x: -0.0000007472542, y: -0.41403967, z: -0.000000032847502}
|
||||
rotation: {x: -0.035700925, y: 0.049957544, z: -0.019575229, w: 0.9979211}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_Toes
|
||||
parentName: Right_Foot
|
||||
position: {x: -0.00000015643121, y: -0.07224799, z: 0.11807}
|
||||
rotation: {x: -0.7071068, y: 0, z: -0, w: 0.7071068}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_ToesEnd
|
||||
parentName: Right_Toes
|
||||
position: {x: 0.0010031584, y: -0.06423059, z: -0.016843898}
|
||||
rotation: {x: 0.7070656, y: -0.0076321815, z: -0.0076321815, w: 0.7070656}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Spine
|
||||
parentName: Hips
|
||||
position: {x: -0, y: 0.058229383, z: 0.0012229546}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Chest
|
||||
parentName: Spine
|
||||
position: {x: -0, y: 0.1034043, z: 0}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: UpperChest
|
||||
parentName: Chest
|
||||
position: {x: -0, y: 0.1034043, z: 0}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_Shoulder
|
||||
parentName: UpperChest
|
||||
position: {x: -0.0009571358, y: 0.19149224, z: -0.0087277945}
|
||||
rotation: {x: -0.0049494267, y: -0.113521874, z: 0.043275386, w: 0.99258024}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_UpperArm
|
||||
parentName: Left_Shoulder
|
||||
position: {x: -0.16743502, y: -5.684341e-16, z: -2.664535e-17}
|
||||
rotation: {x: 0.12673509, y: 0.03332071, z: 0.6809724, w: 0.72048914}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_LowerArm
|
||||
parentName: Left_UpperArm
|
||||
position: {x: -2.8421706e-16, y: 0.28508067, z: 0}
|
||||
rotation: {x: 0.020536564, y: 0.00832135, z: -0.020624585, w: 0.9995417}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_Hand
|
||||
parentName: Left_LowerArm
|
||||
position: {x: -2.4123817e-10, y: 0.24036221, z: -1.4210853e-16}
|
||||
rotation: {x: -0.047397237, y: -0.24003562, z: 0.013464749, w: 0.9695128}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_IndexProximal
|
||||
parentName: Left_Hand
|
||||
position: {x: 0.007815497, y: 0.0918443, z: 0.02657316}
|
||||
rotation: {x: -0.0000789147, y: -0.7104809, z: -0.006305193, w: 0.70368826}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_IndexIntermediate
|
||||
parentName: Left_IndexProximal
|
||||
position: {x: 9.079803e-16, y: 0.04209777, z: 3.2607592e-16}
|
||||
rotation: {x: 0.030199163, y: 0.00000005960465, z: -0.00000038841978, w: 0.9995439}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_IndexDistal
|
||||
parentName: Left_IndexIntermediate
|
||||
position: {x: -8.20111e-16, y: 0.02513925, z: -4.317065e-16}
|
||||
rotation: {x: 0.03945603, y: 0.000000016383924, z: 0.0000000332638, w: 0.9992213}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_IndexDistalEnd
|
||||
parentName: Left_IndexDistal
|
||||
position: {x: -1.1581012e-16, y: 0.024609203, z: -6.661337e-17}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_MiddleProximal
|
||||
parentName: Left_Hand
|
||||
position: {x: 0.012847862, y: 0.08609763, z: 0.003435423}
|
||||
rotation: {x: -0.004090429, y: -0.6610811, z: -0.004001968, w: 0.7502927}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_MiddleIntermediate
|
||||
parentName: Left_MiddleProximal
|
||||
position: {x: 2.7261607e-16, y: 0.051279362, z: 5.988264e-17}
|
||||
rotation: {x: 0.026233751, y: -0.000000029802322, z: -0.0000007133931, w: 0.99965584}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_MiddleDistal
|
||||
parentName: Left_MiddleIntermediate
|
||||
position: {x: -7.199101e-17, y: 0.028284006, z: -4.93648e-17}
|
||||
rotation: {x: 0.03347514, y: -0, z: -0, w: 0.9994396}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_MiddleDistalEnd
|
||||
parentName: Left_MiddleDistal
|
||||
position: {x: -1.7763565e-16, y: 0.023346113, z: -7.105426e-17}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_PinkyProximal
|
||||
parentName: Left_Hand
|
||||
position: {x: 0.004436847, y: 0.07288173, z: -0.029359013}
|
||||
rotation: {x: -0.02007038, y: -0.5504896, z: -0.008246153, w: 0.83456}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_PinkyIntermediate
|
||||
parentName: Left_PinkyProximal
|
||||
position: {x: 1.9539922e-16, y: 0.032272622, z: -1.4210853e-16}
|
||||
rotation: {x: 0.028115956, y: -0.00000008940699, z: -0.0000005941839, w: 0.9996047}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_PinkyDistal
|
||||
parentName: Left_PinkyIntermediate
|
||||
position: {x: -3.5527133e-17, y: 0.020224448, z: -7.1054265e-17}
|
||||
rotation: {x: 0.03643686, y: 0.00000014611446, z: 0.00000018696, w: 0.999336}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_PinkyDistalEnd
|
||||
parentName: Left_PinkyDistal
|
||||
position: {x: -1.2434495e-16, y: 0.018519057, z: 0}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_RingProximal
|
||||
parentName: Left_Hand
|
||||
position: {x: 0.009525569, y: 0.08161553, z: -0.012242405}
|
||||
rotation: {x: -0.017654313, y: -0.6026994, z: -0.0040520057, w: 0.79776275}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_RingIntermediate
|
||||
parentName: Left_RingProximal
|
||||
position: {x: 3.3750777e-16, y: 0.043630484, z: -1.4210853e-16}
|
||||
rotation: {x: 0.023556013, y: 0.00000026822087, z: 0.0000007636844, w: 0.99972254}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_RingDistal
|
||||
parentName: Left_RingIntermediate
|
||||
position: {x: 1.7763566e-17, y: 0.027115494, z: -1.065814e-16}
|
||||
rotation: {x: 0.03908592, y: -0.000000019744585, z: 0.00000042049942, w: 0.9992359}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_RingDistalEnd
|
||||
parentName: Left_RingDistal
|
||||
position: {x: -7.105426e-17, y: 0.02095726, z: -7.105426e-17}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_ThumbProximal
|
||||
parentName: Left_Hand
|
||||
position: {x: -0.00080496486, y: 0.028816883, z: 0.023514476}
|
||||
rotation: {x: 0.1796032, y: 0.8841741, z: 0.4239896, w: -0.07881452}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_ThumbIntermediate
|
||||
parentName: Left_ThumbProximal
|
||||
position: {x: 2.4357445e-15, y: 0.027578257, z: 0.0038183592}
|
||||
rotation: {x: 0.1278054, y: -0, z: -0, w: 0.9917993}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_ThumbDistal
|
||||
parentName: Left_ThumbIntermediate
|
||||
position: {x: -2.2737365e-15, y: 0.044597257, z: -0.006869915}
|
||||
rotation: {x: -0.045421924, y: -0.00000036741366, z: -0.0000008691409, w: 0.9989679}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_ThumbDistalEnd
|
||||
parentName: Left_ThumbDistal
|
||||
position: {x: -4.2632555e-16, y: 0.029458016, z: 0}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Neck
|
||||
parentName: UpperChest
|
||||
position: {x: -0, y: 0.25104657, z: -0.015329581}
|
||||
rotation: {x: 0.060688436, y: -0, z: -0, w: 0.9981568}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Head
|
||||
parentName: Neck
|
||||
position: {x: -0, y: 0.12747401, z: 0}
|
||||
rotation: {x: -0.060688436, y: 0, z: -0, w: 0.9981568}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Jaw
|
||||
parentName: Head
|
||||
position: {x: -0, y: -0.00763539, z: 0.012895278}
|
||||
rotation: {x: 0.15949209, y: 0.68888485, z: 0.15949209, w: 0.68888485}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_Eye
|
||||
parentName: Head
|
||||
position: {x: -0.03330326, y: 0.034598116, z: 0.0867403}
|
||||
rotation: {x: 0, y: 0.7071068, z: 0, w: 0.7071068}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_Eye
|
||||
parentName: Head
|
||||
position: {x: 0.033303294, y: 0.03459628, z: 0.0867403}
|
||||
rotation: {x: 0.7071068, y: 4.3297806e-17, z: 0.7071068, w: -4.3297806e-17}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Neck_Twist_A
|
||||
parentName: Neck
|
||||
position: {x: -0, y: 0.063737005, z: 0}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_Shoulder
|
||||
parentName: UpperChest
|
||||
position: {x: 0.0009571358, y: 0.19149381, z: -0.008727803}
|
||||
rotation: {x: 0.99258024, y: -0.04327539, z: -0.113521874, w: 0.004949396}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_UpperArm
|
||||
parentName: Right_Shoulder
|
||||
position: {x: 0.16743432, y: -0.0000022099182, z: 0.00000012213746}
|
||||
rotation: {x: 0.1267345, y: 0.033320885, z: 0.68096745, w: 0.720494}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_LowerArm
|
||||
parentName: Right_UpperArm
|
||||
position: {x: 0.0000037273983, y: -0.285085, z: -0.00000035927226}
|
||||
rotation: {x: 0.020541133, y: 0.008317431, z: -0.020620903, w: 0.99954176}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_Hand
|
||||
parentName: Right_LowerArm
|
||||
position: {x: 0.0000014923929, y: -0.24036367, z: 0.0000017856368}
|
||||
rotation: {x: -0.047397237, y: -0.24003562, z: 0.013464749, w: 0.9695128}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_IndexProximal
|
||||
parentName: Right_Hand
|
||||
position: {x: -0.0078223245, y: -0.0918393, z: -0.026574574}
|
||||
rotation: {x: -0.00008773989, y: -0.7104814, z: -0.0063276542, w: 0.7036876}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_IndexIntermediate
|
||||
parentName: Right_IndexProximal
|
||||
position: {x: 0.0000006924457, y: -0.04210151, z: -0.0000013631077}
|
||||
rotation: {x: 0.03020306, y: -0.0000005662439, z: 0.000012195228, w: 0.99954385}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_IndexDistal
|
||||
parentName: Right_IndexIntermediate
|
||||
position: {x: -0.00000032847043, y: -0.025139209, z: -0.0000005960629}
|
||||
rotation: {x: 0.03948371, y: -0.000000052504312, z: -0.000005515076, w: 0.99922025}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_IndexDistalEnd
|
||||
parentName: Right_IndexDistal
|
||||
position: {x: 0.00000023984484, y: -0.024609355, z: 0.0000006271131}
|
||||
rotation: {x: -5.5511138e-17, y: 0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_MiddleProximal
|
||||
parentName: Right_Hand
|
||||
position: {x: -0.012848663, y: -0.08609768, z: -0.0034359337}
|
||||
rotation: {x: -0.0040856875, y: -0.6610817, z: -0.0040004994, w: 0.7502922}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_MiddleIntermediate
|
||||
parentName: Right_MiddleProximal
|
||||
position: {x: 0.000000014272595, y: -0.051275954, z: 0.0000009747695}
|
||||
rotation: {x: 0.026226329, y: -0.0000007450579, z: -0.0000027469353, w: 0.9996561}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_MiddleDistal
|
||||
parentName: Right_MiddleIntermediate
|
||||
position: {x: 0.00000014287376, y: -0.028283618, z: 0.00000019378916}
|
||||
rotation: {x: 0.03347514, y: -0, z: -0, w: 0.9994396}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_MiddleDistalEnd
|
||||
parentName: Right_MiddleDistal
|
||||
position: {x: 0.000000038619483, y: -0.023345316, z: 0.0000005352584}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_PinkyProximal
|
||||
parentName: Right_Hand
|
||||
position: {x: -0.0044381507, y: -0.07288141, z: 0.029358566}
|
||||
rotation: {x: -0.020058475, y: -0.55049545, z: -0.008249418, w: 0.83455646}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_PinkyIntermediate
|
||||
parentName: Right_PinkyProximal
|
||||
position: {x: 0.00000045734515, y: -0.032268908, z: 0.00000088312623}
|
||||
rotation: {x: 0.02811499, y: -0.0000035166731, z: -0.00000016298141, w: 0.9996047}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_PinkyDistal
|
||||
parentName: Right_PinkyIntermediate
|
||||
position: {x: 0.00000023899057, y: -0.02022493, z: 0.00000055474345}
|
||||
rotation: {x: 0.03642403, y: -0.0000024211556, z: -0.000008829222, w: 0.9993365}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_PinkyDistalEnd
|
||||
parentName: Right_PinkyDistal
|
||||
position: {x: 0.000000632002, y: -0.018518865, z: 0.0000001154108}
|
||||
rotation: {x: -1.7347236e-17, y: 0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_RingProximal
|
||||
parentName: Right_Hand
|
||||
position: {x: -0.00952738, y: -0.08161427, z: 0.012242128}
|
||||
rotation: {x: -0.017649079, y: -0.6027014, z: -0.0040535578, w: 0.7977614}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_RingIntermediate
|
||||
parentName: Right_RingProximal
|
||||
position: {x: 0.0000000695935, y: -0.04362872, z: 0.00000080048335}
|
||||
rotation: {x: 0.023547903, y: 0.0000024139879, z: 0.0000069094813, w: 0.9997228}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_RingDistal
|
||||
parentName: Right_RingIntermediate
|
||||
position: {x: -0.000000290747, y: -0.02711462, z: 0.0000000181098}
|
||||
rotation: {x: 0.039100695, y: 0.00000009656897, z: -0.000004755179, w: 0.99923533}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_RingDistalEnd
|
||||
parentName: Right_RingDistal
|
||||
position: {x: 0.00000008856214, y: -0.020957856, z: 0.0000005565459}
|
||||
rotation: {x: 9.02056e-17, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_ThumbProximal
|
||||
parentName: Right_Hand
|
||||
position: {x: 0.00080341793, y: -0.028816395, z: -0.023514695}
|
||||
rotation: {x: 0.17960793, y: 0.8841713, z: 0.42399347, w: -0.07881395}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_ThumbIntermediate
|
||||
parentName: Right_ThumbProximal
|
||||
position: {x: 0.00000015009721, y: -0.02757781, z: -0.0038183848}
|
||||
rotation: {x: 0.12780538, y: -0, z: -0, w: 0.9917993}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_ThumbDistal
|
||||
parentName: Right_ThumbIntermediate
|
||||
position: {x: 0.0000007817755, y: -0.044594634, z: 0.0068707783}
|
||||
rotation: {x: -0.04541878, y: -0.000003060937, z: 0.000004811603, w: 0.99896806}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_ThumbDistalEnd
|
||||
parentName: Right_ThumbDistal
|
||||
position: {x: 0.00000020228964, y: -0.029458148, z: 0.0000009551683}
|
||||
rotation: {x: -2.7755574e-17, y: 0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
armTwist: 1
|
||||
foreArmTwist: 0
|
||||
upperLegTwist: 1
|
||||
legTwist: 0
|
||||
armStretch: 0
|
||||
legStretch: 0
|
||||
feetSpacing: 0
|
||||
globalScale: 1
|
||||
rootMotionBoneName:
|
||||
hasTranslationDoF: 1
|
||||
hasExtraRoot: 0
|
||||
skeletonHasParents: 1
|
||||
lastHumanDescriptionAvatarSource: {fileID: 9000000, guid: 36078ab0369161e49a29d349ae3e0739,
|
||||
type: 3}
|
||||
autoGenerateAvatarMappingIfUnspecified: 1
|
||||
animationType: 3
|
||||
humanoidOversampling: 1
|
||||
avatarSetup: 2
|
||||
addHumanoidExtraRootOnlyWhenUsingAvatar: 0
|
||||
additionalBone: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
Binary file not shown.
@@ -0,0 +1,933 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 16114d403eabb53438de032c6f0d1deb
|
||||
ModelImporter:
|
||||
serializedVersion: 20200
|
||||
internalIDToNameTable:
|
||||
- first:
|
||||
74: 6564411413370888346
|
||||
second: Run_N
|
||||
externalObjects: {}
|
||||
materials:
|
||||
materialImportMode: 1
|
||||
materialName: 0
|
||||
materialSearch: 1
|
||||
materialLocation: 1
|
||||
animations:
|
||||
legacyGenerateAnimations: 4
|
||||
bakeSimulation: 0
|
||||
resampleCurves: 1
|
||||
optimizeGameObjects: 0
|
||||
motionNodeName:
|
||||
rigImportErrors:
|
||||
rigImportWarnings:
|
||||
animationImportErrors:
|
||||
animationImportWarnings:
|
||||
animationRetargetingWarnings:
|
||||
animationDoRetargetingWarnings: 0
|
||||
importAnimatedCustomProperties: 0
|
||||
importConstraints: 0
|
||||
animationCompression: 1
|
||||
animationRotationError: 0.05
|
||||
animationPositionError: 0.05
|
||||
animationScaleError: 0.25
|
||||
animationWrapMode: 0
|
||||
extraExposedTransformPaths: []
|
||||
extraUserProperties: []
|
||||
clipAnimations:
|
||||
- serializedVersion: 16
|
||||
name: Run_N
|
||||
takeName: Run_N
|
||||
internalID: 0
|
||||
firstFrame: 0
|
||||
lastFrame: 20
|
||||
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:
|
||||
- time: 0.3221903
|
||||
functionName: OnFootstep
|
||||
data:
|
||||
objectReferenceParameter: {instanceID: 0}
|
||||
floatParameter: 0
|
||||
intParameter: 0
|
||||
messageOptions: 0
|
||||
- time: 0.8077375
|
||||
functionName: OnFootstep
|
||||
data:
|
||||
objectReferenceParameter: {instanceID: 0}
|
||||
floatParameter: 0
|
||||
intParameter: 0
|
||||
messageOptions: 0
|
||||
transformMask: []
|
||||
maskType: 3
|
||||
maskSource: {instanceID: 0}
|
||||
additiveReferencePoseFrame: 0
|
||||
isReadable: 0
|
||||
meshes:
|
||||
lODScreenPercentages: []
|
||||
globalScale: 1
|
||||
meshCompression: 0
|
||||
addColliders: 0
|
||||
useSRGBMaterialColor: 1
|
||||
sortHierarchyByName: 1
|
||||
importVisibility: 1
|
||||
importBlendShapes: 1
|
||||
importCameras: 1
|
||||
importLights: 1
|
||||
fileIdsGeneration: 2
|
||||
swapUVChannels: 0
|
||||
generateSecondaryUV: 0
|
||||
useFileUnits: 1
|
||||
keepQuads: 0
|
||||
weldVertices: 1
|
||||
bakeAxisConversion: 0
|
||||
preserveHierarchy: 0
|
||||
skinWeightsMode: 0
|
||||
maxBonesPerVertex: 4
|
||||
minBoneWeight: 0.001
|
||||
meshOptimizationFlags: -1
|
||||
indexFormat: 0
|
||||
secondaryUVAngleDistortion: 8
|
||||
secondaryUVAreaDistortion: 15.000001
|
||||
secondaryUVHardAngle: 88
|
||||
secondaryUVMarginMethod: 1
|
||||
secondaryUVMinLightmapResolution: 40
|
||||
secondaryUVMinObjectScale: 1
|
||||
secondaryUVPackMargin: 4
|
||||
useFileScale: 1
|
||||
tangentSpace:
|
||||
normalSmoothAngle: 60
|
||||
normalImportMode: 0
|
||||
tangentImportMode: 3
|
||||
normalCalculationMode: 4
|
||||
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0
|
||||
blendShapeNormalImportMode: 1
|
||||
normalSmoothingSource: 0
|
||||
referencedClips: []
|
||||
importAnimation: 1
|
||||
humanDescription:
|
||||
serializedVersion: 3
|
||||
human:
|
||||
- boneName: 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: Right_UpperLeg
|
||||
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: Right_LowerLeg
|
||||
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: Right_Foot
|
||||
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: Right_Toes
|
||||
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: 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: 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: UpperChest
|
||||
humanName: UpperChest
|
||||
limit:
|
||||
min: {x: 0, y: 0, z: 0}
|
||||
max: {x: 0, y: 0, z: 0}
|
||||
value: {x: 0, y: 0, z: 0}
|
||||
length: 0
|
||||
modified: 0
|
||||
- boneName: Right_Shoulder
|
||||
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: Right_UpperArm
|
||||
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: Right_LowerArm
|
||||
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: Right_Hand
|
||||
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: 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: 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: 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: Left_Shoulder
|
||||
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: Left_UpperArm
|
||||
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: Left_LowerArm
|
||||
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: Left_Hand
|
||||
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: Left_UpperLeg
|
||||
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: Left_LowerLeg
|
||||
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: Left_Foot
|
||||
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: Left_Toes
|
||||
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: Left_ThumbProximal
|
||||
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: Left_ThumbIntermediate
|
||||
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: Left_ThumbDistal
|
||||
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: Left_IndexProximal
|
||||
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: Left_IndexIntermediate
|
||||
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: Left_IndexDistal
|
||||
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: Left_MiddleProximal
|
||||
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: Left_MiddleIntermediate
|
||||
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: Left_MiddleDistal
|
||||
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: Left_RingProximal
|
||||
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: Left_RingIntermediate
|
||||
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: Left_RingDistal
|
||||
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: Left_PinkyProximal
|
||||
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: Left_PinkyIntermediate
|
||||
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: Left_PinkyDistal
|
||||
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: Right_ThumbProximal
|
||||
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: Right_ThumbIntermediate
|
||||
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: Right_ThumbDistal
|
||||
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: Right_IndexProximal
|
||||
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: Right_IndexIntermediate
|
||||
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: Right_IndexDistal
|
||||
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: Right_MiddleProximal
|
||||
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: Right_MiddleIntermediate
|
||||
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: Right_MiddleDistal
|
||||
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: Right_RingProximal
|
||||
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: Right_RingIntermediate
|
||||
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: Right_RingDistal
|
||||
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: Right_PinkyProximal
|
||||
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: Right_PinkyIntermediate
|
||||
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: Right_PinkyDistal
|
||||
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: Mannequin(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: Geometry
|
||||
parentName: Mannequin(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: Mannequin_Mesh
|
||||
parentName: Geometry
|
||||
position: {x: -0, y: 0, z: 0}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Skeleton
|
||||
parentName: Mannequin(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: Hips
|
||||
parentName: Skeleton
|
||||
position: {x: -0, y: 0.9810986, z: -0.01590455}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_UpperLeg
|
||||
parentName: Hips
|
||||
position: {x: -0.08610317, y: -0.053458035, z: -0.011470641}
|
||||
rotation: {x: 0.999839, y: -0.01775374, z: 0.000046300094, w: -0.0026074864}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_LowerLeg
|
||||
parentName: Left_UpperLeg
|
||||
position: {x: -2.9864513e-16, y: 0.4133444, z: -5.4956034e-17}
|
||||
rotation: {x: 0.034046065, y: 2.2687323e-19, z: 7.728622e-21, w: 0.9994203}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_Foot
|
||||
parentName: Left_LowerLeg
|
||||
position: {x: 0.0000000017320426, y: 0.41403946, z: 7.141509e-16}
|
||||
rotation: {x: -0.035700925, y: 0.049957544, z: -0.019575229, w: 0.9979211}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_Toes
|
||||
parentName: Left_Foot
|
||||
position: {x: 7.105427e-17, y: 0.07224803, z: -0.118065506}
|
||||
rotation: {x: -0.7071068, y: 8.7157646e-33, z: -8.7157646e-33, w: 0.7071068}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_ToesEnd
|
||||
parentName: Left_Toes
|
||||
position: {x: -0.0010026174, y: 0.06423476, z: 0.016843978}
|
||||
rotation: {x: 0.7070656, y: -0.0076321815, z: -0.0076321815, w: 0.7070656}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_UpperLeg
|
||||
parentName: Hips
|
||||
position: {x: 0.086103186, y: -0.053458147, z: -0.0114706475}
|
||||
rotation: {x: 0.0026075041, y: 0.000046300407, z: 0.01775374, w: 0.999839}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_LowerLeg
|
||||
parentName: Right_UpperLeg
|
||||
position: {x: 0.0000004514609, y: -0.41334414, z: 0.000000025994435}
|
||||
rotation: {x: 0.034046065, y: 2.2687323e-19, z: 7.728622e-21, w: 0.9994203}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_Foot
|
||||
parentName: Right_LowerLeg
|
||||
position: {x: -0.0000007472542, y: -0.41403967, z: -0.000000032847502}
|
||||
rotation: {x: -0.035700925, y: 0.049957544, z: -0.019575229, w: 0.9979211}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_Toes
|
||||
parentName: Right_Foot
|
||||
position: {x: -0.00000015643121, y: -0.07224799, z: 0.11807}
|
||||
rotation: {x: -0.7071068, y: 0, z: -0, w: 0.7071068}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_ToesEnd
|
||||
parentName: Right_Toes
|
||||
position: {x: 0.0010031584, y: -0.06423059, z: -0.016843898}
|
||||
rotation: {x: 0.7070656, y: -0.0076321815, z: -0.0076321815, w: 0.7070656}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Spine
|
||||
parentName: Hips
|
||||
position: {x: -0, y: 0.058229383, z: 0.0012229546}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Chest
|
||||
parentName: Spine
|
||||
position: {x: -0, y: 0.1034043, z: 0}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: UpperChest
|
||||
parentName: Chest
|
||||
position: {x: -0, y: 0.1034043, z: 0}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_Shoulder
|
||||
parentName: UpperChest
|
||||
position: {x: -0.0009571358, y: 0.19149224, z: -0.0087277945}
|
||||
rotation: {x: -0.0049494267, y: -0.113521874, z: 0.043275386, w: 0.99258024}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_UpperArm
|
||||
parentName: Left_Shoulder
|
||||
position: {x: -0.16743502, y: -5.684341e-16, z: -2.664535e-17}
|
||||
rotation: {x: 0.12673509, y: 0.03332071, z: 0.6809724, w: 0.72048914}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_LowerArm
|
||||
parentName: Left_UpperArm
|
||||
position: {x: -2.8421706e-16, y: 0.28508067, z: 0}
|
||||
rotation: {x: 0.020536564, y: 0.00832135, z: -0.020624585, w: 0.9995417}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_Hand
|
||||
parentName: Left_LowerArm
|
||||
position: {x: -2.4123817e-10, y: 0.24036221, z: -1.4210853e-16}
|
||||
rotation: {x: -0.047397237, y: -0.24003562, z: 0.013464749, w: 0.9695128}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_IndexProximal
|
||||
parentName: Left_Hand
|
||||
position: {x: 0.007815497, y: 0.0918443, z: 0.02657316}
|
||||
rotation: {x: -0.0000789147, y: -0.7104809, z: -0.006305193, w: 0.70368826}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_IndexIntermediate
|
||||
parentName: Left_IndexProximal
|
||||
position: {x: 9.079803e-16, y: 0.04209777, z: 3.2607592e-16}
|
||||
rotation: {x: 0.030199163, y: 0.00000005960465, z: -0.00000038841978, w: 0.9995439}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_IndexDistal
|
||||
parentName: Left_IndexIntermediate
|
||||
position: {x: -8.20111e-16, y: 0.02513925, z: -4.317065e-16}
|
||||
rotation: {x: 0.03945603, y: 0.000000016383924, z: 0.0000000332638, w: 0.9992213}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_IndexDistalEnd
|
||||
parentName: Left_IndexDistal
|
||||
position: {x: -1.1581012e-16, y: 0.024609203, z: -6.661337e-17}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_MiddleProximal
|
||||
parentName: Left_Hand
|
||||
position: {x: 0.012847862, y: 0.08609763, z: 0.003435423}
|
||||
rotation: {x: -0.004090429, y: -0.6610811, z: -0.004001968, w: 0.7502927}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_MiddleIntermediate
|
||||
parentName: Left_MiddleProximal
|
||||
position: {x: 2.7261607e-16, y: 0.051279362, z: 5.988264e-17}
|
||||
rotation: {x: 0.026233751, y: -0.000000029802322, z: -0.0000007133931, w: 0.99965584}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_MiddleDistal
|
||||
parentName: Left_MiddleIntermediate
|
||||
position: {x: -7.199101e-17, y: 0.028284006, z: -4.93648e-17}
|
||||
rotation: {x: 0.03347514, y: -0, z: -0, w: 0.9994396}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_MiddleDistalEnd
|
||||
parentName: Left_MiddleDistal
|
||||
position: {x: -1.7763565e-16, y: 0.023346113, z: -7.105426e-17}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_PinkyProximal
|
||||
parentName: Left_Hand
|
||||
position: {x: 0.004436847, y: 0.07288173, z: -0.029359013}
|
||||
rotation: {x: -0.02007038, y: -0.5504896, z: -0.008246153, w: 0.83456}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_PinkyIntermediate
|
||||
parentName: Left_PinkyProximal
|
||||
position: {x: 1.9539922e-16, y: 0.032272622, z: -1.4210853e-16}
|
||||
rotation: {x: 0.028115956, y: -0.00000008940699, z: -0.0000005941839, w: 0.9996047}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_PinkyDistal
|
||||
parentName: Left_PinkyIntermediate
|
||||
position: {x: -3.5527133e-17, y: 0.020224448, z: -7.1054265e-17}
|
||||
rotation: {x: 0.03643686, y: 0.00000014611446, z: 0.00000018696, w: 0.999336}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_PinkyDistalEnd
|
||||
parentName: Left_PinkyDistal
|
||||
position: {x: -1.2434495e-16, y: 0.018519057, z: 0}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_RingProximal
|
||||
parentName: Left_Hand
|
||||
position: {x: 0.009525569, y: 0.08161553, z: -0.012242405}
|
||||
rotation: {x: -0.017654313, y: -0.6026994, z: -0.0040520057, w: 0.79776275}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_RingIntermediate
|
||||
parentName: Left_RingProximal
|
||||
position: {x: 3.3750777e-16, y: 0.043630484, z: -1.4210853e-16}
|
||||
rotation: {x: 0.023556013, y: 0.00000026822087, z: 0.0000007636844, w: 0.99972254}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_RingDistal
|
||||
parentName: Left_RingIntermediate
|
||||
position: {x: 1.7763566e-17, y: 0.027115494, z: -1.065814e-16}
|
||||
rotation: {x: 0.03908592, y: -0.000000019744585, z: 0.00000042049942, w: 0.9992359}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_RingDistalEnd
|
||||
parentName: Left_RingDistal
|
||||
position: {x: -7.105426e-17, y: 0.02095726, z: -7.105426e-17}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_ThumbProximal
|
||||
parentName: Left_Hand
|
||||
position: {x: -0.00080496486, y: 0.028816883, z: 0.023514476}
|
||||
rotation: {x: 0.1796032, y: 0.8841741, z: 0.4239896, w: -0.07881452}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_ThumbIntermediate
|
||||
parentName: Left_ThumbProximal
|
||||
position: {x: 2.4357445e-15, y: 0.027578257, z: 0.0038183592}
|
||||
rotation: {x: 0.1278054, y: -0, z: -0, w: 0.9917993}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_ThumbDistal
|
||||
parentName: Left_ThumbIntermediate
|
||||
position: {x: -2.2737365e-15, y: 0.044597257, z: -0.006869915}
|
||||
rotation: {x: -0.045421924, y: -0.00000036741366, z: -0.0000008691409, w: 0.9989679}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_ThumbDistalEnd
|
||||
parentName: Left_ThumbDistal
|
||||
position: {x: -4.2632555e-16, y: 0.029458016, z: 0}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Neck
|
||||
parentName: UpperChest
|
||||
position: {x: -0, y: 0.25104657, z: -0.015329581}
|
||||
rotation: {x: 0.060688436, y: -0, z: -0, w: 0.9981568}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Head
|
||||
parentName: Neck
|
||||
position: {x: -0, y: 0.12747401, z: 0}
|
||||
rotation: {x: -0.060688436, y: 0, z: -0, w: 0.9981568}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Jaw
|
||||
parentName: Head
|
||||
position: {x: -0, y: -0.00763539, z: 0.012895278}
|
||||
rotation: {x: 0.15949209, y: 0.68888485, z: 0.15949209, w: 0.68888485}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_Eye
|
||||
parentName: Head
|
||||
position: {x: -0.03330326, y: 0.034598116, z: 0.0867403}
|
||||
rotation: {x: 0, y: 0.7071068, z: 0, w: 0.7071068}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_Eye
|
||||
parentName: Head
|
||||
position: {x: 0.033303294, y: 0.03459628, z: 0.0867403}
|
||||
rotation: {x: 0.7071068, y: 4.3297806e-17, z: 0.7071068, w: -4.3297806e-17}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Neck_Twist_A
|
||||
parentName: Neck
|
||||
position: {x: -0, y: 0.063737005, z: 0}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_Shoulder
|
||||
parentName: UpperChest
|
||||
position: {x: 0.0009571358, y: 0.19149381, z: -0.008727803}
|
||||
rotation: {x: 0.99258024, y: -0.04327539, z: -0.113521874, w: 0.004949396}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_UpperArm
|
||||
parentName: Right_Shoulder
|
||||
position: {x: 0.16743432, y: -0.0000022099182, z: 0.00000012213746}
|
||||
rotation: {x: 0.1267345, y: 0.033320885, z: 0.68096745, w: 0.720494}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_LowerArm
|
||||
parentName: Right_UpperArm
|
||||
position: {x: 0.0000037273983, y: -0.285085, z: -0.00000035927226}
|
||||
rotation: {x: 0.020541133, y: 0.008317431, z: -0.020620903, w: 0.99954176}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_Hand
|
||||
parentName: Right_LowerArm
|
||||
position: {x: 0.0000014923929, y: -0.24036367, z: 0.0000017856368}
|
||||
rotation: {x: -0.047397237, y: -0.24003562, z: 0.013464749, w: 0.9695128}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_IndexProximal
|
||||
parentName: Right_Hand
|
||||
position: {x: -0.0078223245, y: -0.0918393, z: -0.026574574}
|
||||
rotation: {x: -0.00008773989, y: -0.7104814, z: -0.0063276542, w: 0.7036876}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_IndexIntermediate
|
||||
parentName: Right_IndexProximal
|
||||
position: {x: 0.0000006924457, y: -0.04210151, z: -0.0000013631077}
|
||||
rotation: {x: 0.03020306, y: -0.0000005662439, z: 0.000012195228, w: 0.99954385}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_IndexDistal
|
||||
parentName: Right_IndexIntermediate
|
||||
position: {x: -0.00000032847043, y: -0.025139209, z: -0.0000005960629}
|
||||
rotation: {x: 0.03948371, y: -0.000000052504312, z: -0.000005515076, w: 0.99922025}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_IndexDistalEnd
|
||||
parentName: Right_IndexDistal
|
||||
position: {x: 0.00000023984484, y: -0.024609355, z: 0.0000006271131}
|
||||
rotation: {x: -5.5511138e-17, y: 0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_MiddleProximal
|
||||
parentName: Right_Hand
|
||||
position: {x: -0.012848663, y: -0.08609768, z: -0.0034359337}
|
||||
rotation: {x: -0.0040856875, y: -0.6610817, z: -0.0040004994, w: 0.7502922}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_MiddleIntermediate
|
||||
parentName: Right_MiddleProximal
|
||||
position: {x: 0.000000014272595, y: -0.051275954, z: 0.0000009747695}
|
||||
rotation: {x: 0.026226329, y: -0.0000007450579, z: -0.0000027469353, w: 0.9996561}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_MiddleDistal
|
||||
parentName: Right_MiddleIntermediate
|
||||
position: {x: 0.00000014287376, y: -0.028283618, z: 0.00000019378916}
|
||||
rotation: {x: 0.03347514, y: -0, z: -0, w: 0.9994396}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_MiddleDistalEnd
|
||||
parentName: Right_MiddleDistal
|
||||
position: {x: 0.000000038619483, y: -0.023345316, z: 0.0000005352584}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_PinkyProximal
|
||||
parentName: Right_Hand
|
||||
position: {x: -0.0044381507, y: -0.07288141, z: 0.029358566}
|
||||
rotation: {x: -0.020058475, y: -0.55049545, z: -0.008249418, w: 0.83455646}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_PinkyIntermediate
|
||||
parentName: Right_PinkyProximal
|
||||
position: {x: 0.00000045734515, y: -0.032268908, z: 0.00000088312623}
|
||||
rotation: {x: 0.02811499, y: -0.0000035166731, z: -0.00000016298141, w: 0.9996047}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_PinkyDistal
|
||||
parentName: Right_PinkyIntermediate
|
||||
position: {x: 0.00000023899057, y: -0.02022493, z: 0.00000055474345}
|
||||
rotation: {x: 0.03642403, y: -0.0000024211556, z: -0.000008829222, w: 0.9993365}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_PinkyDistalEnd
|
||||
parentName: Right_PinkyDistal
|
||||
position: {x: 0.000000632002, y: -0.018518865, z: 0.0000001154108}
|
||||
rotation: {x: -1.7347236e-17, y: 0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_RingProximal
|
||||
parentName: Right_Hand
|
||||
position: {x: -0.00952738, y: -0.08161427, z: 0.012242128}
|
||||
rotation: {x: -0.017649079, y: -0.6027014, z: -0.0040535578, w: 0.7977614}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_RingIntermediate
|
||||
parentName: Right_RingProximal
|
||||
position: {x: 0.0000000695935, y: -0.04362872, z: 0.00000080048335}
|
||||
rotation: {x: 0.023547903, y: 0.0000024139879, z: 0.0000069094813, w: 0.9997228}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_RingDistal
|
||||
parentName: Right_RingIntermediate
|
||||
position: {x: -0.000000290747, y: -0.02711462, z: 0.0000000181098}
|
||||
rotation: {x: 0.039100695, y: 0.00000009656897, z: -0.000004755179, w: 0.99923533}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_RingDistalEnd
|
||||
parentName: Right_RingDistal
|
||||
position: {x: 0.00000008856214, y: -0.020957856, z: 0.0000005565459}
|
||||
rotation: {x: 9.02056e-17, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_ThumbProximal
|
||||
parentName: Right_Hand
|
||||
position: {x: 0.00080341793, y: -0.028816395, z: -0.023514695}
|
||||
rotation: {x: 0.17960793, y: 0.8841713, z: 0.42399347, w: -0.07881395}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_ThumbIntermediate
|
||||
parentName: Right_ThumbProximal
|
||||
position: {x: 0.00000015009721, y: -0.02757781, z: -0.0038183848}
|
||||
rotation: {x: 0.12780538, y: -0, z: -0, w: 0.9917993}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_ThumbDistal
|
||||
parentName: Right_ThumbIntermediate
|
||||
position: {x: 0.0000007817755, y: -0.044594634, z: 0.0068707783}
|
||||
rotation: {x: -0.04541878, y: -0.000003060937, z: 0.000004811603, w: 0.99896806}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_ThumbDistalEnd
|
||||
parentName: Right_ThumbDistal
|
||||
position: {x: 0.00000020228964, y: -0.029458148, z: 0.0000009551683}
|
||||
rotation: {x: -2.7755574e-17, y: 0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
armTwist: 1
|
||||
foreArmTwist: 0
|
||||
upperLegTwist: 1
|
||||
legTwist: 0
|
||||
armStretch: 0
|
||||
legStretch: 0
|
||||
feetSpacing: 0
|
||||
globalScale: 1
|
||||
rootMotionBoneName:
|
||||
hasTranslationDoF: 1
|
||||
hasExtraRoot: 0
|
||||
skeletonHasParents: 1
|
||||
lastHumanDescriptionAvatarSource: {fileID: 9000000, guid: 36078ab0369161e49a29d349ae3e0739,
|
||||
type: 3}
|
||||
autoGenerateAvatarMappingIfUnspecified: 1
|
||||
animationType: 3
|
||||
humanoidOversampling: 1
|
||||
avatarSetup: 2
|
||||
addHumanoidExtraRootOnlyWhenUsingAvatar: 0
|
||||
additionalBone: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
Binary file not shown.
@@ -0,0 +1,926 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 3c033631149b9c541bcf155cd94cccba
|
||||
ModelImporter:
|
||||
serializedVersion: 20200
|
||||
internalIDToNameTable:
|
||||
- first:
|
||||
74: -2817517482862745934
|
||||
second: Run_N_Land
|
||||
externalObjects: {}
|
||||
materials:
|
||||
materialImportMode: 1
|
||||
materialName: 0
|
||||
materialSearch: 1
|
||||
materialLocation: 1
|
||||
animations:
|
||||
legacyGenerateAnimations: 4
|
||||
bakeSimulation: 0
|
||||
resampleCurves: 1
|
||||
optimizeGameObjects: 0
|
||||
motionNodeName:
|
||||
rigImportErrors:
|
||||
rigImportWarnings:
|
||||
animationImportErrors:
|
||||
animationImportWarnings:
|
||||
animationRetargetingWarnings:
|
||||
animationDoRetargetingWarnings: 0
|
||||
importAnimatedCustomProperties: 0
|
||||
importConstraints: 1
|
||||
animationCompression: 1
|
||||
animationRotationError: 0.05
|
||||
animationPositionError: 0.05
|
||||
animationScaleError: 0.25
|
||||
animationWrapMode: 0
|
||||
extraExposedTransformPaths: []
|
||||
extraUserProperties: []
|
||||
clipAnimations:
|
||||
- serializedVersion: 16
|
||||
name: Run_N_Land
|
||||
takeName: Run_N_Land
|
||||
internalID: 0
|
||||
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:
|
||||
- time: 0.1763074
|
||||
functionName: OnLand
|
||||
data:
|
||||
objectReferenceParameter: {instanceID: 0}
|
||||
floatParameter: 0
|
||||
intParameter: 0
|
||||
messageOptions: 0
|
||||
transformMask: []
|
||||
maskType: 3
|
||||
maskSource: {instanceID: 0}
|
||||
additiveReferencePoseFrame: 0
|
||||
isReadable: 0
|
||||
meshes:
|
||||
lODScreenPercentages: []
|
||||
globalScale: 1
|
||||
meshCompression: 0
|
||||
addColliders: 0
|
||||
useSRGBMaterialColor: 1
|
||||
sortHierarchyByName: 1
|
||||
importVisibility: 1
|
||||
importBlendShapes: 1
|
||||
importCameras: 1
|
||||
importLights: 1
|
||||
fileIdsGeneration: 2
|
||||
swapUVChannels: 0
|
||||
generateSecondaryUV: 0
|
||||
useFileUnits: 1
|
||||
keepQuads: 0
|
||||
weldVertices: 1
|
||||
bakeAxisConversion: 0
|
||||
preserveHierarchy: 0
|
||||
skinWeightsMode: 0
|
||||
maxBonesPerVertex: 4
|
||||
minBoneWeight: 0.001
|
||||
meshOptimizationFlags: -1
|
||||
indexFormat: 0
|
||||
secondaryUVAngleDistortion: 8
|
||||
secondaryUVAreaDistortion: 15.000001
|
||||
secondaryUVHardAngle: 88
|
||||
secondaryUVMarginMethod: 1
|
||||
secondaryUVMinLightmapResolution: 40
|
||||
secondaryUVMinObjectScale: 1
|
||||
secondaryUVPackMargin: 4
|
||||
useFileScale: 1
|
||||
tangentSpace:
|
||||
normalSmoothAngle: 60
|
||||
normalImportMode: 0
|
||||
tangentImportMode: 3
|
||||
normalCalculationMode: 4
|
||||
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0
|
||||
blendShapeNormalImportMode: 1
|
||||
normalSmoothingSource: 0
|
||||
referencedClips: []
|
||||
importAnimation: 1
|
||||
humanDescription:
|
||||
serializedVersion: 3
|
||||
human:
|
||||
- boneName: 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: Right_UpperLeg
|
||||
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: Right_LowerLeg
|
||||
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: Right_Foot
|
||||
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: Right_Toes
|
||||
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: 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: 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: UpperChest
|
||||
humanName: UpperChest
|
||||
limit:
|
||||
min: {x: 0, y: 0, z: 0}
|
||||
max: {x: 0, y: 0, z: 0}
|
||||
value: {x: 0, y: 0, z: 0}
|
||||
length: 0
|
||||
modified: 0
|
||||
- boneName: Right_Shoulder
|
||||
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: Right_UpperArm
|
||||
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: Right_LowerArm
|
||||
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: Right_Hand
|
||||
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: 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: 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: 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: Left_Shoulder
|
||||
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: Left_UpperArm
|
||||
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: Left_LowerArm
|
||||
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: Left_Hand
|
||||
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: Left_UpperLeg
|
||||
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: Left_LowerLeg
|
||||
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: Left_Foot
|
||||
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: Left_Toes
|
||||
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: Left_ThumbProximal
|
||||
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: Left_ThumbIntermediate
|
||||
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: Left_ThumbDistal
|
||||
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: Left_IndexProximal
|
||||
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: Left_IndexIntermediate
|
||||
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: Left_IndexDistal
|
||||
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: Left_MiddleProximal
|
||||
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: Left_MiddleIntermediate
|
||||
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: Left_MiddleDistal
|
||||
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: Left_RingProximal
|
||||
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: Left_RingIntermediate
|
||||
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: Left_RingDistal
|
||||
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: Left_PinkyProximal
|
||||
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: Left_PinkyIntermediate
|
||||
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: Left_PinkyDistal
|
||||
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: Right_ThumbProximal
|
||||
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: Right_ThumbIntermediate
|
||||
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: Right_ThumbDistal
|
||||
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: Right_IndexProximal
|
||||
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: Right_IndexIntermediate
|
||||
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: Right_IndexDistal
|
||||
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: Right_MiddleProximal
|
||||
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: Right_MiddleIntermediate
|
||||
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: Right_MiddleDistal
|
||||
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: Right_RingProximal
|
||||
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: Right_RingIntermediate
|
||||
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: Right_RingDistal
|
||||
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: Right_PinkyProximal
|
||||
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: Right_PinkyIntermediate
|
||||
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: Right_PinkyDistal
|
||||
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: Mannequin(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: Geometry
|
||||
parentName: Mannequin(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: Mannequin_Mesh
|
||||
parentName: Geometry
|
||||
position: {x: -0, y: 0, z: 0}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Skeleton
|
||||
parentName: Mannequin(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: Hips
|
||||
parentName: Skeleton
|
||||
position: {x: -0, y: 0.9810986, z: -0.01590455}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_UpperLeg
|
||||
parentName: Hips
|
||||
position: {x: -0.08610317, y: -0.053458035, z: -0.011470641}
|
||||
rotation: {x: 0.999839, y: -0.01775374, z: 0.000046300094, w: -0.0026074864}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_LowerLeg
|
||||
parentName: Left_UpperLeg
|
||||
position: {x: -2.9864513e-16, y: 0.4133444, z: -5.4956034e-17}
|
||||
rotation: {x: 0.034046065, y: 2.2687323e-19, z: 7.728622e-21, w: 0.9994203}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_Foot
|
||||
parentName: Left_LowerLeg
|
||||
position: {x: 0.0000000017320426, y: 0.41403946, z: 7.141509e-16}
|
||||
rotation: {x: -0.035700925, y: 0.049957544, z: -0.019575229, w: 0.9979211}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_Toes
|
||||
parentName: Left_Foot
|
||||
position: {x: 7.105427e-17, y: 0.07224803, z: -0.118065506}
|
||||
rotation: {x: -0.7071068, y: 8.7157646e-33, z: -8.7157646e-33, w: 0.7071068}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_ToesEnd
|
||||
parentName: Left_Toes
|
||||
position: {x: -0.0010026174, y: 0.06423476, z: 0.016843978}
|
||||
rotation: {x: 0.7070656, y: -0.0076321815, z: -0.0076321815, w: 0.7070656}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_UpperLeg
|
||||
parentName: Hips
|
||||
position: {x: 0.086103186, y: -0.053458147, z: -0.0114706475}
|
||||
rotation: {x: 0.0026075041, y: 0.000046300407, z: 0.01775374, w: 0.999839}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_LowerLeg
|
||||
parentName: Right_UpperLeg
|
||||
position: {x: 0.0000004514609, y: -0.41334414, z: 0.000000025994435}
|
||||
rotation: {x: 0.034046065, y: 2.2687323e-19, z: 7.728622e-21, w: 0.9994203}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_Foot
|
||||
parentName: Right_LowerLeg
|
||||
position: {x: -0.0000007472542, y: -0.41403967, z: -0.000000032847502}
|
||||
rotation: {x: -0.035700925, y: 0.049957544, z: -0.019575229, w: 0.9979211}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_Toes
|
||||
parentName: Right_Foot
|
||||
position: {x: -0.00000015643121, y: -0.07224799, z: 0.11807}
|
||||
rotation: {x: -0.7071068, y: 0, z: -0, w: 0.7071068}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_ToesEnd
|
||||
parentName: Right_Toes
|
||||
position: {x: 0.0010031584, y: -0.06423059, z: -0.016843898}
|
||||
rotation: {x: 0.7070656, y: -0.0076321815, z: -0.0076321815, w: 0.7070656}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Spine
|
||||
parentName: Hips
|
||||
position: {x: -0, y: 0.058229383, z: 0.0012229546}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Chest
|
||||
parentName: Spine
|
||||
position: {x: -0, y: 0.1034043, z: 0}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: UpperChest
|
||||
parentName: Chest
|
||||
position: {x: -0, y: 0.1034043, z: 0}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_Shoulder
|
||||
parentName: UpperChest
|
||||
position: {x: -0.0009571358, y: 0.19149224, z: -0.0087277945}
|
||||
rotation: {x: -0.0049494267, y: -0.113521874, z: 0.043275386, w: 0.99258024}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_UpperArm
|
||||
parentName: Left_Shoulder
|
||||
position: {x: -0.16743502, y: -5.684341e-16, z: -2.664535e-17}
|
||||
rotation: {x: 0.12673509, y: 0.03332071, z: 0.6809724, w: 0.72048914}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_LowerArm
|
||||
parentName: Left_UpperArm
|
||||
position: {x: -2.8421706e-16, y: 0.28508067, z: 0}
|
||||
rotation: {x: 0.020536564, y: 0.00832135, z: -0.020624585, w: 0.9995417}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_Hand
|
||||
parentName: Left_LowerArm
|
||||
position: {x: -2.4123817e-10, y: 0.24036221, z: -1.4210853e-16}
|
||||
rotation: {x: -0.047397237, y: -0.24003562, z: 0.013464749, w: 0.9695128}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_IndexProximal
|
||||
parentName: Left_Hand
|
||||
position: {x: 0.007815497, y: 0.0918443, z: 0.02657316}
|
||||
rotation: {x: -0.0000789147, y: -0.7104809, z: -0.006305193, w: 0.70368826}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_IndexIntermediate
|
||||
parentName: Left_IndexProximal
|
||||
position: {x: 9.079803e-16, y: 0.04209777, z: 3.2607592e-16}
|
||||
rotation: {x: 0.030199163, y: 0.00000005960465, z: -0.00000038841978, w: 0.9995439}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_IndexDistal
|
||||
parentName: Left_IndexIntermediate
|
||||
position: {x: -8.20111e-16, y: 0.02513925, z: -4.317065e-16}
|
||||
rotation: {x: 0.03945603, y: 0.000000016383924, z: 0.0000000332638, w: 0.9992213}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_IndexDistalEnd
|
||||
parentName: Left_IndexDistal
|
||||
position: {x: -1.1581012e-16, y: 0.024609203, z: -6.661337e-17}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_MiddleProximal
|
||||
parentName: Left_Hand
|
||||
position: {x: 0.012847862, y: 0.08609763, z: 0.003435423}
|
||||
rotation: {x: -0.004090429, y: -0.6610811, z: -0.004001968, w: 0.7502927}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_MiddleIntermediate
|
||||
parentName: Left_MiddleProximal
|
||||
position: {x: 2.7261607e-16, y: 0.051279362, z: 5.988264e-17}
|
||||
rotation: {x: 0.026233751, y: -0.000000029802322, z: -0.0000007133931, w: 0.99965584}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_MiddleDistal
|
||||
parentName: Left_MiddleIntermediate
|
||||
position: {x: -7.199101e-17, y: 0.028284006, z: -4.93648e-17}
|
||||
rotation: {x: 0.03347514, y: -0, z: -0, w: 0.9994396}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_MiddleDistalEnd
|
||||
parentName: Left_MiddleDistal
|
||||
position: {x: -1.7763565e-16, y: 0.023346113, z: -7.105426e-17}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_PinkyProximal
|
||||
parentName: Left_Hand
|
||||
position: {x: 0.004436847, y: 0.07288173, z: -0.029359013}
|
||||
rotation: {x: -0.02007038, y: -0.5504896, z: -0.008246153, w: 0.83456}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_PinkyIntermediate
|
||||
parentName: Left_PinkyProximal
|
||||
position: {x: 1.9539922e-16, y: 0.032272622, z: -1.4210853e-16}
|
||||
rotation: {x: 0.028115956, y: -0.00000008940699, z: -0.0000005941839, w: 0.9996047}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_PinkyDistal
|
||||
parentName: Left_PinkyIntermediate
|
||||
position: {x: -3.5527133e-17, y: 0.020224448, z: -7.1054265e-17}
|
||||
rotation: {x: 0.03643686, y: 0.00000014611446, z: 0.00000018696, w: 0.999336}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_PinkyDistalEnd
|
||||
parentName: Left_PinkyDistal
|
||||
position: {x: -1.2434495e-16, y: 0.018519057, z: 0}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_RingProximal
|
||||
parentName: Left_Hand
|
||||
position: {x: 0.009525569, y: 0.08161553, z: -0.012242405}
|
||||
rotation: {x: -0.017654313, y: -0.6026994, z: -0.0040520057, w: 0.79776275}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_RingIntermediate
|
||||
parentName: Left_RingProximal
|
||||
position: {x: 3.3750777e-16, y: 0.043630484, z: -1.4210853e-16}
|
||||
rotation: {x: 0.023556013, y: 0.00000026822087, z: 0.0000007636844, w: 0.99972254}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_RingDistal
|
||||
parentName: Left_RingIntermediate
|
||||
position: {x: 1.7763566e-17, y: 0.027115494, z: -1.065814e-16}
|
||||
rotation: {x: 0.03908592, y: -0.000000019744585, z: 0.00000042049942, w: 0.9992359}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_RingDistalEnd
|
||||
parentName: Left_RingDistal
|
||||
position: {x: -7.105426e-17, y: 0.02095726, z: -7.105426e-17}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_ThumbProximal
|
||||
parentName: Left_Hand
|
||||
position: {x: -0.00080496486, y: 0.028816883, z: 0.023514476}
|
||||
rotation: {x: 0.1796032, y: 0.8841741, z: 0.4239896, w: -0.07881452}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_ThumbIntermediate
|
||||
parentName: Left_ThumbProximal
|
||||
position: {x: 2.4357445e-15, y: 0.027578257, z: 0.0038183592}
|
||||
rotation: {x: 0.1278054, y: -0, z: -0, w: 0.9917993}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_ThumbDistal
|
||||
parentName: Left_ThumbIntermediate
|
||||
position: {x: -2.2737365e-15, y: 0.044597257, z: -0.006869915}
|
||||
rotation: {x: -0.045421924, y: -0.00000036741366, z: -0.0000008691409, w: 0.9989679}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_ThumbDistalEnd
|
||||
parentName: Left_ThumbDistal
|
||||
position: {x: -4.2632555e-16, y: 0.029458016, z: 0}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Neck
|
||||
parentName: UpperChest
|
||||
position: {x: -0, y: 0.25104657, z: -0.015329581}
|
||||
rotation: {x: 0.060688436, y: -0, z: -0, w: 0.9981568}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Head
|
||||
parentName: Neck
|
||||
position: {x: -0, y: 0.12747401, z: 0}
|
||||
rotation: {x: -0.060688436, y: 0, z: -0, w: 0.9981568}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Jaw
|
||||
parentName: Head
|
||||
position: {x: -0, y: -0.00763539, z: 0.012895278}
|
||||
rotation: {x: 0.15949209, y: 0.68888485, z: 0.15949209, w: 0.68888485}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_Eye
|
||||
parentName: Head
|
||||
position: {x: -0.03330326, y: 0.034598116, z: 0.0867403}
|
||||
rotation: {x: 0, y: 0.7071068, z: 0, w: 0.7071068}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_Eye
|
||||
parentName: Head
|
||||
position: {x: 0.033303294, y: 0.03459628, z: 0.0867403}
|
||||
rotation: {x: 0.7071068, y: 4.3297806e-17, z: 0.7071068, w: -4.3297806e-17}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Neck_Twist_A
|
||||
parentName: Neck
|
||||
position: {x: -0, y: 0.063737005, z: 0}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_Shoulder
|
||||
parentName: UpperChest
|
||||
position: {x: 0.0009571358, y: 0.19149381, z: -0.008727803}
|
||||
rotation: {x: 0.99258024, y: -0.04327539, z: -0.113521874, w: 0.004949396}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_UpperArm
|
||||
parentName: Right_Shoulder
|
||||
position: {x: 0.16743432, y: -0.0000022099182, z: 0.00000012213746}
|
||||
rotation: {x: 0.1267345, y: 0.033320885, z: 0.68096745, w: 0.720494}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_LowerArm
|
||||
parentName: Right_UpperArm
|
||||
position: {x: 0.0000037273983, y: -0.285085, z: -0.00000035927226}
|
||||
rotation: {x: 0.020541133, y: 0.008317431, z: -0.020620903, w: 0.99954176}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_Hand
|
||||
parentName: Right_LowerArm
|
||||
position: {x: 0.0000014923929, y: -0.24036367, z: 0.0000017856368}
|
||||
rotation: {x: -0.047397237, y: -0.24003562, z: 0.013464749, w: 0.9695128}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_IndexProximal
|
||||
parentName: Right_Hand
|
||||
position: {x: -0.0078223245, y: -0.0918393, z: -0.026574574}
|
||||
rotation: {x: -0.00008773989, y: -0.7104814, z: -0.0063276542, w: 0.7036876}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_IndexIntermediate
|
||||
parentName: Right_IndexProximal
|
||||
position: {x: 0.0000006924457, y: -0.04210151, z: -0.0000013631077}
|
||||
rotation: {x: 0.03020306, y: -0.0000005662439, z: 0.000012195228, w: 0.99954385}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_IndexDistal
|
||||
parentName: Right_IndexIntermediate
|
||||
position: {x: -0.00000032847043, y: -0.025139209, z: -0.0000005960629}
|
||||
rotation: {x: 0.03948371, y: -0.000000052504312, z: -0.000005515076, w: 0.99922025}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_IndexDistalEnd
|
||||
parentName: Right_IndexDistal
|
||||
position: {x: 0.00000023984484, y: -0.024609355, z: 0.0000006271131}
|
||||
rotation: {x: -5.5511138e-17, y: 0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_MiddleProximal
|
||||
parentName: Right_Hand
|
||||
position: {x: -0.012848663, y: -0.08609768, z: -0.0034359337}
|
||||
rotation: {x: -0.0040856875, y: -0.6610817, z: -0.0040004994, w: 0.7502922}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_MiddleIntermediate
|
||||
parentName: Right_MiddleProximal
|
||||
position: {x: 0.000000014272595, y: -0.051275954, z: 0.0000009747695}
|
||||
rotation: {x: 0.026226329, y: -0.0000007450579, z: -0.0000027469353, w: 0.9996561}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_MiddleDistal
|
||||
parentName: Right_MiddleIntermediate
|
||||
position: {x: 0.00000014287376, y: -0.028283618, z: 0.00000019378916}
|
||||
rotation: {x: 0.03347514, y: -0, z: -0, w: 0.9994396}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_MiddleDistalEnd
|
||||
parentName: Right_MiddleDistal
|
||||
position: {x: 0.000000038619483, y: -0.023345316, z: 0.0000005352584}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_PinkyProximal
|
||||
parentName: Right_Hand
|
||||
position: {x: -0.0044381507, y: -0.07288141, z: 0.029358566}
|
||||
rotation: {x: -0.020058475, y: -0.55049545, z: -0.008249418, w: 0.83455646}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_PinkyIntermediate
|
||||
parentName: Right_PinkyProximal
|
||||
position: {x: 0.00000045734515, y: -0.032268908, z: 0.00000088312623}
|
||||
rotation: {x: 0.02811499, y: -0.0000035166731, z: -0.00000016298141, w: 0.9996047}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_PinkyDistal
|
||||
parentName: Right_PinkyIntermediate
|
||||
position: {x: 0.00000023899057, y: -0.02022493, z: 0.00000055474345}
|
||||
rotation: {x: 0.03642403, y: -0.0000024211556, z: -0.000008829222, w: 0.9993365}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_PinkyDistalEnd
|
||||
parentName: Right_PinkyDistal
|
||||
position: {x: 0.000000632002, y: -0.018518865, z: 0.0000001154108}
|
||||
rotation: {x: -1.7347236e-17, y: 0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_RingProximal
|
||||
parentName: Right_Hand
|
||||
position: {x: -0.00952738, y: -0.08161427, z: 0.012242128}
|
||||
rotation: {x: -0.017649079, y: -0.6027014, z: -0.0040535578, w: 0.7977614}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_RingIntermediate
|
||||
parentName: Right_RingProximal
|
||||
position: {x: 0.0000000695935, y: -0.04362872, z: 0.00000080048335}
|
||||
rotation: {x: 0.023547903, y: 0.0000024139879, z: 0.0000069094813, w: 0.9997228}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_RingDistal
|
||||
parentName: Right_RingIntermediate
|
||||
position: {x: -0.000000290747, y: -0.02711462, z: 0.0000000181098}
|
||||
rotation: {x: 0.039100695, y: 0.00000009656897, z: -0.000004755179, w: 0.99923533}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_RingDistalEnd
|
||||
parentName: Right_RingDistal
|
||||
position: {x: 0.00000008856214, y: -0.020957856, z: 0.0000005565459}
|
||||
rotation: {x: 9.02056e-17, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_ThumbProximal
|
||||
parentName: Right_Hand
|
||||
position: {x: 0.00080341793, y: -0.028816395, z: -0.023514695}
|
||||
rotation: {x: 0.17960793, y: 0.8841713, z: 0.42399347, w: -0.07881395}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_ThumbIntermediate
|
||||
parentName: Right_ThumbProximal
|
||||
position: {x: 0.00000015009721, y: -0.02757781, z: -0.0038183848}
|
||||
rotation: {x: 0.12780538, y: -0, z: -0, w: 0.9917993}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_ThumbDistal
|
||||
parentName: Right_ThumbIntermediate
|
||||
position: {x: 0.0000007817755, y: -0.044594634, z: 0.0068707783}
|
||||
rotation: {x: -0.04541878, y: -0.000003060937, z: 0.000004811603, w: 0.99896806}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_ThumbDistalEnd
|
||||
parentName: Right_ThumbDistal
|
||||
position: {x: 0.00000020228964, y: -0.029458148, z: 0.0000009551683}
|
||||
rotation: {x: -2.7755574e-17, y: 0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
armTwist: 1
|
||||
foreArmTwist: 0
|
||||
upperLegTwist: 1
|
||||
legTwist: 0
|
||||
armStretch: 0
|
||||
legStretch: 0
|
||||
feetSpacing: 0
|
||||
globalScale: 1
|
||||
rootMotionBoneName:
|
||||
hasTranslationDoF: 1
|
||||
hasExtraRoot: 0
|
||||
skeletonHasParents: 1
|
||||
lastHumanDescriptionAvatarSource: {fileID: 9000000, guid: 36078ab0369161e49a29d349ae3e0739,
|
||||
type: 3}
|
||||
autoGenerateAvatarMappingIfUnspecified: 1
|
||||
animationType: 3
|
||||
humanoidOversampling: 1
|
||||
avatarSetup: 2
|
||||
addHumanoidExtraRootOnlyWhenUsingAvatar: 0
|
||||
additionalBone: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
Binary file not shown.
@@ -0,0 +1,933 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 8269a9f8cf495034c817722ac21f309f
|
||||
ModelImporter:
|
||||
serializedVersion: 20200
|
||||
internalIDToNameTable:
|
||||
- first:
|
||||
74: 1657602633327794031
|
||||
second: Walk_N
|
||||
externalObjects: {}
|
||||
materials:
|
||||
materialImportMode: 1
|
||||
materialName: 0
|
||||
materialSearch: 1
|
||||
materialLocation: 1
|
||||
animations:
|
||||
legacyGenerateAnimations: 4
|
||||
bakeSimulation: 0
|
||||
resampleCurves: 1
|
||||
optimizeGameObjects: 0
|
||||
motionNodeName:
|
||||
rigImportErrors:
|
||||
rigImportWarnings:
|
||||
animationImportErrors:
|
||||
animationImportWarnings:
|
||||
animationRetargetingWarnings:
|
||||
animationDoRetargetingWarnings: 0
|
||||
importAnimatedCustomProperties: 0
|
||||
importConstraints: 0
|
||||
animationCompression: 1
|
||||
animationRotationError: 0.05
|
||||
animationPositionError: 0.05
|
||||
animationScaleError: 0.25
|
||||
animationWrapMode: 0
|
||||
extraExposedTransformPaths: []
|
||||
extraUserProperties: []
|
||||
clipAnimations:
|
||||
- serializedVersion: 16
|
||||
name: Walk_N
|
||||
takeName: Walk_N
|
||||
internalID: 0
|
||||
firstFrame: 0
|
||||
lastFrame: 29
|
||||
wrapMode: 0
|
||||
orientationOffsetY: 0
|
||||
level: 0
|
||||
cycleOffset: 0
|
||||
loop: 0
|
||||
hasAdditiveReferencePose: 0
|
||||
loopTime: 1
|
||||
loopBlend: 1
|
||||
loopBlendOrientation: 1
|
||||
loopBlendPositionY: 1
|
||||
loopBlendPositionXZ: 1
|
||||
keepOriginalOrientation: 1
|
||||
keepOriginalPositionY: 1
|
||||
keepOriginalPositionXZ: 1
|
||||
heightFromFeet: 0
|
||||
mirror: 0
|
||||
bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
|
||||
curves: []
|
||||
events:
|
||||
- time: 0.31872225
|
||||
functionName: OnFootstep
|
||||
data:
|
||||
objectReferenceParameter: {instanceID: 0}
|
||||
floatParameter: 0
|
||||
intParameter: 0
|
||||
messageOptions: 0
|
||||
- time: 0.7970205
|
||||
functionName: OnFootstep
|
||||
data:
|
||||
objectReferenceParameter: {instanceID: 0}
|
||||
floatParameter: 0
|
||||
intParameter: 0
|
||||
messageOptions: 0
|
||||
transformMask: []
|
||||
maskType: 3
|
||||
maskSource: {instanceID: 0}
|
||||
additiveReferencePoseFrame: 0
|
||||
isReadable: 0
|
||||
meshes:
|
||||
lODScreenPercentages: []
|
||||
globalScale: 1
|
||||
meshCompression: 0
|
||||
addColliders: 0
|
||||
useSRGBMaterialColor: 1
|
||||
sortHierarchyByName: 1
|
||||
importVisibility: 1
|
||||
importBlendShapes: 1
|
||||
importCameras: 1
|
||||
importLights: 1
|
||||
fileIdsGeneration: 2
|
||||
swapUVChannels: 0
|
||||
generateSecondaryUV: 0
|
||||
useFileUnits: 1
|
||||
keepQuads: 0
|
||||
weldVertices: 1
|
||||
bakeAxisConversion: 0
|
||||
preserveHierarchy: 0
|
||||
skinWeightsMode: 0
|
||||
maxBonesPerVertex: 4
|
||||
minBoneWeight: 0.001
|
||||
meshOptimizationFlags: -1
|
||||
indexFormat: 0
|
||||
secondaryUVAngleDistortion: 8
|
||||
secondaryUVAreaDistortion: 15.000001
|
||||
secondaryUVHardAngle: 88
|
||||
secondaryUVMarginMethod: 1
|
||||
secondaryUVMinLightmapResolution: 40
|
||||
secondaryUVMinObjectScale: 1
|
||||
secondaryUVPackMargin: 4
|
||||
useFileScale: 1
|
||||
tangentSpace:
|
||||
normalSmoothAngle: 60
|
||||
normalImportMode: 0
|
||||
tangentImportMode: 3
|
||||
normalCalculationMode: 4
|
||||
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0
|
||||
blendShapeNormalImportMode: 1
|
||||
normalSmoothingSource: 0
|
||||
referencedClips: []
|
||||
importAnimation: 1
|
||||
humanDescription:
|
||||
serializedVersion: 3
|
||||
human:
|
||||
- boneName: 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: Right_UpperLeg
|
||||
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: Right_LowerLeg
|
||||
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: Right_Foot
|
||||
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: Right_Toes
|
||||
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: 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: 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: UpperChest
|
||||
humanName: UpperChest
|
||||
limit:
|
||||
min: {x: 0, y: 0, z: 0}
|
||||
max: {x: 0, y: 0, z: 0}
|
||||
value: {x: 0, y: 0, z: 0}
|
||||
length: 0
|
||||
modified: 0
|
||||
- boneName: Right_Shoulder
|
||||
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: Right_UpperArm
|
||||
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: Right_LowerArm
|
||||
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: Right_Hand
|
||||
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: 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: 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: 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: Left_Shoulder
|
||||
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: Left_UpperArm
|
||||
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: Left_LowerArm
|
||||
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: Left_Hand
|
||||
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: Left_UpperLeg
|
||||
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: Left_LowerLeg
|
||||
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: Left_Foot
|
||||
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: Left_Toes
|
||||
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: Left_ThumbProximal
|
||||
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: Left_ThumbIntermediate
|
||||
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: Left_ThumbDistal
|
||||
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: Left_IndexProximal
|
||||
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: Left_IndexIntermediate
|
||||
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: Left_IndexDistal
|
||||
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: Left_MiddleProximal
|
||||
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: Left_MiddleIntermediate
|
||||
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: Left_MiddleDistal
|
||||
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: Left_RingProximal
|
||||
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: Left_RingIntermediate
|
||||
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: Left_RingDistal
|
||||
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: Left_PinkyProximal
|
||||
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: Left_PinkyIntermediate
|
||||
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: Left_PinkyDistal
|
||||
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: Right_ThumbProximal
|
||||
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: Right_ThumbIntermediate
|
||||
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: Right_ThumbDistal
|
||||
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: Right_IndexProximal
|
||||
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: Right_IndexIntermediate
|
||||
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: Right_IndexDistal
|
||||
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: Right_MiddleProximal
|
||||
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: Right_MiddleIntermediate
|
||||
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: Right_MiddleDistal
|
||||
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: Right_RingProximal
|
||||
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: Right_RingIntermediate
|
||||
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: Right_RingDistal
|
||||
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: Right_PinkyProximal
|
||||
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: Right_PinkyIntermediate
|
||||
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: Right_PinkyDistal
|
||||
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: Mannequin(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: Geometry
|
||||
parentName: Mannequin(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: Mannequin_Mesh
|
||||
parentName: Geometry
|
||||
position: {x: -0, y: 0, z: 0}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Skeleton
|
||||
parentName: Mannequin(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: Hips
|
||||
parentName: Skeleton
|
||||
position: {x: -0, y: 0.9810986, z: -0.01590455}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_UpperLeg
|
||||
parentName: Hips
|
||||
position: {x: -0.08610317, y: -0.053458035, z: -0.011470641}
|
||||
rotation: {x: 0.999839, y: -0.01775374, z: 0.000046300094, w: -0.0026074864}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_LowerLeg
|
||||
parentName: Left_UpperLeg
|
||||
position: {x: -2.9864513e-16, y: 0.4133444, z: -5.4956034e-17}
|
||||
rotation: {x: 0.034046065, y: 2.2687323e-19, z: 7.728622e-21, w: 0.9994203}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_Foot
|
||||
parentName: Left_LowerLeg
|
||||
position: {x: 0.0000000017320426, y: 0.41403946, z: 7.141509e-16}
|
||||
rotation: {x: -0.035700925, y: 0.049957544, z: -0.019575229, w: 0.9979211}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_Toes
|
||||
parentName: Left_Foot
|
||||
position: {x: 7.105427e-17, y: 0.07224803, z: -0.118065506}
|
||||
rotation: {x: -0.7071068, y: 8.7157646e-33, z: -8.7157646e-33, w: 0.7071068}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_ToesEnd
|
||||
parentName: Left_Toes
|
||||
position: {x: -0.0010026174, y: 0.06423476, z: 0.016843978}
|
||||
rotation: {x: 0.7070656, y: -0.0076321815, z: -0.0076321815, w: 0.7070656}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_UpperLeg
|
||||
parentName: Hips
|
||||
position: {x: 0.086103186, y: -0.053458147, z: -0.0114706475}
|
||||
rotation: {x: 0.0026075041, y: 0.000046300407, z: 0.01775374, w: 0.999839}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_LowerLeg
|
||||
parentName: Right_UpperLeg
|
||||
position: {x: 0.0000004514609, y: -0.41334414, z: 0.000000025994435}
|
||||
rotation: {x: 0.034046065, y: 2.2687323e-19, z: 7.728622e-21, w: 0.9994203}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_Foot
|
||||
parentName: Right_LowerLeg
|
||||
position: {x: -0.0000007472542, y: -0.41403967, z: -0.000000032847502}
|
||||
rotation: {x: -0.035700925, y: 0.049957544, z: -0.019575229, w: 0.9979211}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_Toes
|
||||
parentName: Right_Foot
|
||||
position: {x: -0.00000015643121, y: -0.07224799, z: 0.11807}
|
||||
rotation: {x: -0.7071068, y: 0, z: -0, w: 0.7071068}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_ToesEnd
|
||||
parentName: Right_Toes
|
||||
position: {x: 0.0010031584, y: -0.06423059, z: -0.016843898}
|
||||
rotation: {x: 0.7070656, y: -0.0076321815, z: -0.0076321815, w: 0.7070656}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Spine
|
||||
parentName: Hips
|
||||
position: {x: -0, y: 0.058229383, z: 0.0012229546}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Chest
|
||||
parentName: Spine
|
||||
position: {x: -0, y: 0.1034043, z: 0}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: UpperChest
|
||||
parentName: Chest
|
||||
position: {x: -0, y: 0.1034043, z: 0}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_Shoulder
|
||||
parentName: UpperChest
|
||||
position: {x: -0.0009571358, y: 0.19149224, z: -0.0087277945}
|
||||
rotation: {x: -0.0049494267, y: -0.113521874, z: 0.043275386, w: 0.99258024}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_UpperArm
|
||||
parentName: Left_Shoulder
|
||||
position: {x: -0.16743502, y: -5.684341e-16, z: -2.664535e-17}
|
||||
rotation: {x: 0.12673509, y: 0.03332071, z: 0.6809724, w: 0.72048914}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_LowerArm
|
||||
parentName: Left_UpperArm
|
||||
position: {x: -2.8421706e-16, y: 0.28508067, z: 0}
|
||||
rotation: {x: 0.020536564, y: 0.00832135, z: -0.020624585, w: 0.9995417}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_Hand
|
||||
parentName: Left_LowerArm
|
||||
position: {x: -2.4123817e-10, y: 0.24036221, z: -1.4210853e-16}
|
||||
rotation: {x: -0.047397237, y: -0.24003562, z: 0.013464749, w: 0.9695128}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_IndexProximal
|
||||
parentName: Left_Hand
|
||||
position: {x: 0.007815497, y: 0.0918443, z: 0.02657316}
|
||||
rotation: {x: -0.0000789147, y: -0.7104809, z: -0.006305193, w: 0.70368826}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_IndexIntermediate
|
||||
parentName: Left_IndexProximal
|
||||
position: {x: 9.079803e-16, y: 0.04209777, z: 3.2607592e-16}
|
||||
rotation: {x: 0.030199163, y: 0.00000005960465, z: -0.00000038841978, w: 0.9995439}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_IndexDistal
|
||||
parentName: Left_IndexIntermediate
|
||||
position: {x: -8.20111e-16, y: 0.02513925, z: -4.317065e-16}
|
||||
rotation: {x: 0.03945603, y: 0.000000016383924, z: 0.0000000332638, w: 0.9992213}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_IndexDistalEnd
|
||||
parentName: Left_IndexDistal
|
||||
position: {x: -1.1581012e-16, y: 0.024609203, z: -6.661337e-17}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_MiddleProximal
|
||||
parentName: Left_Hand
|
||||
position: {x: 0.012847862, y: 0.08609763, z: 0.003435423}
|
||||
rotation: {x: -0.004090429, y: -0.6610811, z: -0.004001968, w: 0.7502927}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_MiddleIntermediate
|
||||
parentName: Left_MiddleProximal
|
||||
position: {x: 2.7261607e-16, y: 0.051279362, z: 5.988264e-17}
|
||||
rotation: {x: 0.026233751, y: -0.000000029802322, z: -0.0000007133931, w: 0.99965584}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_MiddleDistal
|
||||
parentName: Left_MiddleIntermediate
|
||||
position: {x: -7.199101e-17, y: 0.028284006, z: -4.93648e-17}
|
||||
rotation: {x: 0.03347514, y: -0, z: -0, w: 0.9994396}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_MiddleDistalEnd
|
||||
parentName: Left_MiddleDistal
|
||||
position: {x: -1.7763565e-16, y: 0.023346113, z: -7.105426e-17}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_PinkyProximal
|
||||
parentName: Left_Hand
|
||||
position: {x: 0.004436847, y: 0.07288173, z: -0.029359013}
|
||||
rotation: {x: -0.02007038, y: -0.5504896, z: -0.008246153, w: 0.83456}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_PinkyIntermediate
|
||||
parentName: Left_PinkyProximal
|
||||
position: {x: 1.9539922e-16, y: 0.032272622, z: -1.4210853e-16}
|
||||
rotation: {x: 0.028115956, y: -0.00000008940699, z: -0.0000005941839, w: 0.9996047}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_PinkyDistal
|
||||
parentName: Left_PinkyIntermediate
|
||||
position: {x: -3.5527133e-17, y: 0.020224448, z: -7.1054265e-17}
|
||||
rotation: {x: 0.03643686, y: 0.00000014611446, z: 0.00000018696, w: 0.999336}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_PinkyDistalEnd
|
||||
parentName: Left_PinkyDistal
|
||||
position: {x: -1.2434495e-16, y: 0.018519057, z: 0}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_RingProximal
|
||||
parentName: Left_Hand
|
||||
position: {x: 0.009525569, y: 0.08161553, z: -0.012242405}
|
||||
rotation: {x: -0.017654313, y: -0.6026994, z: -0.0040520057, w: 0.79776275}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_RingIntermediate
|
||||
parentName: Left_RingProximal
|
||||
position: {x: 3.3750777e-16, y: 0.043630484, z: -1.4210853e-16}
|
||||
rotation: {x: 0.023556013, y: 0.00000026822087, z: 0.0000007636844, w: 0.99972254}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_RingDistal
|
||||
parentName: Left_RingIntermediate
|
||||
position: {x: 1.7763566e-17, y: 0.027115494, z: -1.065814e-16}
|
||||
rotation: {x: 0.03908592, y: -0.000000019744585, z: 0.00000042049942, w: 0.9992359}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_RingDistalEnd
|
||||
parentName: Left_RingDistal
|
||||
position: {x: -7.105426e-17, y: 0.02095726, z: -7.105426e-17}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_ThumbProximal
|
||||
parentName: Left_Hand
|
||||
position: {x: -0.00080496486, y: 0.028816883, z: 0.023514476}
|
||||
rotation: {x: 0.1796032, y: 0.8841741, z: 0.4239896, w: -0.07881452}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_ThumbIntermediate
|
||||
parentName: Left_ThumbProximal
|
||||
position: {x: 2.4357445e-15, y: 0.027578257, z: 0.0038183592}
|
||||
rotation: {x: 0.1278054, y: -0, z: -0, w: 0.9917993}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_ThumbDistal
|
||||
parentName: Left_ThumbIntermediate
|
||||
position: {x: -2.2737365e-15, y: 0.044597257, z: -0.006869915}
|
||||
rotation: {x: -0.045421924, y: -0.00000036741366, z: -0.0000008691409, w: 0.9989679}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_ThumbDistalEnd
|
||||
parentName: Left_ThumbDistal
|
||||
position: {x: -4.2632555e-16, y: 0.029458016, z: 0}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Neck
|
||||
parentName: UpperChest
|
||||
position: {x: -0, y: 0.25104657, z: -0.015329581}
|
||||
rotation: {x: 0.060688436, y: -0, z: -0, w: 0.9981568}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Head
|
||||
parentName: Neck
|
||||
position: {x: -0, y: 0.12747401, z: 0}
|
||||
rotation: {x: -0.060688436, y: 0, z: -0, w: 0.9981568}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Jaw
|
||||
parentName: Head
|
||||
position: {x: -0, y: -0.00763539, z: 0.012895278}
|
||||
rotation: {x: 0.15949209, y: 0.68888485, z: 0.15949209, w: 0.68888485}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_Eye
|
||||
parentName: Head
|
||||
position: {x: -0.03330326, y: 0.034598116, z: 0.0867403}
|
||||
rotation: {x: 0, y: 0.7071068, z: 0, w: 0.7071068}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_Eye
|
||||
parentName: Head
|
||||
position: {x: 0.033303294, y: 0.03459628, z: 0.0867403}
|
||||
rotation: {x: 0.7071068, y: 4.3297806e-17, z: 0.7071068, w: -4.3297806e-17}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Neck_Twist_A
|
||||
parentName: Neck
|
||||
position: {x: -0, y: 0.063737005, z: 0}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_Shoulder
|
||||
parentName: UpperChest
|
||||
position: {x: 0.0009571358, y: 0.19149381, z: -0.008727803}
|
||||
rotation: {x: 0.99258024, y: -0.04327539, z: -0.113521874, w: 0.004949396}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_UpperArm
|
||||
parentName: Right_Shoulder
|
||||
position: {x: 0.16743432, y: -0.0000022099182, z: 0.00000012213746}
|
||||
rotation: {x: 0.1267345, y: 0.033320885, z: 0.68096745, w: 0.720494}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_LowerArm
|
||||
parentName: Right_UpperArm
|
||||
position: {x: 0.0000037273983, y: -0.285085, z: -0.00000035927226}
|
||||
rotation: {x: 0.020541133, y: 0.008317431, z: -0.020620903, w: 0.99954176}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_Hand
|
||||
parentName: Right_LowerArm
|
||||
position: {x: 0.0000014923929, y: -0.24036367, z: 0.0000017856368}
|
||||
rotation: {x: -0.047397237, y: -0.24003562, z: 0.013464749, w: 0.9695128}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_IndexProximal
|
||||
parentName: Right_Hand
|
||||
position: {x: -0.0078223245, y: -0.0918393, z: -0.026574574}
|
||||
rotation: {x: -0.00008773989, y: -0.7104814, z: -0.0063276542, w: 0.7036876}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_IndexIntermediate
|
||||
parentName: Right_IndexProximal
|
||||
position: {x: 0.0000006924457, y: -0.04210151, z: -0.0000013631077}
|
||||
rotation: {x: 0.03020306, y: -0.0000005662439, z: 0.000012195228, w: 0.99954385}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_IndexDistal
|
||||
parentName: Right_IndexIntermediate
|
||||
position: {x: -0.00000032847043, y: -0.025139209, z: -0.0000005960629}
|
||||
rotation: {x: 0.03948371, y: -0.000000052504312, z: -0.000005515076, w: 0.99922025}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_IndexDistalEnd
|
||||
parentName: Right_IndexDistal
|
||||
position: {x: 0.00000023984484, y: -0.024609355, z: 0.0000006271131}
|
||||
rotation: {x: -5.5511138e-17, y: 0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_MiddleProximal
|
||||
parentName: Right_Hand
|
||||
position: {x: -0.012848663, y: -0.08609768, z: -0.0034359337}
|
||||
rotation: {x: -0.0040856875, y: -0.6610817, z: -0.0040004994, w: 0.7502922}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_MiddleIntermediate
|
||||
parentName: Right_MiddleProximal
|
||||
position: {x: 0.000000014272595, y: -0.051275954, z: 0.0000009747695}
|
||||
rotation: {x: 0.026226329, y: -0.0000007450579, z: -0.0000027469353, w: 0.9996561}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_MiddleDistal
|
||||
parentName: Right_MiddleIntermediate
|
||||
position: {x: 0.00000014287376, y: -0.028283618, z: 0.00000019378916}
|
||||
rotation: {x: 0.03347514, y: -0, z: -0, w: 0.9994396}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_MiddleDistalEnd
|
||||
parentName: Right_MiddleDistal
|
||||
position: {x: 0.000000038619483, y: -0.023345316, z: 0.0000005352584}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_PinkyProximal
|
||||
parentName: Right_Hand
|
||||
position: {x: -0.0044381507, y: -0.07288141, z: 0.029358566}
|
||||
rotation: {x: -0.020058475, y: -0.55049545, z: -0.008249418, w: 0.83455646}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_PinkyIntermediate
|
||||
parentName: Right_PinkyProximal
|
||||
position: {x: 0.00000045734515, y: -0.032268908, z: 0.00000088312623}
|
||||
rotation: {x: 0.02811499, y: -0.0000035166731, z: -0.00000016298141, w: 0.9996047}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_PinkyDistal
|
||||
parentName: Right_PinkyIntermediate
|
||||
position: {x: 0.00000023899057, y: -0.02022493, z: 0.00000055474345}
|
||||
rotation: {x: 0.03642403, y: -0.0000024211556, z: -0.000008829222, w: 0.9993365}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_PinkyDistalEnd
|
||||
parentName: Right_PinkyDistal
|
||||
position: {x: 0.000000632002, y: -0.018518865, z: 0.0000001154108}
|
||||
rotation: {x: -1.7347236e-17, y: 0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_RingProximal
|
||||
parentName: Right_Hand
|
||||
position: {x: -0.00952738, y: -0.08161427, z: 0.012242128}
|
||||
rotation: {x: -0.017649079, y: -0.6027014, z: -0.0040535578, w: 0.7977614}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_RingIntermediate
|
||||
parentName: Right_RingProximal
|
||||
position: {x: 0.0000000695935, y: -0.04362872, z: 0.00000080048335}
|
||||
rotation: {x: 0.023547903, y: 0.0000024139879, z: 0.0000069094813, w: 0.9997228}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_RingDistal
|
||||
parentName: Right_RingIntermediate
|
||||
position: {x: -0.000000290747, y: -0.02711462, z: 0.0000000181098}
|
||||
rotation: {x: 0.039100695, y: 0.00000009656897, z: -0.000004755179, w: 0.99923533}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_RingDistalEnd
|
||||
parentName: Right_RingDistal
|
||||
position: {x: 0.00000008856214, y: -0.020957856, z: 0.0000005565459}
|
||||
rotation: {x: 9.02056e-17, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_ThumbProximal
|
||||
parentName: Right_Hand
|
||||
position: {x: 0.00080341793, y: -0.028816395, z: -0.023514695}
|
||||
rotation: {x: 0.17960793, y: 0.8841713, z: 0.42399347, w: -0.07881395}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_ThumbIntermediate
|
||||
parentName: Right_ThumbProximal
|
||||
position: {x: 0.00000015009721, y: -0.02757781, z: -0.0038183848}
|
||||
rotation: {x: 0.12780538, y: -0, z: -0, w: 0.9917993}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_ThumbDistal
|
||||
parentName: Right_ThumbIntermediate
|
||||
position: {x: 0.0000007817755, y: -0.044594634, z: 0.0068707783}
|
||||
rotation: {x: -0.04541878, y: -0.000003060937, z: 0.000004811603, w: 0.99896806}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_ThumbDistalEnd
|
||||
parentName: Right_ThumbDistal
|
||||
position: {x: 0.00000020228964, y: -0.029458148, z: 0.0000009551683}
|
||||
rotation: {x: -2.7755574e-17, y: 0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
armTwist: 1
|
||||
foreArmTwist: 0
|
||||
upperLegTwist: 1
|
||||
legTwist: 0
|
||||
armStretch: 0
|
||||
legStretch: 0
|
||||
feetSpacing: 0
|
||||
globalScale: 1
|
||||
rootMotionBoneName:
|
||||
hasTranslationDoF: 1
|
||||
hasExtraRoot: 0
|
||||
skeletonHasParents: 1
|
||||
lastHumanDescriptionAvatarSource: {fileID: 9000000, guid: 36078ab0369161e49a29d349ae3e0739,
|
||||
type: 3}
|
||||
autoGenerateAvatarMappingIfUnspecified: 1
|
||||
animationType: 3
|
||||
humanoidOversampling: 1
|
||||
avatarSetup: 2
|
||||
addHumanoidExtraRootOnlyWhenUsingAvatar: 0
|
||||
additionalBone: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
Binary file not shown.
@@ -0,0 +1,926 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 325a26d62b61fa94cb3c97c435efebc5
|
||||
ModelImporter:
|
||||
serializedVersion: 20200
|
||||
internalIDToNameTable:
|
||||
- first:
|
||||
74: 3062299877480904481
|
||||
second: Walk_N_Land
|
||||
externalObjects: {}
|
||||
materials:
|
||||
materialImportMode: 1
|
||||
materialName: 0
|
||||
materialSearch: 1
|
||||
materialLocation: 1
|
||||
animations:
|
||||
legacyGenerateAnimations: 4
|
||||
bakeSimulation: 0
|
||||
resampleCurves: 1
|
||||
optimizeGameObjects: 0
|
||||
motionNodeName:
|
||||
rigImportErrors:
|
||||
rigImportWarnings:
|
||||
animationImportErrors:
|
||||
animationImportWarnings:
|
||||
animationRetargetingWarnings:
|
||||
animationDoRetargetingWarnings: 0
|
||||
importAnimatedCustomProperties: 0
|
||||
importConstraints: 0
|
||||
animationCompression: 3
|
||||
animationRotationError: 0.05
|
||||
animationPositionError: 0.05
|
||||
animationScaleError: 0.25
|
||||
animationWrapMode: 0
|
||||
extraExposedTransformPaths: []
|
||||
extraUserProperties: []
|
||||
clipAnimations:
|
||||
- serializedVersion: 16
|
||||
name: Walk_N_Land
|
||||
takeName: Walk_N_Land
|
||||
internalID: 0
|
||||
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:
|
||||
- time: 0.1691976
|
||||
functionName: OnLand
|
||||
data:
|
||||
objectReferenceParameter: {instanceID: 0}
|
||||
floatParameter: 0
|
||||
intParameter: 0
|
||||
messageOptions: 0
|
||||
transformMask: []
|
||||
maskType: 3
|
||||
maskSource: {instanceID: 0}
|
||||
additiveReferencePoseFrame: 0
|
||||
isReadable: 0
|
||||
meshes:
|
||||
lODScreenPercentages: []
|
||||
globalScale: 1
|
||||
meshCompression: 0
|
||||
addColliders: 0
|
||||
useSRGBMaterialColor: 1
|
||||
sortHierarchyByName: 1
|
||||
importVisibility: 1
|
||||
importBlendShapes: 1
|
||||
importCameras: 1
|
||||
importLights: 1
|
||||
fileIdsGeneration: 2
|
||||
swapUVChannels: 0
|
||||
generateSecondaryUV: 0
|
||||
useFileUnits: 1
|
||||
keepQuads: 0
|
||||
weldVertices: 1
|
||||
bakeAxisConversion: 0
|
||||
preserveHierarchy: 0
|
||||
skinWeightsMode: 0
|
||||
maxBonesPerVertex: 4
|
||||
minBoneWeight: 0.001
|
||||
meshOptimizationFlags: -1
|
||||
indexFormat: 0
|
||||
secondaryUVAngleDistortion: 8
|
||||
secondaryUVAreaDistortion: 15.000001
|
||||
secondaryUVHardAngle: 88
|
||||
secondaryUVMarginMethod: 1
|
||||
secondaryUVMinLightmapResolution: 40
|
||||
secondaryUVMinObjectScale: 1
|
||||
secondaryUVPackMargin: 4
|
||||
useFileScale: 1
|
||||
tangentSpace:
|
||||
normalSmoothAngle: 60
|
||||
normalImportMode: 0
|
||||
tangentImportMode: 3
|
||||
normalCalculationMode: 4
|
||||
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0
|
||||
blendShapeNormalImportMode: 1
|
||||
normalSmoothingSource: 0
|
||||
referencedClips: []
|
||||
importAnimation: 1
|
||||
humanDescription:
|
||||
serializedVersion: 3
|
||||
human:
|
||||
- boneName: 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: Right_UpperLeg
|
||||
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: Right_LowerLeg
|
||||
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: Right_Foot
|
||||
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: Right_Toes
|
||||
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: 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: 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: UpperChest
|
||||
humanName: UpperChest
|
||||
limit:
|
||||
min: {x: 0, y: 0, z: 0}
|
||||
max: {x: 0, y: 0, z: 0}
|
||||
value: {x: 0, y: 0, z: 0}
|
||||
length: 0
|
||||
modified: 0
|
||||
- boneName: Right_Shoulder
|
||||
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: Right_UpperArm
|
||||
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: Right_LowerArm
|
||||
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: Right_Hand
|
||||
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: 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: 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: 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: Left_Shoulder
|
||||
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: Left_UpperArm
|
||||
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: Left_LowerArm
|
||||
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: Left_Hand
|
||||
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: Left_UpperLeg
|
||||
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: Left_LowerLeg
|
||||
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: Left_Foot
|
||||
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: Left_Toes
|
||||
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: Left_ThumbProximal
|
||||
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: Left_ThumbIntermediate
|
||||
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: Left_ThumbDistal
|
||||
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: Left_IndexProximal
|
||||
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: Left_IndexIntermediate
|
||||
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: Left_IndexDistal
|
||||
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: Left_MiddleProximal
|
||||
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: Left_MiddleIntermediate
|
||||
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: Left_MiddleDistal
|
||||
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: Left_RingProximal
|
||||
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: Left_RingIntermediate
|
||||
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: Left_RingDistal
|
||||
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: Left_PinkyProximal
|
||||
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: Left_PinkyIntermediate
|
||||
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: Left_PinkyDistal
|
||||
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: Right_ThumbProximal
|
||||
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: Right_ThumbIntermediate
|
||||
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: Right_ThumbDistal
|
||||
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: Right_IndexProximal
|
||||
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: Right_IndexIntermediate
|
||||
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: Right_IndexDistal
|
||||
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: Right_MiddleProximal
|
||||
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: Right_MiddleIntermediate
|
||||
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: Right_MiddleDistal
|
||||
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: Right_RingProximal
|
||||
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: Right_RingIntermediate
|
||||
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: Right_RingDistal
|
||||
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: Right_PinkyProximal
|
||||
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: Right_PinkyIntermediate
|
||||
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: Right_PinkyDistal
|
||||
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: Mannequin(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: Geometry
|
||||
parentName: Mannequin(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: Mannequin_Mesh
|
||||
parentName: Geometry
|
||||
position: {x: -0, y: 0, z: 0}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Skeleton
|
||||
parentName: Mannequin(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: Hips
|
||||
parentName: Skeleton
|
||||
position: {x: -0, y: 0.9810986, z: -0.01590455}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_UpperLeg
|
||||
parentName: Hips
|
||||
position: {x: -0.08610317, y: -0.053458035, z: -0.011470641}
|
||||
rotation: {x: 0.999839, y: -0.01775374, z: 0.000046300094, w: -0.0026074864}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_LowerLeg
|
||||
parentName: Left_UpperLeg
|
||||
position: {x: -2.9864513e-16, y: 0.4133444, z: -5.4956034e-17}
|
||||
rotation: {x: 0.034046065, y: 2.2687323e-19, z: 7.728622e-21, w: 0.9994203}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_Foot
|
||||
parentName: Left_LowerLeg
|
||||
position: {x: 0.0000000017320426, y: 0.41403946, z: 7.141509e-16}
|
||||
rotation: {x: -0.035700925, y: 0.049957544, z: -0.019575229, w: 0.9979211}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_Toes
|
||||
parentName: Left_Foot
|
||||
position: {x: 7.105427e-17, y: 0.07224803, z: -0.118065506}
|
||||
rotation: {x: -0.7071068, y: 8.7157646e-33, z: -8.7157646e-33, w: 0.7071068}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_ToesEnd
|
||||
parentName: Left_Toes
|
||||
position: {x: -0.0010026174, y: 0.06423476, z: 0.016843978}
|
||||
rotation: {x: 0.7070656, y: -0.0076321815, z: -0.0076321815, w: 0.7070656}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_UpperLeg
|
||||
parentName: Hips
|
||||
position: {x: 0.086103186, y: -0.053458147, z: -0.0114706475}
|
||||
rotation: {x: 0.0026075041, y: 0.000046300407, z: 0.01775374, w: 0.999839}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_LowerLeg
|
||||
parentName: Right_UpperLeg
|
||||
position: {x: 0.0000004514609, y: -0.41334414, z: 0.000000025994435}
|
||||
rotation: {x: 0.034046065, y: 2.2687323e-19, z: 7.728622e-21, w: 0.9994203}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_Foot
|
||||
parentName: Right_LowerLeg
|
||||
position: {x: -0.0000007472542, y: -0.41403967, z: -0.000000032847502}
|
||||
rotation: {x: -0.035700925, y: 0.049957544, z: -0.019575229, w: 0.9979211}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_Toes
|
||||
parentName: Right_Foot
|
||||
position: {x: -0.00000015643121, y: -0.07224799, z: 0.11807}
|
||||
rotation: {x: -0.7071068, y: 0, z: -0, w: 0.7071068}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_ToesEnd
|
||||
parentName: Right_Toes
|
||||
position: {x: 0.0010031584, y: -0.06423059, z: -0.016843898}
|
||||
rotation: {x: 0.7070656, y: -0.0076321815, z: -0.0076321815, w: 0.7070656}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Spine
|
||||
parentName: Hips
|
||||
position: {x: -0, y: 0.058229383, z: 0.0012229546}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Chest
|
||||
parentName: Spine
|
||||
position: {x: -0, y: 0.1034043, z: 0}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: UpperChest
|
||||
parentName: Chest
|
||||
position: {x: -0, y: 0.1034043, z: 0}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_Shoulder
|
||||
parentName: UpperChest
|
||||
position: {x: -0.0009571358, y: 0.19149224, z: -0.0087277945}
|
||||
rotation: {x: -0.0049494267, y: -0.113521874, z: 0.043275386, w: 0.99258024}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_UpperArm
|
||||
parentName: Left_Shoulder
|
||||
position: {x: -0.16743502, y: -5.684341e-16, z: -2.664535e-17}
|
||||
rotation: {x: 0.12673509, y: 0.03332071, z: 0.6809724, w: 0.72048914}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_LowerArm
|
||||
parentName: Left_UpperArm
|
||||
position: {x: -2.8421706e-16, y: 0.28508067, z: 0}
|
||||
rotation: {x: 0.020536564, y: 0.00832135, z: -0.020624585, w: 0.9995417}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_Hand
|
||||
parentName: Left_LowerArm
|
||||
position: {x: -2.4123817e-10, y: 0.24036221, z: -1.4210853e-16}
|
||||
rotation: {x: -0.047397237, y: -0.24003562, z: 0.013464749, w: 0.9695128}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_IndexProximal
|
||||
parentName: Left_Hand
|
||||
position: {x: 0.007815497, y: 0.0918443, z: 0.02657316}
|
||||
rotation: {x: -0.0000789147, y: -0.7104809, z: -0.006305193, w: 0.70368826}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_IndexIntermediate
|
||||
parentName: Left_IndexProximal
|
||||
position: {x: 9.079803e-16, y: 0.04209777, z: 3.2607592e-16}
|
||||
rotation: {x: 0.030199163, y: 0.00000005960465, z: -0.00000038841978, w: 0.9995439}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_IndexDistal
|
||||
parentName: Left_IndexIntermediate
|
||||
position: {x: -8.20111e-16, y: 0.02513925, z: -4.317065e-16}
|
||||
rotation: {x: 0.03945603, y: 0.000000016383924, z: 0.0000000332638, w: 0.9992213}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_IndexDistalEnd
|
||||
parentName: Left_IndexDistal
|
||||
position: {x: -1.1581012e-16, y: 0.024609203, z: -6.661337e-17}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_MiddleProximal
|
||||
parentName: Left_Hand
|
||||
position: {x: 0.012847862, y: 0.08609763, z: 0.003435423}
|
||||
rotation: {x: -0.004090429, y: -0.6610811, z: -0.004001968, w: 0.7502927}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_MiddleIntermediate
|
||||
parentName: Left_MiddleProximal
|
||||
position: {x: 2.7261607e-16, y: 0.051279362, z: 5.988264e-17}
|
||||
rotation: {x: 0.026233751, y: -0.000000029802322, z: -0.0000007133931, w: 0.99965584}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_MiddleDistal
|
||||
parentName: Left_MiddleIntermediate
|
||||
position: {x: -7.199101e-17, y: 0.028284006, z: -4.93648e-17}
|
||||
rotation: {x: 0.03347514, y: -0, z: -0, w: 0.9994396}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_MiddleDistalEnd
|
||||
parentName: Left_MiddleDistal
|
||||
position: {x: -1.7763565e-16, y: 0.023346113, z: -7.105426e-17}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_PinkyProximal
|
||||
parentName: Left_Hand
|
||||
position: {x: 0.004436847, y: 0.07288173, z: -0.029359013}
|
||||
rotation: {x: -0.02007038, y: -0.5504896, z: -0.008246153, w: 0.83456}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_PinkyIntermediate
|
||||
parentName: Left_PinkyProximal
|
||||
position: {x: 1.9539922e-16, y: 0.032272622, z: -1.4210853e-16}
|
||||
rotation: {x: 0.028115956, y: -0.00000008940699, z: -0.0000005941839, w: 0.9996047}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_PinkyDistal
|
||||
parentName: Left_PinkyIntermediate
|
||||
position: {x: -3.5527133e-17, y: 0.020224448, z: -7.1054265e-17}
|
||||
rotation: {x: 0.03643686, y: 0.00000014611446, z: 0.00000018696, w: 0.999336}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_PinkyDistalEnd
|
||||
parentName: Left_PinkyDistal
|
||||
position: {x: -1.2434495e-16, y: 0.018519057, z: 0}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_RingProximal
|
||||
parentName: Left_Hand
|
||||
position: {x: 0.009525569, y: 0.08161553, z: -0.012242405}
|
||||
rotation: {x: -0.017654313, y: -0.6026994, z: -0.0040520057, w: 0.79776275}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_RingIntermediate
|
||||
parentName: Left_RingProximal
|
||||
position: {x: 3.3750777e-16, y: 0.043630484, z: -1.4210853e-16}
|
||||
rotation: {x: 0.023556013, y: 0.00000026822087, z: 0.0000007636844, w: 0.99972254}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_RingDistal
|
||||
parentName: Left_RingIntermediate
|
||||
position: {x: 1.7763566e-17, y: 0.027115494, z: -1.065814e-16}
|
||||
rotation: {x: 0.03908592, y: -0.000000019744585, z: 0.00000042049942, w: 0.9992359}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_RingDistalEnd
|
||||
parentName: Left_RingDistal
|
||||
position: {x: -7.105426e-17, y: 0.02095726, z: -7.105426e-17}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_ThumbProximal
|
||||
parentName: Left_Hand
|
||||
position: {x: -0.00080496486, y: 0.028816883, z: 0.023514476}
|
||||
rotation: {x: 0.1796032, y: 0.8841741, z: 0.4239896, w: -0.07881452}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_ThumbIntermediate
|
||||
parentName: Left_ThumbProximal
|
||||
position: {x: 2.4357445e-15, y: 0.027578257, z: 0.0038183592}
|
||||
rotation: {x: 0.1278054, y: -0, z: -0, w: 0.9917993}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_ThumbDistal
|
||||
parentName: Left_ThumbIntermediate
|
||||
position: {x: -2.2737365e-15, y: 0.044597257, z: -0.006869915}
|
||||
rotation: {x: -0.045421924, y: -0.00000036741366, z: -0.0000008691409, w: 0.9989679}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_ThumbDistalEnd
|
||||
parentName: Left_ThumbDistal
|
||||
position: {x: -4.2632555e-16, y: 0.029458016, z: 0}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Neck
|
||||
parentName: UpperChest
|
||||
position: {x: -0, y: 0.25104657, z: -0.015329581}
|
||||
rotation: {x: 0.060688436, y: -0, z: -0, w: 0.9981568}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Head
|
||||
parentName: Neck
|
||||
position: {x: -0, y: 0.12747401, z: 0}
|
||||
rotation: {x: -0.060688436, y: 0, z: -0, w: 0.9981568}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Jaw
|
||||
parentName: Head
|
||||
position: {x: -0, y: -0.00763539, z: 0.012895278}
|
||||
rotation: {x: 0.15949209, y: 0.68888485, z: 0.15949209, w: 0.68888485}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_Eye
|
||||
parentName: Head
|
||||
position: {x: -0.03330326, y: 0.034598116, z: 0.0867403}
|
||||
rotation: {x: 0, y: 0.7071068, z: 0, w: 0.7071068}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_Eye
|
||||
parentName: Head
|
||||
position: {x: 0.033303294, y: 0.03459628, z: 0.0867403}
|
||||
rotation: {x: 0.7071068, y: 4.3297806e-17, z: 0.7071068, w: -4.3297806e-17}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Neck_Twist_A
|
||||
parentName: Neck
|
||||
position: {x: -0, y: 0.063737005, z: 0}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_Shoulder
|
||||
parentName: UpperChest
|
||||
position: {x: 0.0009571358, y: 0.19149381, z: -0.008727803}
|
||||
rotation: {x: 0.99258024, y: -0.04327539, z: -0.113521874, w: 0.004949396}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_UpperArm
|
||||
parentName: Right_Shoulder
|
||||
position: {x: 0.16743432, y: -0.0000022099182, z: 0.00000012213746}
|
||||
rotation: {x: 0.1267345, y: 0.033320885, z: 0.68096745, w: 0.720494}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_LowerArm
|
||||
parentName: Right_UpperArm
|
||||
position: {x: 0.0000037273983, y: -0.285085, z: -0.00000035927226}
|
||||
rotation: {x: 0.020541133, y: 0.008317431, z: -0.020620903, w: 0.99954176}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_Hand
|
||||
parentName: Right_LowerArm
|
||||
position: {x: 0.0000014923929, y: -0.24036367, z: 0.0000017856368}
|
||||
rotation: {x: -0.047397237, y: -0.24003562, z: 0.013464749, w: 0.9695128}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_IndexProximal
|
||||
parentName: Right_Hand
|
||||
position: {x: -0.0078223245, y: -0.0918393, z: -0.026574574}
|
||||
rotation: {x: -0.00008773989, y: -0.7104814, z: -0.0063276542, w: 0.7036876}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_IndexIntermediate
|
||||
parentName: Right_IndexProximal
|
||||
position: {x: 0.0000006924457, y: -0.04210151, z: -0.0000013631077}
|
||||
rotation: {x: 0.03020306, y: -0.0000005662439, z: 0.000012195228, w: 0.99954385}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_IndexDistal
|
||||
parentName: Right_IndexIntermediate
|
||||
position: {x: -0.00000032847043, y: -0.025139209, z: -0.0000005960629}
|
||||
rotation: {x: 0.03948371, y: -0.000000052504312, z: -0.000005515076, w: 0.99922025}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_IndexDistalEnd
|
||||
parentName: Right_IndexDistal
|
||||
position: {x: 0.00000023984484, y: -0.024609355, z: 0.0000006271131}
|
||||
rotation: {x: -5.5511138e-17, y: 0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_MiddleProximal
|
||||
parentName: Right_Hand
|
||||
position: {x: -0.012848663, y: -0.08609768, z: -0.0034359337}
|
||||
rotation: {x: -0.0040856875, y: -0.6610817, z: -0.0040004994, w: 0.7502922}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_MiddleIntermediate
|
||||
parentName: Right_MiddleProximal
|
||||
position: {x: 0.000000014272595, y: -0.051275954, z: 0.0000009747695}
|
||||
rotation: {x: 0.026226329, y: -0.0000007450579, z: -0.0000027469353, w: 0.9996561}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_MiddleDistal
|
||||
parentName: Right_MiddleIntermediate
|
||||
position: {x: 0.00000014287376, y: -0.028283618, z: 0.00000019378916}
|
||||
rotation: {x: 0.03347514, y: -0, z: -0, w: 0.9994396}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_MiddleDistalEnd
|
||||
parentName: Right_MiddleDistal
|
||||
position: {x: 0.000000038619483, y: -0.023345316, z: 0.0000005352584}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_PinkyProximal
|
||||
parentName: Right_Hand
|
||||
position: {x: -0.0044381507, y: -0.07288141, z: 0.029358566}
|
||||
rotation: {x: -0.020058475, y: -0.55049545, z: -0.008249418, w: 0.83455646}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_PinkyIntermediate
|
||||
parentName: Right_PinkyProximal
|
||||
position: {x: 0.00000045734515, y: -0.032268908, z: 0.00000088312623}
|
||||
rotation: {x: 0.02811499, y: -0.0000035166731, z: -0.00000016298141, w: 0.9996047}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_PinkyDistal
|
||||
parentName: Right_PinkyIntermediate
|
||||
position: {x: 0.00000023899057, y: -0.02022493, z: 0.00000055474345}
|
||||
rotation: {x: 0.03642403, y: -0.0000024211556, z: -0.000008829222, w: 0.9993365}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_PinkyDistalEnd
|
||||
parentName: Right_PinkyDistal
|
||||
position: {x: 0.000000632002, y: -0.018518865, z: 0.0000001154108}
|
||||
rotation: {x: -1.7347236e-17, y: 0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_RingProximal
|
||||
parentName: Right_Hand
|
||||
position: {x: -0.00952738, y: -0.08161427, z: 0.012242128}
|
||||
rotation: {x: -0.017649079, y: -0.6027014, z: -0.0040535578, w: 0.7977614}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_RingIntermediate
|
||||
parentName: Right_RingProximal
|
||||
position: {x: 0.0000000695935, y: -0.04362872, z: 0.00000080048335}
|
||||
rotation: {x: 0.023547903, y: 0.0000024139879, z: 0.0000069094813, w: 0.9997228}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_RingDistal
|
||||
parentName: Right_RingIntermediate
|
||||
position: {x: -0.000000290747, y: -0.02711462, z: 0.0000000181098}
|
||||
rotation: {x: 0.039100695, y: 0.00000009656897, z: -0.000004755179, w: 0.99923533}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_RingDistalEnd
|
||||
parentName: Right_RingDistal
|
||||
position: {x: 0.00000008856214, y: -0.020957856, z: 0.0000005565459}
|
||||
rotation: {x: 9.02056e-17, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_ThumbProximal
|
||||
parentName: Right_Hand
|
||||
position: {x: 0.00080341793, y: -0.028816395, z: -0.023514695}
|
||||
rotation: {x: 0.17960793, y: 0.8841713, z: 0.42399347, w: -0.07881395}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_ThumbIntermediate
|
||||
parentName: Right_ThumbProximal
|
||||
position: {x: 0.00000015009721, y: -0.02757781, z: -0.0038183848}
|
||||
rotation: {x: 0.12780538, y: -0, z: -0, w: 0.9917993}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_ThumbDistal
|
||||
parentName: Right_ThumbIntermediate
|
||||
position: {x: 0.0000007817755, y: -0.044594634, z: 0.0068707783}
|
||||
rotation: {x: -0.04541878, y: -0.000003060937, z: 0.000004811603, w: 0.99896806}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_ThumbDistalEnd
|
||||
parentName: Right_ThumbDistal
|
||||
position: {x: 0.00000020228964, y: -0.029458148, z: 0.0000009551683}
|
||||
rotation: {x: -2.7755574e-17, y: 0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
armTwist: 1
|
||||
foreArmTwist: 0
|
||||
upperLegTwist: 1
|
||||
legTwist: 0
|
||||
armStretch: 0
|
||||
legStretch: 0
|
||||
feetSpacing: 0
|
||||
globalScale: 1
|
||||
rootMotionBoneName:
|
||||
hasTranslationDoF: 1
|
||||
hasExtraRoot: 0
|
||||
skeletonHasParents: 1
|
||||
lastHumanDescriptionAvatarSource: {fileID: 9000000, guid: 36078ab0369161e49a29d349ae3e0739,
|
||||
type: 3}
|
||||
autoGenerateAvatarMappingIfUnspecified: 1
|
||||
animationType: 3
|
||||
humanoidOversampling: 1
|
||||
avatarSetup: 2
|
||||
addHumanoidExtraRootOnlyWhenUsingAvatar: 0
|
||||
additionalBone: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
Binary file not shown.
@@ -0,0 +1,924 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 12e52e465ed793a4d801955e9f964a82
|
||||
ModelImporter:
|
||||
serializedVersion: 20200
|
||||
internalIDToNameTable:
|
||||
- first:
|
||||
74: -3100369314251171874
|
||||
second: Idle
|
||||
externalObjects: {}
|
||||
materials:
|
||||
materialImportMode: 1
|
||||
materialName: 0
|
||||
materialSearch: 1
|
||||
materialLocation: 1
|
||||
animations:
|
||||
legacyGenerateAnimations: 4
|
||||
bakeSimulation: 0
|
||||
resampleCurves: 1
|
||||
optimizeGameObjects: 0
|
||||
motionNodeName:
|
||||
rigImportErrors:
|
||||
rigImportWarnings: "Copied Avatar Rig Configuration mis-match. Bone length in
|
||||
copied configuration does not match position in animation file:\n\t'Left_UpperLeg'
|
||||
: position error = 3.626586 mm\n\t'Left_Foot' : position error = 12.542060
|
||||
mm\n\t'Left_Toes' : position error = 30.265436 mm\n\t'Right_UpperLeg' : position
|
||||
error = 3.626659 mm\n\t'Right_Foot' : position error = 12.543159 mm\n\t'Right_Toes'
|
||||
: position error = 30.260939 mm\n"
|
||||
animationImportErrors:
|
||||
animationImportWarnings:
|
||||
animationRetargetingWarnings:
|
||||
animationDoRetargetingWarnings: 0
|
||||
importAnimatedCustomProperties: 0
|
||||
importConstraints: 0
|
||||
animationCompression: 1
|
||||
animationRotationError: 0.05
|
||||
animationPositionError: 0.05
|
||||
animationScaleError: 0.25
|
||||
animationWrapMode: 0
|
||||
extraExposedTransformPaths: []
|
||||
extraUserProperties: []
|
||||
clipAnimations:
|
||||
- serializedVersion: 16
|
||||
name: Idle
|
||||
takeName: Idle
|
||||
internalID: 0
|
||||
firstFrame: 1
|
||||
lastFrame: 149
|
||||
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: []
|
||||
maskType: 3
|
||||
maskSource: {instanceID: 0}
|
||||
additiveReferencePoseFrame: 1
|
||||
isReadable: 0
|
||||
meshes:
|
||||
lODScreenPercentages: []
|
||||
globalScale: 1
|
||||
meshCompression: 0
|
||||
addColliders: 0
|
||||
useSRGBMaterialColor: 1
|
||||
sortHierarchyByName: 1
|
||||
importVisibility: 1
|
||||
importBlendShapes: 1
|
||||
importCameras: 1
|
||||
importLights: 1
|
||||
fileIdsGeneration: 2
|
||||
swapUVChannels: 0
|
||||
generateSecondaryUV: 0
|
||||
useFileUnits: 1
|
||||
keepQuads: 0
|
||||
weldVertices: 1
|
||||
bakeAxisConversion: 0
|
||||
preserveHierarchy: 0
|
||||
skinWeightsMode: 0
|
||||
maxBonesPerVertex: 4
|
||||
minBoneWeight: 0.001
|
||||
meshOptimizationFlags: -1
|
||||
indexFormat: 0
|
||||
secondaryUVAngleDistortion: 8
|
||||
secondaryUVAreaDistortion: 15.000001
|
||||
secondaryUVHardAngle: 88
|
||||
secondaryUVMarginMethod: 1
|
||||
secondaryUVMinLightmapResolution: 40
|
||||
secondaryUVMinObjectScale: 1
|
||||
secondaryUVPackMargin: 4
|
||||
useFileScale: 1
|
||||
tangentSpace:
|
||||
normalSmoothAngle: 60
|
||||
normalImportMode: 0
|
||||
tangentImportMode: 3
|
||||
normalCalculationMode: 4
|
||||
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0
|
||||
blendShapeNormalImportMode: 1
|
||||
normalSmoothingSource: 0
|
||||
referencedClips: []
|
||||
importAnimation: 1
|
||||
humanDescription:
|
||||
serializedVersion: 3
|
||||
human:
|
||||
- boneName: 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: Right_UpperLeg
|
||||
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: Right_LowerLeg
|
||||
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: Right_Foot
|
||||
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: Right_Toes
|
||||
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: 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: 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: UpperChest
|
||||
humanName: UpperChest
|
||||
limit:
|
||||
min: {x: 0, y: 0, z: 0}
|
||||
max: {x: 0, y: 0, z: 0}
|
||||
value: {x: 0, y: 0, z: 0}
|
||||
length: 0
|
||||
modified: 0
|
||||
- boneName: Right_Shoulder
|
||||
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: Right_UpperArm
|
||||
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: Right_LowerArm
|
||||
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: Right_Hand
|
||||
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: 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: 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: 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: Left_Shoulder
|
||||
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: Left_UpperArm
|
||||
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: Left_LowerArm
|
||||
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: Left_Hand
|
||||
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: Left_UpperLeg
|
||||
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: Left_LowerLeg
|
||||
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: Left_Foot
|
||||
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: Left_Toes
|
||||
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: Left_ThumbProximal
|
||||
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: Left_ThumbIntermediate
|
||||
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: Left_ThumbDistal
|
||||
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: Left_IndexProximal
|
||||
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: Left_IndexIntermediate
|
||||
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: Left_IndexDistal
|
||||
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: Left_MiddleProximal
|
||||
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: Left_MiddleIntermediate
|
||||
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: Left_MiddleDistal
|
||||
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: Left_RingProximal
|
||||
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: Left_RingIntermediate
|
||||
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: Left_RingDistal
|
||||
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: Left_PinkyProximal
|
||||
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: Left_PinkyIntermediate
|
||||
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: Left_PinkyDistal
|
||||
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: Right_ThumbProximal
|
||||
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: Right_ThumbIntermediate
|
||||
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: Right_ThumbDistal
|
||||
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: Right_IndexProximal
|
||||
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: Right_IndexIntermediate
|
||||
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: Right_IndexDistal
|
||||
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: Right_MiddleProximal
|
||||
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: Right_MiddleIntermediate
|
||||
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: Right_MiddleDistal
|
||||
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: Right_RingProximal
|
||||
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: Right_RingIntermediate
|
||||
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: Right_RingDistal
|
||||
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: Right_PinkyProximal
|
||||
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: Right_PinkyIntermediate
|
||||
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: Right_PinkyDistal
|
||||
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: Mannequin(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: Geometry
|
||||
parentName: Mannequin(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: Mannequin_Mesh
|
||||
parentName: Geometry
|
||||
position: {x: -0, y: 0, z: 0}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Skeleton
|
||||
parentName: Mannequin(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: Hips
|
||||
parentName: Skeleton
|
||||
position: {x: -0, y: 0.9810986, z: -0.01590455}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_UpperLeg
|
||||
parentName: Hips
|
||||
position: {x: -0.08610317, y: -0.053458035, z: -0.011470641}
|
||||
rotation: {x: 0.999839, y: -0.01775374, z: 0.000046300094, w: -0.0026074864}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_LowerLeg
|
||||
parentName: Left_UpperLeg
|
||||
position: {x: -2.9864513e-16, y: 0.4133444, z: -5.4956034e-17}
|
||||
rotation: {x: 0.034046065, y: 2.2687323e-19, z: 7.728622e-21, w: 0.9994203}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_Foot
|
||||
parentName: Left_LowerLeg
|
||||
position: {x: 0.0000000017320426, y: 0.41403946, z: 7.141509e-16}
|
||||
rotation: {x: -0.035700925, y: 0.049957544, z: -0.019575229, w: 0.9979211}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_Toes
|
||||
parentName: Left_Foot
|
||||
position: {x: 7.105427e-17, y: 0.07224803, z: -0.118065506}
|
||||
rotation: {x: -0.7071068, y: 8.7157646e-33, z: -8.7157646e-33, w: 0.7071068}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_ToesEnd
|
||||
parentName: Left_Toes
|
||||
position: {x: -0.0010026174, y: 0.06423476, z: 0.016843978}
|
||||
rotation: {x: 0.7070656, y: -0.0076321815, z: -0.0076321815, w: 0.7070656}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_UpperLeg
|
||||
parentName: Hips
|
||||
position: {x: 0.086103186, y: -0.053458147, z: -0.0114706475}
|
||||
rotation: {x: 0.0026075041, y: 0.000046300407, z: 0.01775374, w: 0.999839}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_LowerLeg
|
||||
parentName: Right_UpperLeg
|
||||
position: {x: 0.0000004514609, y: -0.41334414, z: 0.000000025994435}
|
||||
rotation: {x: 0.034046065, y: 2.2687323e-19, z: 7.728622e-21, w: 0.9994203}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_Foot
|
||||
parentName: Right_LowerLeg
|
||||
position: {x: -0.0000007472542, y: -0.41403967, z: -0.000000032847502}
|
||||
rotation: {x: -0.035700925, y: 0.049957544, z: -0.019575229, w: 0.9979211}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_Toes
|
||||
parentName: Right_Foot
|
||||
position: {x: -0.00000015643121, y: -0.07224799, z: 0.11807}
|
||||
rotation: {x: -0.7071068, y: 0, z: -0, w: 0.7071068}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_ToesEnd
|
||||
parentName: Right_Toes
|
||||
position: {x: 0.0010031584, y: -0.06423059, z: -0.016843898}
|
||||
rotation: {x: 0.7070656, y: -0.0076321815, z: -0.0076321815, w: 0.7070656}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Spine
|
||||
parentName: Hips
|
||||
position: {x: -0, y: 0.058229383, z: 0.0012229546}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Chest
|
||||
parentName: Spine
|
||||
position: {x: -0, y: 0.1034043, z: 0}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: UpperChest
|
||||
parentName: Chest
|
||||
position: {x: -0, y: 0.1034043, z: 0}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_Shoulder
|
||||
parentName: UpperChest
|
||||
position: {x: -0.0009571358, y: 0.19149224, z: -0.0087277945}
|
||||
rotation: {x: -0.0049494267, y: -0.113521874, z: 0.043275386, w: 0.99258024}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_UpperArm
|
||||
parentName: Left_Shoulder
|
||||
position: {x: -0.16743502, y: -5.684341e-16, z: -2.664535e-17}
|
||||
rotation: {x: 0.12673509, y: 0.03332071, z: 0.6809724, w: 0.72048914}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_LowerArm
|
||||
parentName: Left_UpperArm
|
||||
position: {x: -2.8421706e-16, y: 0.28508067, z: 0}
|
||||
rotation: {x: 0.020536564, y: 0.00832135, z: -0.020624585, w: 0.9995417}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_Hand
|
||||
parentName: Left_LowerArm
|
||||
position: {x: -2.4123817e-10, y: 0.24036221, z: -1.4210853e-16}
|
||||
rotation: {x: -0.047397237, y: -0.24003562, z: 0.013464749, w: 0.9695128}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_IndexProximal
|
||||
parentName: Left_Hand
|
||||
position: {x: 0.007815497, y: 0.0918443, z: 0.02657316}
|
||||
rotation: {x: -0.0000789147, y: -0.7104809, z: -0.006305193, w: 0.70368826}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_IndexIntermediate
|
||||
parentName: Left_IndexProximal
|
||||
position: {x: 9.079803e-16, y: 0.04209777, z: 3.2607592e-16}
|
||||
rotation: {x: 0.030199163, y: 0.00000005960465, z: -0.00000038841978, w: 0.9995439}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_IndexDistal
|
||||
parentName: Left_IndexIntermediate
|
||||
position: {x: -8.20111e-16, y: 0.02513925, z: -4.317065e-16}
|
||||
rotation: {x: 0.03945603, y: 0.000000016383924, z: 0.0000000332638, w: 0.9992213}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_IndexDistalEnd
|
||||
parentName: Left_IndexDistal
|
||||
position: {x: -1.1581012e-16, y: 0.024609203, z: -6.661337e-17}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_MiddleProximal
|
||||
parentName: Left_Hand
|
||||
position: {x: 0.012847862, y: 0.08609763, z: 0.003435423}
|
||||
rotation: {x: -0.004090429, y: -0.6610811, z: -0.004001968, w: 0.7502927}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_MiddleIntermediate
|
||||
parentName: Left_MiddleProximal
|
||||
position: {x: 2.7261607e-16, y: 0.051279362, z: 5.988264e-17}
|
||||
rotation: {x: 0.026233751, y: -0.000000029802322, z: -0.0000007133931, w: 0.99965584}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_MiddleDistal
|
||||
parentName: Left_MiddleIntermediate
|
||||
position: {x: -7.199101e-17, y: 0.028284006, z: -4.93648e-17}
|
||||
rotation: {x: 0.03347514, y: -0, z: -0, w: 0.9994396}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_MiddleDistalEnd
|
||||
parentName: Left_MiddleDistal
|
||||
position: {x: -1.7763565e-16, y: 0.023346113, z: -7.105426e-17}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_PinkyProximal
|
||||
parentName: Left_Hand
|
||||
position: {x: 0.004436847, y: 0.07288173, z: -0.029359013}
|
||||
rotation: {x: -0.02007038, y: -0.5504896, z: -0.008246153, w: 0.83456}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_PinkyIntermediate
|
||||
parentName: Left_PinkyProximal
|
||||
position: {x: 1.9539922e-16, y: 0.032272622, z: -1.4210853e-16}
|
||||
rotation: {x: 0.028115956, y: -0.00000008940699, z: -0.0000005941839, w: 0.9996047}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_PinkyDistal
|
||||
parentName: Left_PinkyIntermediate
|
||||
position: {x: -3.5527133e-17, y: 0.020224448, z: -7.1054265e-17}
|
||||
rotation: {x: 0.03643686, y: 0.00000014611446, z: 0.00000018696, w: 0.999336}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_PinkyDistalEnd
|
||||
parentName: Left_PinkyDistal
|
||||
position: {x: -1.2434495e-16, y: 0.018519057, z: 0}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_RingProximal
|
||||
parentName: Left_Hand
|
||||
position: {x: 0.009525569, y: 0.08161553, z: -0.012242405}
|
||||
rotation: {x: -0.017654313, y: -0.6026994, z: -0.0040520057, w: 0.79776275}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_RingIntermediate
|
||||
parentName: Left_RingProximal
|
||||
position: {x: 3.3750777e-16, y: 0.043630484, z: -1.4210853e-16}
|
||||
rotation: {x: 0.023556013, y: 0.00000026822087, z: 0.0000007636844, w: 0.99972254}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_RingDistal
|
||||
parentName: Left_RingIntermediate
|
||||
position: {x: 1.7763566e-17, y: 0.027115494, z: -1.065814e-16}
|
||||
rotation: {x: 0.03908592, y: -0.000000019744585, z: 0.00000042049942, w: 0.9992359}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_RingDistalEnd
|
||||
parentName: Left_RingDistal
|
||||
position: {x: -7.105426e-17, y: 0.02095726, z: -7.105426e-17}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_ThumbProximal
|
||||
parentName: Left_Hand
|
||||
position: {x: -0.00080496486, y: 0.028816883, z: 0.023514476}
|
||||
rotation: {x: 0.1796032, y: 0.8841741, z: 0.4239896, w: -0.07881452}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_ThumbIntermediate
|
||||
parentName: Left_ThumbProximal
|
||||
position: {x: 2.4357445e-15, y: 0.027578257, z: 0.0038183592}
|
||||
rotation: {x: 0.1278054, y: -0, z: -0, w: 0.9917993}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_ThumbDistal
|
||||
parentName: Left_ThumbIntermediate
|
||||
position: {x: -2.2737365e-15, y: 0.044597257, z: -0.006869915}
|
||||
rotation: {x: -0.045421924, y: -0.00000036741366, z: -0.0000008691409, w: 0.9989679}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_ThumbDistalEnd
|
||||
parentName: Left_ThumbDistal
|
||||
position: {x: -4.2632555e-16, y: 0.029458016, z: 0}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Neck
|
||||
parentName: UpperChest
|
||||
position: {x: -0, y: 0.25104657, z: -0.015329581}
|
||||
rotation: {x: 0.060688436, y: -0, z: -0, w: 0.9981568}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Head
|
||||
parentName: Neck
|
||||
position: {x: -0, y: 0.12747401, z: 0}
|
||||
rotation: {x: -0.060688436, y: 0, z: -0, w: 0.9981568}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Jaw
|
||||
parentName: Head
|
||||
position: {x: -0, y: -0.00763539, z: 0.012895278}
|
||||
rotation: {x: 0.15949209, y: 0.68888485, z: 0.15949209, w: 0.68888485}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_Eye
|
||||
parentName: Head
|
||||
position: {x: -0.03330326, y: 0.034598116, z: 0.0867403}
|
||||
rotation: {x: 0, y: 0.7071068, z: 0, w: 0.7071068}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_Eye
|
||||
parentName: Head
|
||||
position: {x: 0.033303294, y: 0.03459628, z: 0.0867403}
|
||||
rotation: {x: 0.7071068, y: 4.3297806e-17, z: 0.7071068, w: -4.3297806e-17}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Neck_Twist_A
|
||||
parentName: Neck
|
||||
position: {x: -0, y: 0.063737005, z: 0}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_Shoulder
|
||||
parentName: UpperChest
|
||||
position: {x: 0.0009571358, y: 0.19149381, z: -0.008727803}
|
||||
rotation: {x: 0.99258024, y: -0.04327539, z: -0.113521874, w: 0.004949396}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_UpperArm
|
||||
parentName: Right_Shoulder
|
||||
position: {x: 0.16743432, y: -0.0000022099182, z: 0.00000012213746}
|
||||
rotation: {x: 0.1267345, y: 0.033320885, z: 0.68096745, w: 0.720494}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_LowerArm
|
||||
parentName: Right_UpperArm
|
||||
position: {x: 0.0000037273983, y: -0.285085, z: -0.00000035927226}
|
||||
rotation: {x: 0.020541133, y: 0.008317431, z: -0.020620903, w: 0.99954176}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_Hand
|
||||
parentName: Right_LowerArm
|
||||
position: {x: 0.0000014923929, y: -0.24036367, z: 0.0000017856368}
|
||||
rotation: {x: -0.047397237, y: -0.24003562, z: 0.013464749, w: 0.9695128}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_IndexProximal
|
||||
parentName: Right_Hand
|
||||
position: {x: -0.0078223245, y: -0.0918393, z: -0.026574574}
|
||||
rotation: {x: -0.00008773989, y: -0.7104814, z: -0.0063276542, w: 0.7036876}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_IndexIntermediate
|
||||
parentName: Right_IndexProximal
|
||||
position: {x: 0.0000006924457, y: -0.04210151, z: -0.0000013631077}
|
||||
rotation: {x: 0.03020306, y: -0.0000005662439, z: 0.000012195228, w: 0.99954385}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_IndexDistal
|
||||
parentName: Right_IndexIntermediate
|
||||
position: {x: -0.00000032847043, y: -0.025139209, z: -0.0000005960629}
|
||||
rotation: {x: 0.03948371, y: -0.000000052504312, z: -0.000005515076, w: 0.99922025}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_IndexDistalEnd
|
||||
parentName: Right_IndexDistal
|
||||
position: {x: 0.00000023984484, y: -0.024609355, z: 0.0000006271131}
|
||||
rotation: {x: -5.5511138e-17, y: 0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_MiddleProximal
|
||||
parentName: Right_Hand
|
||||
position: {x: -0.012848663, y: -0.08609768, z: -0.0034359337}
|
||||
rotation: {x: -0.0040856875, y: -0.6610817, z: -0.0040004994, w: 0.7502922}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_MiddleIntermediate
|
||||
parentName: Right_MiddleProximal
|
||||
position: {x: 0.000000014272595, y: -0.051275954, z: 0.0000009747695}
|
||||
rotation: {x: 0.026226329, y: -0.0000007450579, z: -0.0000027469353, w: 0.9996561}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_MiddleDistal
|
||||
parentName: Right_MiddleIntermediate
|
||||
position: {x: 0.00000014287376, y: -0.028283618, z: 0.00000019378916}
|
||||
rotation: {x: 0.03347514, y: -0, z: -0, w: 0.9994396}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_MiddleDistalEnd
|
||||
parentName: Right_MiddleDistal
|
||||
position: {x: 0.000000038619483, y: -0.023345316, z: 0.0000005352584}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_PinkyProximal
|
||||
parentName: Right_Hand
|
||||
position: {x: -0.0044381507, y: -0.07288141, z: 0.029358566}
|
||||
rotation: {x: -0.020058475, y: -0.55049545, z: -0.008249418, w: 0.83455646}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_PinkyIntermediate
|
||||
parentName: Right_PinkyProximal
|
||||
position: {x: 0.00000045734515, y: -0.032268908, z: 0.00000088312623}
|
||||
rotation: {x: 0.02811499, y: -0.0000035166731, z: -0.00000016298141, w: 0.9996047}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_PinkyDistal
|
||||
parentName: Right_PinkyIntermediate
|
||||
position: {x: 0.00000023899057, y: -0.02022493, z: 0.00000055474345}
|
||||
rotation: {x: 0.03642403, y: -0.0000024211556, z: -0.000008829222, w: 0.9993365}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_PinkyDistalEnd
|
||||
parentName: Right_PinkyDistal
|
||||
position: {x: 0.000000632002, y: -0.018518865, z: 0.0000001154108}
|
||||
rotation: {x: -1.7347236e-17, y: 0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_RingProximal
|
||||
parentName: Right_Hand
|
||||
position: {x: -0.00952738, y: -0.08161427, z: 0.012242128}
|
||||
rotation: {x: -0.017649079, y: -0.6027014, z: -0.0040535578, w: 0.7977614}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_RingIntermediate
|
||||
parentName: Right_RingProximal
|
||||
position: {x: 0.0000000695935, y: -0.04362872, z: 0.00000080048335}
|
||||
rotation: {x: 0.023547903, y: 0.0000024139879, z: 0.0000069094813, w: 0.9997228}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_RingDistal
|
||||
parentName: Right_RingIntermediate
|
||||
position: {x: -0.000000290747, y: -0.02711462, z: 0.0000000181098}
|
||||
rotation: {x: 0.039100695, y: 0.00000009656897, z: -0.000004755179, w: 0.99923533}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_RingDistalEnd
|
||||
parentName: Right_RingDistal
|
||||
position: {x: 0.00000008856214, y: -0.020957856, z: 0.0000005565459}
|
||||
rotation: {x: 9.02056e-17, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_ThumbProximal
|
||||
parentName: Right_Hand
|
||||
position: {x: 0.00080341793, y: -0.028816395, z: -0.023514695}
|
||||
rotation: {x: 0.17960793, y: 0.8841713, z: 0.42399347, w: -0.07881395}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_ThumbIntermediate
|
||||
parentName: Right_ThumbProximal
|
||||
position: {x: 0.00000015009721, y: -0.02757781, z: -0.0038183848}
|
||||
rotation: {x: 0.12780538, y: -0, z: -0, w: 0.9917993}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_ThumbDistal
|
||||
parentName: Right_ThumbIntermediate
|
||||
position: {x: 0.0000007817755, y: -0.044594634, z: 0.0068707783}
|
||||
rotation: {x: -0.04541878, y: -0.000003060937, z: 0.000004811603, w: 0.99896806}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_ThumbDistalEnd
|
||||
parentName: Right_ThumbDistal
|
||||
position: {x: 0.00000020228964, y: -0.029458148, z: 0.0000009551683}
|
||||
rotation: {x: -2.7755574e-17, y: 0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
armTwist: 1
|
||||
foreArmTwist: 0
|
||||
upperLegTwist: 1
|
||||
legTwist: 0
|
||||
armStretch: 0
|
||||
legStretch: 0
|
||||
feetSpacing: 0
|
||||
globalScale: 1
|
||||
rootMotionBoneName:
|
||||
hasTranslationDoF: 1
|
||||
hasExtraRoot: 0
|
||||
skeletonHasParents: 1
|
||||
lastHumanDescriptionAvatarSource: {fileID: 9000000, guid: 36078ab0369161e49a29d349ae3e0739,
|
||||
type: 3}
|
||||
autoGenerateAvatarMappingIfUnspecified: 1
|
||||
animationType: 3
|
||||
humanoidOversampling: 1
|
||||
avatarSetup: 2
|
||||
addHumanoidExtraRootOnlyWhenUsingAvatar: 0
|
||||
additionalBone: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,646 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!1102 &-7469282255733588732
|
||||
AnimatorState:
|
||||
serializedVersion: 6
|
||||
m_ObjectHideFlags: 1
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name: InAir
|
||||
m_Speed: 1
|
||||
m_CycleOffset: 0
|
||||
m_Transitions:
|
||||
- {fileID: -1241942381204629156}
|
||||
m_StateMachineBehaviours: []
|
||||
m_Position: {x: 50, y: 50, z: 0}
|
||||
m_IKOnFeet: 1
|
||||
m_WriteDefaultValues: 1
|
||||
m_Mirror: 0
|
||||
m_SpeedParameterActive: 0
|
||||
m_MirrorParameterActive: 0
|
||||
m_CycleOffsetParameterActive: 0
|
||||
m_TimeParameterActive: 0
|
||||
m_Motion: {fileID: -2702400367771620057, guid: 063aa479676c4084ebf187660ca0a7b8,
|
||||
type: 3}
|
||||
m_Tag:
|
||||
m_SpeedParameter:
|
||||
m_MirrorParameter:
|
||||
m_CycleOffsetParameter:
|
||||
m_TimeParameter:
|
||||
--- !u!1107 &-5602963042399094863
|
||||
AnimatorStateMachine:
|
||||
serializedVersion: 6
|
||||
m_ObjectHideFlags: 1
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name: Base Layer
|
||||
m_ChildStates:
|
||||
- serializedVersion: 1
|
||||
m_State: {fileID: 6904719651407550685}
|
||||
m_Position: {x: 200, y: 400, z: 0}
|
||||
- serializedVersion: 1
|
||||
m_State: {fileID: -7469282255733588732}
|
||||
m_Position: {x: 200, y: 600, z: 0}
|
||||
- serializedVersion: 1
|
||||
m_State: {fileID: -1645763842379584696}
|
||||
m_Position: {x: 400, y: 490, z: 0}
|
||||
- serializedVersion: 1
|
||||
m_State: {fileID: 2316907928501487792}
|
||||
m_Position: {x: 0, y: 490, z: 0}
|
||||
m_ChildStateMachines: []
|
||||
m_AnyStateTransitions: []
|
||||
m_EntryTransitions: []
|
||||
m_StateMachineTransitions: {}
|
||||
m_StateMachineBehaviours: []
|
||||
m_AnyStatePosition: {x: 10, y: 330, z: 0}
|
||||
m_EntryPosition: {x: 220, y: 330, z: 0}
|
||||
m_ExitPosition: {x: 680, y: 260, z: 0}
|
||||
m_ParentStateMachinePosition: {x: 800, y: 20, z: 0}
|
||||
m_DefaultState: {fileID: 6904719651407550685}
|
||||
--- !u!1101 &-5554260563948360725
|
||||
AnimatorStateTransition:
|
||||
m_ObjectHideFlags: 1
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name:
|
||||
m_Conditions: []
|
||||
m_DstStateMachine: {fileID: 0}
|
||||
m_DstState: {fileID: 0}
|
||||
m_Solo: 0
|
||||
m_Mute: 0
|
||||
m_IsExit: 0
|
||||
serializedVersion: 3
|
||||
m_TransitionDuration: 0.25
|
||||
m_TransitionOffset: 0
|
||||
m_ExitTime: 0.925
|
||||
m_HasExitTime: 1
|
||||
m_HasFixedDuration: 1
|
||||
m_InterruptionSource: 0
|
||||
m_OrderedInterruption: 1
|
||||
m_CanTransitionToSelf: 1
|
||||
--- !u!1101 &-5395363184730745010
|
||||
AnimatorStateTransition:
|
||||
m_ObjectHideFlags: 1
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name:
|
||||
m_Conditions:
|
||||
- m_ConditionMode: 1
|
||||
m_ConditionEvent: Grounded
|
||||
m_EventTreshold: 0
|
||||
m_DstStateMachine: {fileID: 0}
|
||||
m_DstState: {fileID: -1645763842379584696}
|
||||
m_Solo: 0
|
||||
m_Mute: 0
|
||||
m_IsExit: 0
|
||||
serializedVersion: 3
|
||||
m_TransitionDuration: 0.13652915
|
||||
m_TransitionOffset: 0.1872593
|
||||
m_ExitTime: 0.65006435
|
||||
m_HasExitTime: 0
|
||||
m_HasFixedDuration: 1
|
||||
m_InterruptionSource: 0
|
||||
m_OrderedInterruption: 1
|
||||
m_CanTransitionToSelf: 1
|
||||
--- !u!1101 &-4639224020698590961
|
||||
AnimatorStateTransition:
|
||||
m_ObjectHideFlags: 1
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name:
|
||||
m_Conditions:
|
||||
- m_ConditionMode: 1
|
||||
m_ConditionEvent: FreeFall
|
||||
m_EventTreshold: 0
|
||||
m_DstStateMachine: {fileID: 0}
|
||||
m_DstState: {fileID: -7469282255733588732}
|
||||
m_Solo: 0
|
||||
m_Mute: 0
|
||||
m_IsExit: 0
|
||||
serializedVersion: 3
|
||||
m_TransitionDuration: 0.037536144
|
||||
m_TransitionOffset: 0.23041831
|
||||
m_ExitTime: 0.9466194
|
||||
m_HasExitTime: 0
|
||||
m_HasFixedDuration: 1
|
||||
m_InterruptionSource: 0
|
||||
m_OrderedInterruption: 1
|
||||
m_CanTransitionToSelf: 1
|
||||
--- !u!1101 &-3943826829571047522
|
||||
AnimatorStateTransition:
|
||||
m_ObjectHideFlags: 1
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name:
|
||||
m_Conditions:
|
||||
- m_ConditionMode: 1
|
||||
m_ConditionEvent: FreeFall
|
||||
m_EventTreshold: 0
|
||||
m_DstStateMachine: {fileID: 0}
|
||||
m_DstState: {fileID: 0}
|
||||
m_Solo: 0
|
||||
m_Mute: 0
|
||||
m_IsExit: 0
|
||||
serializedVersion: 3
|
||||
m_TransitionDuration: 0.037536144
|
||||
m_TransitionOffset: 0.23041831
|
||||
m_ExitTime: 0.9466194
|
||||
m_HasExitTime: 0
|
||||
m_HasFixedDuration: 1
|
||||
m_InterruptionSource: 0
|
||||
m_OrderedInterruption: 1
|
||||
m_CanTransitionToSelf: 1
|
||||
--- !u!1101 &-3768668417189682236
|
||||
AnimatorStateTransition:
|
||||
m_ObjectHideFlags: 1
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name:
|
||||
m_Conditions:
|
||||
- m_ConditionMode: 2
|
||||
m_ConditionEvent: Flying
|
||||
m_EventTreshold: 0
|
||||
m_DstStateMachine: {fileID: 0}
|
||||
m_DstState: {fileID: -7469282255733588732}
|
||||
m_Solo: 0
|
||||
m_Mute: 0
|
||||
m_IsExit: 0
|
||||
serializedVersion: 3
|
||||
m_TransitionDuration: 0.17459607
|
||||
m_TransitionOffset: 0
|
||||
m_ExitTime: 0.925
|
||||
m_HasExitTime: 0
|
||||
m_HasFixedDuration: 1
|
||||
m_InterruptionSource: 0
|
||||
m_OrderedInterruption: 1
|
||||
m_CanTransitionToSelf: 1
|
||||
--- !u!1102 &-1645763842379584696
|
||||
AnimatorState:
|
||||
serializedVersion: 6
|
||||
m_ObjectHideFlags: 1
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name: JumpLand
|
||||
m_Speed: 1
|
||||
m_CycleOffset: 0
|
||||
m_Transitions:
|
||||
- {fileID: 1965893691485178243}
|
||||
m_StateMachineBehaviours: []
|
||||
m_Position: {x: 50, y: 50, z: 0}
|
||||
m_IKOnFeet: 0
|
||||
m_WriteDefaultValues: 1
|
||||
m_Mirror: 0
|
||||
m_SpeedParameterActive: 0
|
||||
m_MirrorParameterActive: 0
|
||||
m_CycleOffsetParameterActive: 0
|
||||
m_TimeParameterActive: 0
|
||||
m_Motion: {fileID: 8738420251406115919}
|
||||
m_Tag:
|
||||
m_SpeedParameter:
|
||||
m_MirrorParameter:
|
||||
m_CycleOffsetParameter:
|
||||
m_TimeParameter:
|
||||
--- !u!1101 &-1241942381204629156
|
||||
AnimatorStateTransition:
|
||||
m_ObjectHideFlags: 1
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name:
|
||||
m_Conditions:
|
||||
- m_ConditionMode: 1
|
||||
m_ConditionEvent: Grounded
|
||||
m_EventTreshold: 0
|
||||
m_DstStateMachine: {fileID: 0}
|
||||
m_DstState: {fileID: -1645763842379584696}
|
||||
m_Solo: 0
|
||||
m_Mute: 0
|
||||
m_IsExit: 0
|
||||
serializedVersion: 3
|
||||
m_TransitionDuration: 0.09764749
|
||||
m_TransitionOffset: 0.08027425
|
||||
m_ExitTime: 0.30146867
|
||||
m_HasExitTime: 0
|
||||
m_HasFixedDuration: 1
|
||||
m_InterruptionSource: 0
|
||||
m_OrderedInterruption: 1
|
||||
m_CanTransitionToSelf: 1
|
||||
--- !u!91 &9100000
|
||||
AnimatorController:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name: StarterAssetsThirdPerson
|
||||
serializedVersion: 5
|
||||
m_AnimatorParameters:
|
||||
- m_Name: Speed
|
||||
m_Type: 1
|
||||
m_DefaultFloat: 0
|
||||
m_DefaultInt: 0
|
||||
m_DefaultBool: 0
|
||||
m_Controller: {fileID: 0}
|
||||
- m_Name: Jump
|
||||
m_Type: 4
|
||||
m_DefaultFloat: 0
|
||||
m_DefaultInt: 0
|
||||
m_DefaultBool: 0
|
||||
m_Controller: {fileID: 0}
|
||||
- m_Name: Grounded
|
||||
m_Type: 4
|
||||
m_DefaultFloat: 0
|
||||
m_DefaultInt: 0
|
||||
m_DefaultBool: 0
|
||||
m_Controller: {fileID: 0}
|
||||
- m_Name: FreeFall
|
||||
m_Type: 4
|
||||
m_DefaultFloat: 0
|
||||
m_DefaultInt: 0
|
||||
m_DefaultBool: 0
|
||||
m_Controller: {fileID: 0}
|
||||
- m_Name: MotionSpeed
|
||||
m_Type: 1
|
||||
m_DefaultFloat: 0
|
||||
m_DefaultInt: 0
|
||||
m_DefaultBool: 0
|
||||
m_Controller: {fileID: 0}
|
||||
m_AnimatorLayers:
|
||||
- serializedVersion: 5
|
||||
m_Name: Base Layer
|
||||
m_StateMachine: {fileID: -5602963042399094863}
|
||||
m_Mask: {fileID: 0}
|
||||
m_Motions: []
|
||||
m_Behaviours: []
|
||||
m_BlendingMode: 0
|
||||
m_SyncedLayerIndex: -1
|
||||
m_DefaultWeight: 0
|
||||
m_IKPass: 0
|
||||
m_SyncedLayerAffectsTiming: 0
|
||||
m_Controller: {fileID: 9100000}
|
||||
--- !u!1101 &1381778882725410896
|
||||
AnimatorStateTransition:
|
||||
m_ObjectHideFlags: 1
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name:
|
||||
m_Conditions:
|
||||
- m_ConditionMode: 1
|
||||
m_ConditionEvent: Grounded
|
||||
m_EventTreshold: 0
|
||||
m_DstStateMachine: {fileID: 0}
|
||||
m_DstState: {fileID: -1645763842379584696}
|
||||
m_Solo: 0
|
||||
m_Mute: 0
|
||||
m_IsExit: 0
|
||||
serializedVersion: 3
|
||||
m_TransitionDuration: 0.13652915
|
||||
m_TransitionOffset: 0.1872593
|
||||
m_ExitTime: 0.65006435
|
||||
m_HasExitTime: 0
|
||||
m_HasFixedDuration: 1
|
||||
m_InterruptionSource: 2
|
||||
m_OrderedInterruption: 1
|
||||
m_CanTransitionToSelf: 1
|
||||
--- !u!1101 &1705606405774109490
|
||||
AnimatorStateTransition:
|
||||
m_ObjectHideFlags: 1
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name:
|
||||
m_Conditions: []
|
||||
m_DstStateMachine: {fileID: 0}
|
||||
m_DstState: {fileID: -7469282255733588732}
|
||||
m_Solo: 0
|
||||
m_Mute: 0
|
||||
m_IsExit: 0
|
||||
serializedVersion: 3
|
||||
m_TransitionDuration: 0.47048202
|
||||
m_TransitionOffset: 0.60876185
|
||||
m_ExitTime: 0.66366935
|
||||
m_HasExitTime: 1
|
||||
m_HasFixedDuration: 1
|
||||
m_InterruptionSource: 0
|
||||
m_OrderedInterruption: 1
|
||||
m_CanTransitionToSelf: 1
|
||||
--- !u!1102 &1725567275296691115
|
||||
AnimatorState:
|
||||
serializedVersion: 6
|
||||
m_ObjectHideFlags: 1
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name: Fly
|
||||
m_Speed: 1
|
||||
m_CycleOffset: 0
|
||||
m_Transitions:
|
||||
- {fileID: -3768668417189682236}
|
||||
m_StateMachineBehaviours: []
|
||||
m_Position: {x: 50, y: 50, z: 0}
|
||||
m_IKOnFeet: 0
|
||||
m_WriteDefaultValues: 1
|
||||
m_Mirror: 0
|
||||
m_SpeedParameterActive: 0
|
||||
m_MirrorParameterActive: 0
|
||||
m_CycleOffsetParameterActive: 0
|
||||
m_TimeParameterActive: 0
|
||||
m_Motion: {fileID: -4506558747437489242, guid: d3b2083e086810047ab04d540db8afbc,
|
||||
type: 3}
|
||||
m_Tag:
|
||||
m_SpeedParameter:
|
||||
m_MirrorParameter:
|
||||
m_CycleOffsetParameter:
|
||||
m_TimeParameter:
|
||||
--- !u!1101 &1965893691485178243
|
||||
AnimatorStateTransition:
|
||||
m_ObjectHideFlags: 1
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name:
|
||||
m_Conditions: []
|
||||
m_DstStateMachine: {fileID: 0}
|
||||
m_DstState: {fileID: 6904719651407550685}
|
||||
m_Solo: 0
|
||||
m_Mute: 0
|
||||
m_IsExit: 0
|
||||
serializedVersion: 3
|
||||
m_TransitionDuration: 0.4340285
|
||||
m_TransitionOffset: 0.36290926
|
||||
m_ExitTime: 0.39948252
|
||||
m_HasExitTime: 1
|
||||
m_HasFixedDuration: 1
|
||||
m_InterruptionSource: 2
|
||||
m_OrderedInterruption: 1
|
||||
m_CanTransitionToSelf: 1
|
||||
--- !u!1102 &2316907928501487792
|
||||
AnimatorState:
|
||||
serializedVersion: 6
|
||||
m_ObjectHideFlags: 1
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name: JumpStart
|
||||
m_Speed: 1
|
||||
m_CycleOffset: 0
|
||||
m_Transitions:
|
||||
- {fileID: 1705606405774109490}
|
||||
m_StateMachineBehaviours: []
|
||||
m_Position: {x: 50, y: 50, z: 0}
|
||||
m_IKOnFeet: 1
|
||||
m_WriteDefaultValues: 1
|
||||
m_Mirror: 0
|
||||
m_SpeedParameterActive: 0
|
||||
m_MirrorParameterActive: 0
|
||||
m_CycleOffsetParameterActive: 0
|
||||
m_TimeParameterActive: 0
|
||||
m_Motion: {fileID: 7478122292733868173, guid: 98f277b0c8055e143b2fcf058d3c27dc,
|
||||
type: 3}
|
||||
m_Tag:
|
||||
m_SpeedParameter:
|
||||
m_MirrorParameter:
|
||||
m_CycleOffsetParameter:
|
||||
m_TimeParameter:
|
||||
--- !u!1101 &2455683505482688366
|
||||
AnimatorStateTransition:
|
||||
m_ObjectHideFlags: 1
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name:
|
||||
m_Conditions: []
|
||||
m_DstStateMachine: {fileID: 0}
|
||||
m_DstState: {fileID: -7469282255733588732}
|
||||
m_Solo: 0
|
||||
m_Mute: 0
|
||||
m_IsExit: 0
|
||||
serializedVersion: 3
|
||||
m_TransitionDuration: 0.25
|
||||
m_TransitionOffset: 0
|
||||
m_ExitTime: 0.9466192
|
||||
m_HasExitTime: 1
|
||||
m_HasFixedDuration: 1
|
||||
m_InterruptionSource: 0
|
||||
m_OrderedInterruption: 1
|
||||
m_CanTransitionToSelf: 1
|
||||
--- !u!1101 &5185278855704465556
|
||||
AnimatorStateTransition:
|
||||
m_ObjectHideFlags: 1
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name:
|
||||
m_Conditions:
|
||||
- m_ConditionMode: 1
|
||||
m_ConditionEvent: Flying
|
||||
m_EventTreshold: 0
|
||||
m_DstStateMachine: {fileID: 0}
|
||||
m_DstState: {fileID: 1725567275296691115}
|
||||
m_Solo: 0
|
||||
m_Mute: 0
|
||||
m_IsExit: 0
|
||||
serializedVersion: 3
|
||||
m_TransitionDuration: 0.1320467
|
||||
m_TransitionOffset: 0
|
||||
m_ExitTime: 0.75
|
||||
m_HasExitTime: 0
|
||||
m_HasFixedDuration: 1
|
||||
m_InterruptionSource: 0
|
||||
m_OrderedInterruption: 1
|
||||
m_CanTransitionToSelf: 0
|
||||
--- !u!1102 &6904719651407550685
|
||||
AnimatorState:
|
||||
serializedVersion: 6
|
||||
m_ObjectHideFlags: 1
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name: Idle Walk Run Blend
|
||||
m_Speed: 1
|
||||
m_CycleOffset: 0
|
||||
m_Transitions:
|
||||
- {fileID: -4639224020698590961}
|
||||
- {fileID: 8635457214972911529}
|
||||
m_StateMachineBehaviours: []
|
||||
m_Position: {x: 50, y: 50, z: 0}
|
||||
m_IKOnFeet: 1
|
||||
m_WriteDefaultValues: 1
|
||||
m_Mirror: 0
|
||||
m_SpeedParameterActive: 1
|
||||
m_MirrorParameterActive: 0
|
||||
m_CycleOffsetParameterActive: 0
|
||||
m_TimeParameterActive: 0
|
||||
m_Motion: {fileID: 8571049798372811705}
|
||||
m_Tag:
|
||||
m_SpeedParameter: MotionSpeed
|
||||
m_MirrorParameter:
|
||||
m_CycleOffsetParameter:
|
||||
m_TimeParameter: Speed
|
||||
--- !u!1101 &7604687646627025577
|
||||
AnimatorStateTransition:
|
||||
m_ObjectHideFlags: 1
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name:
|
||||
m_Conditions:
|
||||
- m_ConditionMode: 1
|
||||
m_ConditionEvent: Jump
|
||||
m_EventTreshold: 0
|
||||
m_DstStateMachine: {fileID: 0}
|
||||
m_DstState: {fileID: 0}
|
||||
m_Solo: 0
|
||||
m_Mute: 0
|
||||
m_IsExit: 0
|
||||
serializedVersion: 3
|
||||
m_TransitionDuration: 0.07026386
|
||||
m_TransitionOffset: 0.058338698
|
||||
m_ExitTime: 0.8555227
|
||||
m_HasExitTime: 0
|
||||
m_HasFixedDuration: 1
|
||||
m_InterruptionSource: 0
|
||||
m_OrderedInterruption: 1
|
||||
m_CanTransitionToSelf: 1
|
||||
--- !u!1101 &8308480711204209675
|
||||
AnimatorStateTransition:
|
||||
m_ObjectHideFlags: 1
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name:
|
||||
m_Conditions:
|
||||
- m_ConditionMode: 1
|
||||
m_ConditionEvent: FreeFall
|
||||
m_EventTreshold: 0
|
||||
m_DstStateMachine: {fileID: 0}
|
||||
m_DstState: {fileID: -7469282255733588732}
|
||||
m_Solo: 0
|
||||
m_Mute: 0
|
||||
m_IsExit: 0
|
||||
serializedVersion: 3
|
||||
m_TransitionDuration: 0.25
|
||||
m_TransitionOffset: 0
|
||||
m_ExitTime: 0.75
|
||||
m_HasExitTime: 0
|
||||
m_HasFixedDuration: 1
|
||||
m_InterruptionSource: 0
|
||||
m_OrderedInterruption: 1
|
||||
m_CanTransitionToSelf: 1
|
||||
--- !u!206 &8571049798372811705
|
||||
BlendTree:
|
||||
m_ObjectHideFlags: 1
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name: Blend Tree
|
||||
m_Childs:
|
||||
- serializedVersion: 2
|
||||
m_Motion: {fileID: -3100369314251171874, guid: 12e52e465ed793a4d801955e9f964a82,
|
||||
type: 3}
|
||||
m_Threshold: 0
|
||||
m_Position: {x: 0, y: 0}
|
||||
m_TimeScale: 1
|
||||
m_CycleOffset: 0
|
||||
m_DirectBlendParameter: Speed
|
||||
m_Mirror: 0
|
||||
- serializedVersion: 2
|
||||
m_Motion: {fileID: 1657602633327794031, guid: 8269a9f8cf495034c817722ac21f309f,
|
||||
type: 3}
|
||||
m_Threshold: 2
|
||||
m_Position: {x: 0, y: 0}
|
||||
m_TimeScale: 1
|
||||
m_CycleOffset: 0
|
||||
m_DirectBlendParameter: Speed
|
||||
m_Mirror: 0
|
||||
- serializedVersion: 2
|
||||
m_Motion: {fileID: 6564411413370888346, guid: 16114d403eabb53438de032c6f0d1deb,
|
||||
type: 3}
|
||||
m_Threshold: 6
|
||||
m_Position: {x: 0, y: 0}
|
||||
m_TimeScale: 1
|
||||
m_CycleOffset: 0
|
||||
m_DirectBlendParameter: Speed
|
||||
m_Mirror: 0
|
||||
m_BlendParameter: Speed
|
||||
m_BlendParameterY: Speed
|
||||
m_MinThreshold: 0
|
||||
m_MaxThreshold: 6
|
||||
m_UseAutomaticThresholds: 0
|
||||
m_NormalizedBlendValues: 0
|
||||
m_BlendType: 0
|
||||
--- !u!1101 &8635457214972911529
|
||||
AnimatorStateTransition:
|
||||
m_ObjectHideFlags: 1
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name:
|
||||
m_Conditions:
|
||||
- m_ConditionMode: 1
|
||||
m_ConditionEvent: Jump
|
||||
m_EventTreshold: 0
|
||||
m_DstStateMachine: {fileID: 0}
|
||||
m_DstState: {fileID: 2316907928501487792}
|
||||
m_Solo: 0
|
||||
m_Mute: 0
|
||||
m_IsExit: 0
|
||||
serializedVersion: 3
|
||||
m_TransitionDuration: 0.07026373
|
||||
m_TransitionOffset: 0
|
||||
m_ExitTime: 0.03574113
|
||||
m_HasExitTime: 0
|
||||
m_HasFixedDuration: 1
|
||||
m_InterruptionSource: 0
|
||||
m_OrderedInterruption: 1
|
||||
m_CanTransitionToSelf: 1
|
||||
--- !u!206 &8738420251406115919
|
||||
BlendTree:
|
||||
m_ObjectHideFlags: 1
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name: Blend Tree
|
||||
m_Childs:
|
||||
- serializedVersion: 2
|
||||
m_Motion: {fileID: -9098803823909532060, guid: 98f277b0c8055e143b2fcf058d3c27dc,
|
||||
type: 3}
|
||||
m_Threshold: 0
|
||||
m_Position: {x: 0, y: 0}
|
||||
m_TimeScale: 1
|
||||
m_CycleOffset: 0
|
||||
m_DirectBlendParameter: Speed
|
||||
m_Mirror: 0
|
||||
- serializedVersion: 2
|
||||
m_Motion: {fileID: 3062299877480904481, guid: 325a26d62b61fa94cb3c97c435efebc5,
|
||||
type: 3}
|
||||
m_Threshold: 2
|
||||
m_Position: {x: 0, y: 0}
|
||||
m_TimeScale: 1
|
||||
m_CycleOffset: 0
|
||||
m_DirectBlendParameter: Speed
|
||||
m_Mirror: 0
|
||||
- serializedVersion: 2
|
||||
m_Motion: {fileID: -2817517482862745934, guid: 3c033631149b9c541bcf155cd94cccba,
|
||||
type: 3}
|
||||
m_Threshold: 6
|
||||
m_Position: {x: 0, y: 0}
|
||||
m_TimeScale: 1
|
||||
m_CycleOffset: 0
|
||||
m_DirectBlendParameter: Speed
|
||||
m_Mirror: 0
|
||||
m_BlendParameter: Speed
|
||||
m_BlendParameterY: Speed
|
||||
m_MinThreshold: 0
|
||||
m_MaxThreshold: 6
|
||||
m_UseAutomaticThresholds: 0
|
||||
m_NormalizedBlendValues: 0
|
||||
m_BlendType: 0
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 40db3173a05ae3242b1c182a09b0a183
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 8877fc0581535ee43a674ea7822f0f02
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,234 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!114 &-6373045537356699928
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 11
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
version: 10
|
||||
--- !u!114 &-3530075124909200508
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 11
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
version: 13
|
||||
hdPluginSubTargetMaterialVersions:
|
||||
m_Keys: []
|
||||
m_Values:
|
||||
--- !u!21 &2100000
|
||||
Material:
|
||||
serializedVersion: 8
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name: M_Armature_Arms
|
||||
m_Shader: {fileID: -6465566751694194690, guid: ed9d2c7cebcf9be4e9fa52a4b0479222, type: 3}
|
||||
m_Parent: {fileID: 0}
|
||||
m_ModifiedSerializedProperties: 0
|
||||
m_ValidKeywords: []
|
||||
m_InvalidKeywords:
|
||||
- _DISABLE_SSR_TRANSPARENT
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 0
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: 2000
|
||||
stringTagMap: {}
|
||||
disabledShaderPasses:
|
||||
- TransparentDepthPrepass
|
||||
- TransparentDepthPostpass
|
||||
- TransparentBackface
|
||||
- RayTracingPrepass
|
||||
- MOTIONVECTORS
|
||||
m_LockedProperties:
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _BaseMap:
|
||||
m_Texture: {fileID: 2800000, guid: c6dc62700fa06274b9608a9fce8ed21b, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _BumpMap:
|
||||
m_Texture: {fileID: 2800000, guid: 104a45460231b8d4783e0bb2223be28c, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailAlbedoMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailMask:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailNormalMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _EmissionMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MainTex:
|
||||
m_Texture: {fileID: 2800000, guid: c6dc62700fa06274b9608a9fce8ed21b, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MetallicGlossMap:
|
||||
m_Texture: {fileID: 2800000, guid: b41d630ccc344454bb1f27587f9acd70, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _OcclusionMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ParallaxMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _SpecGlossMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_Lightmaps:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_LightmapsInd:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_ShadowMasks:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _AddPrecomputedVelocity: 0
|
||||
- _AlphaClip: 0
|
||||
- _AlphaCutoffEnable: 0
|
||||
- _AlphaDstBlend: 0
|
||||
- _AlphaSrcBlend: 1
|
||||
- _AlphaToMask: 0
|
||||
- _AlphaToMaskInspectorValue: 0
|
||||
- _BUILTIN_AlphaClip: 0
|
||||
- _BUILTIN_Blend: 0
|
||||
- _BUILTIN_CullMode: 0
|
||||
- _BUILTIN_DstBlend: 0
|
||||
- _BUILTIN_QueueControl: 0
|
||||
- _BUILTIN_QueueOffset: 0
|
||||
- _BUILTIN_SrcBlend: 1
|
||||
- _BUILTIN_Surface: 0
|
||||
- _BUILTIN_ZTest: 4
|
||||
- _BUILTIN_ZWrite: 1
|
||||
- _BUILTIN_ZWriteControl: 0
|
||||
- _Blend: 0
|
||||
- _BlendMode: 0
|
||||
- _BlendModePreserveSpecular: 0
|
||||
- _BumpScale: 1
|
||||
- _CastShadows: 1
|
||||
- _ClearCoatMask: 0
|
||||
- _ClearCoatSmoothness: 0
|
||||
- _ConservativeDepthOffsetEnable: 0
|
||||
- _Cull: 2
|
||||
- _CullMode: 2
|
||||
- _CullModeForward: 2
|
||||
- _Cutoff: 0.5
|
||||
- _DepthOffsetEnable: 0
|
||||
- _DetailAlbedoMapScale: 1
|
||||
- _DetailNormalMapScale: 1
|
||||
- _DoubleSidedEnable: 0
|
||||
- _DoubleSidedGIMode: 0
|
||||
- _DoubleSidedNormalMode: 2
|
||||
- _DstBlend: 0
|
||||
- _EnableBlendModePreserveSpecularLighting: 1
|
||||
- _EnableFogOnTransparent: 1
|
||||
- _EnvironmentReflections: 1
|
||||
- _ExcludeFromTUAndAA: 0
|
||||
- _GlossMapScale: 1
|
||||
- _Glossiness: 0.5
|
||||
- _GlossyReflections: 1
|
||||
- _Metallic: 0
|
||||
- _Mode: 0
|
||||
- _OcclusionStrength: 1
|
||||
- _OpaqueCullMode: 2
|
||||
- _Parallax: 0.02
|
||||
- _QueueControl: 0
|
||||
- _QueueOffset: 0
|
||||
- _RayTracing: 0
|
||||
- _ReceiveShadows: 1
|
||||
- _ReceivesSSR: 1
|
||||
- _ReceivesSSRTransparent: 0
|
||||
- _RefractionModel: 0
|
||||
- _RenderQueueType: 1
|
||||
- _RequireSplitLighting: 0
|
||||
- _Smoothness: 1
|
||||
- _SmoothnessTextureChannel: 0
|
||||
- _SpecularHighlights: 1
|
||||
- _SrcBlend: 1
|
||||
- _StencilRef: 0
|
||||
- _StencilRefDepth: 8
|
||||
- _StencilRefDistortionVec: 4
|
||||
- _StencilRefGBuffer: 10
|
||||
- _StencilRefMV: 40
|
||||
- _StencilWriteMask: 6
|
||||
- _StencilWriteMaskDepth: 8
|
||||
- _StencilWriteMaskDistortionVec: 4
|
||||
- _StencilWriteMaskGBuffer: 14
|
||||
- _StencilWriteMaskMV: 40
|
||||
- _SupportDecals: 1
|
||||
- _Surface: 0
|
||||
- _SurfaceType: 0
|
||||
- _TransparentBackfaceEnable: 0
|
||||
- _TransparentCullMode: 2
|
||||
- _TransparentDepthPostpassEnable: 0
|
||||
- _TransparentDepthPrepassEnable: 0
|
||||
- _TransparentSortPriority: 0
|
||||
- _TransparentWritingMotionVec: 0
|
||||
- _TransparentZWrite: 0
|
||||
- _UVSec: 0
|
||||
- _UseShadowThreshold: 0
|
||||
- _Use_Emission: 0
|
||||
- _Use_Metallic_Texture: 1
|
||||
- _WorkflowMode: 1
|
||||
- _ZTest: 4
|
||||
- _ZTestDepthEqualForOpaque: 3
|
||||
- _ZTestGBuffer: 4
|
||||
- _ZTestTransparent: 4
|
||||
- _ZWrite: 1
|
||||
- _ZWriteControl: 0
|
||||
m_Colors:
|
||||
- _BaseColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _Color: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _DoubleSidedConstants: {r: 1, g: 1, b: -1, a: 0}
|
||||
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _Offset: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _SpecColor: {r: 0.2, g: 0.2, b: 0.2, a: 1}
|
||||
- _Tiling: {r: 1, g: 1, b: 0, a: 0}
|
||||
m_BuildTextureStacks: []
|
||||
m_AllowLocking: 1
|
||||
--- !u!114 &4242265450459878074
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 11
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: 639247ca83abc874e893eb93af2b5e44, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
version: 0
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 766fd3ff04aab4745a764d33daac86fa
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,234 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!114 &-8674086822886621408
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 11
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
version: 10
|
||||
--- !u!114 &-1063730157508259586
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 11
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: 639247ca83abc874e893eb93af2b5e44, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
version: 0
|
||||
--- !u!21 &2100000
|
||||
Material:
|
||||
serializedVersion: 8
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name: M_Armature_Body
|
||||
m_Shader: {fileID: -6465566751694194690, guid: ed9d2c7cebcf9be4e9fa52a4b0479222, type: 3}
|
||||
m_Parent: {fileID: 0}
|
||||
m_ModifiedSerializedProperties: 0
|
||||
m_ValidKeywords: []
|
||||
m_InvalidKeywords:
|
||||
- _DISABLE_SSR_TRANSPARENT
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 0
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: 2000
|
||||
stringTagMap: {}
|
||||
disabledShaderPasses:
|
||||
- TransparentDepthPrepass
|
||||
- TransparentDepthPostpass
|
||||
- TransparentBackface
|
||||
- RayTracingPrepass
|
||||
- MOTIONVECTORS
|
||||
m_LockedProperties:
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _BaseMap:
|
||||
m_Texture: {fileID: 2800000, guid: 28d78c5517421f047b88352f3b18e8e7, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _BumpMap:
|
||||
m_Texture: {fileID: 2800000, guid: 2a3daea46c599324e873f935ab08000a, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailAlbedoMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailMask:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailNormalMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _EmissionMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MainTex:
|
||||
m_Texture: {fileID: 2800000, guid: 28d78c5517421f047b88352f3b18e8e7, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MetallicGlossMap:
|
||||
m_Texture: {fileID: 2800000, guid: e73adacd5e8f6fc45a491dbd62e71ead, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _OcclusionMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ParallaxMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _SpecGlossMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_Lightmaps:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_LightmapsInd:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_ShadowMasks:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _AddPrecomputedVelocity: 0
|
||||
- _AlphaClip: 0
|
||||
- _AlphaCutoffEnable: 0
|
||||
- _AlphaDstBlend: 0
|
||||
- _AlphaSrcBlend: 1
|
||||
- _AlphaToMask: 0
|
||||
- _AlphaToMaskInspectorValue: 0
|
||||
- _BUILTIN_AlphaClip: 0
|
||||
- _BUILTIN_Blend: 0
|
||||
- _BUILTIN_CullMode: 0
|
||||
- _BUILTIN_DstBlend: 0
|
||||
- _BUILTIN_QueueControl: 0
|
||||
- _BUILTIN_QueueOffset: 0
|
||||
- _BUILTIN_SrcBlend: 1
|
||||
- _BUILTIN_Surface: 0
|
||||
- _BUILTIN_ZTest: 4
|
||||
- _BUILTIN_ZWrite: 1
|
||||
- _BUILTIN_ZWriteControl: 0
|
||||
- _Blend: 0
|
||||
- _BlendMode: 0
|
||||
- _BlendModePreserveSpecular: 0
|
||||
- _BumpScale: 1
|
||||
- _CastShadows: 1
|
||||
- _ClearCoatMask: 0
|
||||
- _ClearCoatSmoothness: 0
|
||||
- _ConservativeDepthOffsetEnable: 0
|
||||
- _Cull: 2
|
||||
- _CullMode: 2
|
||||
- _CullModeForward: 2
|
||||
- _Cutoff: 0.5
|
||||
- _DepthOffsetEnable: 0
|
||||
- _DetailAlbedoMapScale: 1
|
||||
- _DetailNormalMapScale: 1
|
||||
- _DoubleSidedEnable: 0
|
||||
- _DoubleSidedGIMode: 0
|
||||
- _DoubleSidedNormalMode: 2
|
||||
- _DstBlend: 0
|
||||
- _EnableBlendModePreserveSpecularLighting: 1
|
||||
- _EnableFogOnTransparent: 1
|
||||
- _EnvironmentReflections: 1
|
||||
- _ExcludeFromTUAndAA: 0
|
||||
- _GlossMapScale: 1
|
||||
- _Glossiness: 0.5
|
||||
- _GlossyReflections: 1
|
||||
- _Metallic: 0
|
||||
- _Mode: 0
|
||||
- _OcclusionStrength: 1
|
||||
- _OpaqueCullMode: 2
|
||||
- _Parallax: 0.02
|
||||
- _QueueControl: 0
|
||||
- _QueueOffset: 0
|
||||
- _RayTracing: 0
|
||||
- _ReceiveShadows: 1
|
||||
- _ReceivesSSR: 1
|
||||
- _ReceivesSSRTransparent: 0
|
||||
- _RefractionModel: 0
|
||||
- _RenderQueueType: 1
|
||||
- _RequireSplitLighting: 0
|
||||
- _Smoothness: 1
|
||||
- _SmoothnessTextureChannel: 0
|
||||
- _SpecularHighlights: 1
|
||||
- _SrcBlend: 1
|
||||
- _StencilRef: 0
|
||||
- _StencilRefDepth: 8
|
||||
- _StencilRefDistortionVec: 4
|
||||
- _StencilRefGBuffer: 10
|
||||
- _StencilRefMV: 40
|
||||
- _StencilWriteMask: 6
|
||||
- _StencilWriteMaskDepth: 8
|
||||
- _StencilWriteMaskDistortionVec: 4
|
||||
- _StencilWriteMaskGBuffer: 14
|
||||
- _StencilWriteMaskMV: 40
|
||||
- _SupportDecals: 1
|
||||
- _Surface: 0
|
||||
- _SurfaceType: 0
|
||||
- _TransparentBackfaceEnable: 0
|
||||
- _TransparentCullMode: 2
|
||||
- _TransparentDepthPostpassEnable: 0
|
||||
- _TransparentDepthPrepassEnable: 0
|
||||
- _TransparentSortPriority: 0
|
||||
- _TransparentWritingMotionVec: 0
|
||||
- _TransparentZWrite: 0
|
||||
- _UVSec: 0
|
||||
- _UseShadowThreshold: 0
|
||||
- _Use_Emission: 0
|
||||
- _Use_Metallic_Texture: 1
|
||||
- _WorkflowMode: 1
|
||||
- _ZTest: 4
|
||||
- _ZTestDepthEqualForOpaque: 3
|
||||
- _ZTestGBuffer: 4
|
||||
- _ZTestTransparent: 4
|
||||
- _ZWrite: 1
|
||||
- _ZWriteControl: 0
|
||||
m_Colors:
|
||||
- _BaseColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _Color: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _DoubleSidedConstants: {r: 1, g: 1, b: -1, a: 0}
|
||||
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _Offset: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _SpecColor: {r: 0.2, g: 0.2, b: 0.2, a: 1}
|
||||
- _Tiling: {r: 1, g: 1, b: 0, a: 0}
|
||||
m_BuildTextureStacks: []
|
||||
m_AllowLocking: 1
|
||||
--- !u!114 &1998542214487490374
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 11
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
version: 13
|
||||
hdPluginSubTargetMaterialVersions:
|
||||
m_Keys: []
|
||||
m_Values:
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 43714b68324cc2c409d534d9874f2a2b
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,234 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!114 &-7752926728273034339
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 11
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
version: 13
|
||||
hdPluginSubTargetMaterialVersions:
|
||||
m_Keys: []
|
||||
m_Values:
|
||||
--- !u!114 &-6829101151873860398
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 11
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
version: 10
|
||||
--- !u!21 &2100000
|
||||
Material:
|
||||
serializedVersion: 8
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name: M_Armature_Legs
|
||||
m_Shader: {fileID: -6465566751694194690, guid: ed9d2c7cebcf9be4e9fa52a4b0479222, type: 3}
|
||||
m_Parent: {fileID: 0}
|
||||
m_ModifiedSerializedProperties: 0
|
||||
m_ValidKeywords: []
|
||||
m_InvalidKeywords:
|
||||
- _DISABLE_SSR_TRANSPARENT
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 0
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: 2000
|
||||
stringTagMap: {}
|
||||
disabledShaderPasses:
|
||||
- TransparentDepthPrepass
|
||||
- TransparentDepthPostpass
|
||||
- TransparentBackface
|
||||
- RayTracingPrepass
|
||||
- MOTIONVECTORS
|
||||
m_LockedProperties:
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _BaseMap:
|
||||
m_Texture: {fileID: 2800000, guid: c444e3d02d2fcff4d9fe5211d67652a0, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _BumpMap:
|
||||
m_Texture: {fileID: 2800000, guid: b2c5d9c39850da946ae135dcb57faaea, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailAlbedoMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailMask:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailNormalMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _EmissionMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MainTex:
|
||||
m_Texture: {fileID: 2800000, guid: c444e3d02d2fcff4d9fe5211d67652a0, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MetallicGlossMap:
|
||||
m_Texture: {fileID: 2800000, guid: 1c98c94efa7792645972ecf95e6f86c2, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _OcclusionMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ParallaxMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _SpecGlossMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_Lightmaps:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_LightmapsInd:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_ShadowMasks:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _AddPrecomputedVelocity: 0
|
||||
- _AlphaClip: 0
|
||||
- _AlphaCutoffEnable: 0
|
||||
- _AlphaDstBlend: 0
|
||||
- _AlphaSrcBlend: 1
|
||||
- _AlphaToMask: 0
|
||||
- _AlphaToMaskInspectorValue: 0
|
||||
- _BUILTIN_AlphaClip: 0
|
||||
- _BUILTIN_Blend: 0
|
||||
- _BUILTIN_CullMode: 2
|
||||
- _BUILTIN_DstBlend: 0
|
||||
- _BUILTIN_QueueControl: 0
|
||||
- _BUILTIN_QueueOffset: 0
|
||||
- _BUILTIN_SrcBlend: 1
|
||||
- _BUILTIN_Surface: 0
|
||||
- _BUILTIN_ZTest: 4
|
||||
- _BUILTIN_ZWrite: 1
|
||||
- _BUILTIN_ZWriteControl: 0
|
||||
- _Blend: 0
|
||||
- _BlendMode: 0
|
||||
- _BlendModePreserveSpecular: 0
|
||||
- _BumpScale: 1
|
||||
- _CastShadows: 1
|
||||
- _ClearCoatMask: 0
|
||||
- _ClearCoatSmoothness: 0
|
||||
- _ConservativeDepthOffsetEnable: 0
|
||||
- _Cull: 2
|
||||
- _CullMode: 2
|
||||
- _CullModeForward: 2
|
||||
- _Cutoff: 0.5
|
||||
- _DepthOffsetEnable: 0
|
||||
- _DetailAlbedoMapScale: 1
|
||||
- _DetailNormalMapScale: 1
|
||||
- _DoubleSidedEnable: 0
|
||||
- _DoubleSidedGIMode: 0
|
||||
- _DoubleSidedNormalMode: 2
|
||||
- _DstBlend: 0
|
||||
- _EnableBlendModePreserveSpecularLighting: 1
|
||||
- _EnableFogOnTransparent: 1
|
||||
- _EnvironmentReflections: 1
|
||||
- _ExcludeFromTUAndAA: 0
|
||||
- _GlossMapScale: 0.757
|
||||
- _Glossiness: 0.5
|
||||
- _GlossyReflections: 1
|
||||
- _Metallic: 0
|
||||
- _Mode: 0
|
||||
- _OcclusionStrength: 1
|
||||
- _OpaqueCullMode: 2
|
||||
- _Parallax: 0.02
|
||||
- _QueueControl: 0
|
||||
- _QueueOffset: 0
|
||||
- _RayTracing: 0
|
||||
- _ReceiveShadows: 1
|
||||
- _ReceivesSSR: 1
|
||||
- _ReceivesSSRTransparent: 0
|
||||
- _RefractionModel: 0
|
||||
- _RenderQueueType: 1
|
||||
- _RequireSplitLighting: 0
|
||||
- _Smoothness: 0.757
|
||||
- _SmoothnessTextureChannel: 0
|
||||
- _SpecularHighlights: 1
|
||||
- _SrcBlend: 1
|
||||
- _StencilRef: 0
|
||||
- _StencilRefDepth: 8
|
||||
- _StencilRefDistortionVec: 4
|
||||
- _StencilRefGBuffer: 10
|
||||
- _StencilRefMV: 40
|
||||
- _StencilWriteMask: 6
|
||||
- _StencilWriteMaskDepth: 8
|
||||
- _StencilWriteMaskDistortionVec: 4
|
||||
- _StencilWriteMaskGBuffer: 14
|
||||
- _StencilWriteMaskMV: 40
|
||||
- _SupportDecals: 1
|
||||
- _Surface: 0
|
||||
- _SurfaceType: 0
|
||||
- _TransparentBackfaceEnable: 0
|
||||
- _TransparentCullMode: 2
|
||||
- _TransparentDepthPostpassEnable: 0
|
||||
- _TransparentDepthPrepassEnable: 0
|
||||
- _TransparentSortPriority: 0
|
||||
- _TransparentWritingMotionVec: 0
|
||||
- _TransparentZWrite: 0
|
||||
- _UVSec: 0
|
||||
- _UseShadowThreshold: 0
|
||||
- _Use_Emission: 0
|
||||
- _Use_Metallic_Texture: 1
|
||||
- _WorkflowMode: 1
|
||||
- _ZTest: 4
|
||||
- _ZTestDepthEqualForOpaque: 3
|
||||
- _ZTestGBuffer: 4
|
||||
- _ZTestTransparent: 4
|
||||
- _ZWrite: 1
|
||||
- _ZWriteControl: 0
|
||||
m_Colors:
|
||||
- _BaseColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _Color: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _DoubleSidedConstants: {r: 1, g: 1, b: -1, a: 0}
|
||||
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _Offset: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _SpecColor: {r: 0.2, g: 0.2, b: 0.2, a: 1}
|
||||
- _Tiling: {r: 1, g: 1, b: 0, a: 0}
|
||||
m_BuildTextureStacks: []
|
||||
m_AllowLocking: 1
|
||||
--- !u!114 &727955583684743907
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 11
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: 639247ca83abc874e893eb93af2b5e44, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
version: 0
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 8b25e99361ac31d4e9ae83c46aee69ea
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 91c8d22bed6a59344ab6c3eff89f20f4
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
Binary file not shown.
@@ -0,0 +1,893 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 36078ab0369161e49a29d349ae3e0739
|
||||
ModelImporter:
|
||||
serializedVersion: 21300
|
||||
internalIDToNameTable:
|
||||
- first:
|
||||
74: 1827226128182048838
|
||||
second: Take 001
|
||||
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: 1
|
||||
animationRotationError: 0.05
|
||||
animationPositionError: 0.05
|
||||
animationScaleError: 0.25
|
||||
animationWrapMode: 0
|
||||
extraExposedTransformPaths: []
|
||||
extraUserProperties: []
|
||||
clipAnimations: []
|
||||
isReadable: 1
|
||||
meshes:
|
||||
lODScreenPercentages: []
|
||||
globalScale: 1
|
||||
meshCompression: 0
|
||||
addColliders: 0
|
||||
useSRGBMaterialColor: 1
|
||||
sortHierarchyByName: 1
|
||||
importVisibility: 1
|
||||
importBlendShapes: 1
|
||||
importCameras: 1
|
||||
importLights: 1
|
||||
nodeNameCollisionStrategy: 0
|
||||
fileIdsGeneration: 2
|
||||
swapUVChannels: 0
|
||||
generateSecondaryUV: 0
|
||||
useFileUnits: 1
|
||||
keepQuads: 0
|
||||
weldVertices: 1
|
||||
bakeAxisConversion: 0
|
||||
preserveHierarchy: 0
|
||||
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
|
||||
tangentSpace:
|
||||
normalSmoothAngle: 60
|
||||
normalImportMode: 0
|
||||
tangentImportMode: 3
|
||||
normalCalculationMode: 4
|
||||
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0
|
||||
blendShapeNormalImportMode: 1
|
||||
normalSmoothingSource: 0
|
||||
referencedClips: []
|
||||
importAnimation: 0
|
||||
humanDescription:
|
||||
serializedVersion: 3
|
||||
human:
|
||||
- boneName: 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: Right_UpperLeg
|
||||
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: Right_LowerLeg
|
||||
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: Right_Foot
|
||||
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: Right_Toes
|
||||
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: 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: 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: UpperChest
|
||||
humanName: UpperChest
|
||||
limit:
|
||||
min: {x: 0, y: 0, z: 0}
|
||||
max: {x: 0, y: 0, z: 0}
|
||||
value: {x: 0, y: 0, z: 0}
|
||||
length: 0
|
||||
modified: 0
|
||||
- boneName: Right_Shoulder
|
||||
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: Right_UpperArm
|
||||
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: Right_LowerArm
|
||||
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: Right_Hand
|
||||
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: 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: 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: 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: Left_Shoulder
|
||||
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: Left_UpperArm
|
||||
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: Left_LowerArm
|
||||
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: Left_Hand
|
||||
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: Left_UpperLeg
|
||||
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: Left_LowerLeg
|
||||
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: Left_Foot
|
||||
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: Left_Toes
|
||||
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: Left_ThumbProximal
|
||||
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: Left_ThumbIntermediate
|
||||
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: Left_ThumbDistal
|
||||
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: Left_IndexProximal
|
||||
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: Left_IndexIntermediate
|
||||
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: Left_IndexDistal
|
||||
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: Left_MiddleProximal
|
||||
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: Left_MiddleIntermediate
|
||||
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: Left_MiddleDistal
|
||||
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: Left_RingProximal
|
||||
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: Left_RingIntermediate
|
||||
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: Left_RingDistal
|
||||
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: Left_PinkyProximal
|
||||
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: Left_PinkyIntermediate
|
||||
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: Left_PinkyDistal
|
||||
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: Right_ThumbProximal
|
||||
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: Right_ThumbIntermediate
|
||||
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: Right_ThumbDistal
|
||||
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: Right_IndexProximal
|
||||
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: Right_IndexIntermediate
|
||||
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: Right_IndexDistal
|
||||
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: Right_MiddleProximal
|
||||
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: Right_MiddleIntermediate
|
||||
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: Right_MiddleDistal
|
||||
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: Right_RingProximal
|
||||
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: Right_RingIntermediate
|
||||
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: Right_RingDistal
|
||||
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: Right_PinkyProximal
|
||||
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: Right_PinkyIntermediate
|
||||
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: Right_PinkyDistal
|
||||
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: Mannequin(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: Geometry
|
||||
parentName: Mannequin(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: Mannequin_Mesh
|
||||
parentName: Geometry
|
||||
position: {x: -0, y: 0, z: 0}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Skeleton
|
||||
parentName: Mannequin(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: Hips
|
||||
parentName: Skeleton
|
||||
position: {x: -0, y: 0.9810986, z: -0.01590455}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_UpperLeg
|
||||
parentName: Hips
|
||||
position: {x: -0.08610317, y: -0.053458035, z: -0.011470641}
|
||||
rotation: {x: 0.999839, y: -0.01775374, z: 0.000046300094, w: -0.0026074864}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_LowerLeg
|
||||
parentName: Left_UpperLeg
|
||||
position: {x: -2.9864513e-16, y: 0.4133444, z: -5.4956034e-17}
|
||||
rotation: {x: 0.034046065, y: 2.2687323e-19, z: 7.728622e-21, w: 0.9994203}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_Foot
|
||||
parentName: Left_LowerLeg
|
||||
position: {x: 0.0000000017320426, y: 0.41403946, z: 7.141509e-16}
|
||||
rotation: {x: -0.035700925, y: 0.049957544, z: -0.019575229, w: 0.9979211}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_Toes
|
||||
parentName: Left_Foot
|
||||
position: {x: 7.105427e-17, y: 0.07224803, z: -0.118065506}
|
||||
rotation: {x: -0.7071068, y: 8.7157646e-33, z: -8.7157646e-33, w: 0.7071068}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_ToesEnd
|
||||
parentName: Left_Toes
|
||||
position: {x: -0.0010026174, y: 0.06423476, z: 0.016843978}
|
||||
rotation: {x: 0.7070656, y: -0.0076321815, z: -0.0076321815, w: 0.7070656}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_UpperLeg
|
||||
parentName: Hips
|
||||
position: {x: 0.086103186, y: -0.053458147, z: -0.0114706475}
|
||||
rotation: {x: 0.0026075041, y: 0.000046300407, z: 0.01775374, w: 0.999839}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_LowerLeg
|
||||
parentName: Right_UpperLeg
|
||||
position: {x: 0.0000004514609, y: -0.41334414, z: 0.000000025994435}
|
||||
rotation: {x: 0.034046065, y: 2.2687323e-19, z: 7.728622e-21, w: 0.9994203}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_Foot
|
||||
parentName: Right_LowerLeg
|
||||
position: {x: -0.0000007472542, y: -0.41403967, z: -0.000000032847502}
|
||||
rotation: {x: -0.035700925, y: 0.049957544, z: -0.019575229, w: 0.9979211}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_Toes
|
||||
parentName: Right_Foot
|
||||
position: {x: -0.00000015643121, y: -0.07224799, z: 0.11807}
|
||||
rotation: {x: -0.7071068, y: 0, z: -0, w: 0.7071068}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_ToesEnd
|
||||
parentName: Right_Toes
|
||||
position: {x: 0.0010031584, y: -0.06423059, z: -0.016843898}
|
||||
rotation: {x: 0.7070656, y: -0.0076321815, z: -0.0076321815, w: 0.7070656}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Spine
|
||||
parentName: Hips
|
||||
position: {x: -0, y: 0.058229383, z: 0.0012229546}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Chest
|
||||
parentName: Spine
|
||||
position: {x: -0, y: 0.1034043, z: 0}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: UpperChest
|
||||
parentName: Chest
|
||||
position: {x: -0, y: 0.1034043, z: 0}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_Shoulder
|
||||
parentName: UpperChest
|
||||
position: {x: -0.0009571358, y: 0.19149224, z: -0.0087277945}
|
||||
rotation: {x: -0.0049494267, y: -0.113521874, z: 0.043275386, w: 0.99258024}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_UpperArm
|
||||
parentName: Left_Shoulder
|
||||
position: {x: -0.16743502, y: -5.684341e-16, z: -2.664535e-17}
|
||||
rotation: {x: 0.12673509, y: 0.03332071, z: 0.6809724, w: 0.72048914}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_LowerArm
|
||||
parentName: Left_UpperArm
|
||||
position: {x: -2.8421706e-16, y: 0.28508067, z: 0}
|
||||
rotation: {x: 0.020536564, y: 0.00832135, z: -0.020624585, w: 0.9995417}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_Hand
|
||||
parentName: Left_LowerArm
|
||||
position: {x: -2.4123817e-10, y: 0.24036221, z: -1.4210853e-16}
|
||||
rotation: {x: -0.047397237, y: -0.24003562, z: 0.013464749, w: 0.9695128}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_IndexProximal
|
||||
parentName: Left_Hand
|
||||
position: {x: 0.007815497, y: 0.0918443, z: 0.02657316}
|
||||
rotation: {x: -0.0000789147, y: -0.7104809, z: -0.006305193, w: 0.70368826}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_IndexIntermediate
|
||||
parentName: Left_IndexProximal
|
||||
position: {x: 9.079803e-16, y: 0.04209777, z: 3.2607592e-16}
|
||||
rotation: {x: 0.030199163, y: 0.00000005960465, z: -0.00000038841978, w: 0.9995439}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_IndexDistal
|
||||
parentName: Left_IndexIntermediate
|
||||
position: {x: -8.20111e-16, y: 0.02513925, z: -4.317065e-16}
|
||||
rotation: {x: 0.03945603, y: 0.000000016383924, z: 0.0000000332638, w: 0.9992213}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_IndexDistalEnd
|
||||
parentName: Left_IndexDistal
|
||||
position: {x: -1.1581012e-16, y: 0.024609203, z: -6.661337e-17}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_MiddleProximal
|
||||
parentName: Left_Hand
|
||||
position: {x: 0.012847862, y: 0.08609763, z: 0.003435423}
|
||||
rotation: {x: -0.004090429, y: -0.6610811, z: -0.004001968, w: 0.7502927}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_MiddleIntermediate
|
||||
parentName: Left_MiddleProximal
|
||||
position: {x: 2.7261607e-16, y: 0.051279362, z: 5.988264e-17}
|
||||
rotation: {x: 0.026233751, y: -0.000000029802322, z: -0.0000007133931, w: 0.99965584}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_MiddleDistal
|
||||
parentName: Left_MiddleIntermediate
|
||||
position: {x: -7.199101e-17, y: 0.028284006, z: -4.93648e-17}
|
||||
rotation: {x: 0.03347514, y: -0, z: -0, w: 0.9994396}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_MiddleDistalEnd
|
||||
parentName: Left_MiddleDistal
|
||||
position: {x: -1.7763565e-16, y: 0.023346113, z: -7.105426e-17}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_PinkyProximal
|
||||
parentName: Left_Hand
|
||||
position: {x: 0.004436847, y: 0.07288173, z: -0.029359013}
|
||||
rotation: {x: -0.02007038, y: -0.5504896, z: -0.008246153, w: 0.83456}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_PinkyIntermediate
|
||||
parentName: Left_PinkyProximal
|
||||
position: {x: 1.9539922e-16, y: 0.032272622, z: -1.4210853e-16}
|
||||
rotation: {x: 0.028115956, y: -0.00000008940699, z: -0.0000005941839, w: 0.9996047}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_PinkyDistal
|
||||
parentName: Left_PinkyIntermediate
|
||||
position: {x: -3.5527133e-17, y: 0.020224448, z: -7.1054265e-17}
|
||||
rotation: {x: 0.03643686, y: 0.00000014611446, z: 0.00000018696, w: 0.999336}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_PinkyDistalEnd
|
||||
parentName: Left_PinkyDistal
|
||||
position: {x: -1.2434495e-16, y: 0.018519057, z: 0}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_RingProximal
|
||||
parentName: Left_Hand
|
||||
position: {x: 0.009525569, y: 0.08161553, z: -0.012242405}
|
||||
rotation: {x: -0.017654313, y: -0.6026994, z: -0.0040520057, w: 0.79776275}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_RingIntermediate
|
||||
parentName: Left_RingProximal
|
||||
position: {x: 3.3750777e-16, y: 0.043630484, z: -1.4210853e-16}
|
||||
rotation: {x: 0.023556013, y: 0.00000026822087, z: 0.0000007636844, w: 0.99972254}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_RingDistal
|
||||
parentName: Left_RingIntermediate
|
||||
position: {x: 1.7763566e-17, y: 0.027115494, z: -1.065814e-16}
|
||||
rotation: {x: 0.03908592, y: -0.000000019744585, z: 0.00000042049942, w: 0.9992359}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_RingDistalEnd
|
||||
parentName: Left_RingDistal
|
||||
position: {x: -7.105426e-17, y: 0.02095726, z: -7.105426e-17}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_ThumbProximal
|
||||
parentName: Left_Hand
|
||||
position: {x: -0.00080496486, y: 0.028816883, z: 0.023514476}
|
||||
rotation: {x: 0.1796032, y: 0.8841741, z: 0.4239896, w: -0.07881452}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_ThumbIntermediate
|
||||
parentName: Left_ThumbProximal
|
||||
position: {x: 2.4357445e-15, y: 0.027578257, z: 0.0038183592}
|
||||
rotation: {x: 0.1278054, y: -0, z: -0, w: 0.9917993}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_ThumbDistal
|
||||
parentName: Left_ThumbIntermediate
|
||||
position: {x: -2.2737365e-15, y: 0.044597257, z: -0.006869915}
|
||||
rotation: {x: -0.045421924, y: -0.00000036741366, z: -0.0000008691409, w: 0.9989679}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_ThumbDistalEnd
|
||||
parentName: Left_ThumbDistal
|
||||
position: {x: -4.2632555e-16, y: 0.029458016, z: 0}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Neck
|
||||
parentName: UpperChest
|
||||
position: {x: -0, y: 0.25104657, z: -0.015329581}
|
||||
rotation: {x: 0.060688436, y: -0, z: -0, w: 0.9981568}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Head
|
||||
parentName: Neck
|
||||
position: {x: -0, y: 0.12747401, z: 0}
|
||||
rotation: {x: -0.060688436, y: 0, z: -0, w: 0.9981568}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Jaw
|
||||
parentName: Head
|
||||
position: {x: -0, y: -0.00763539, z: 0.012895278}
|
||||
rotation: {x: 0.15949209, y: 0.68888485, z: 0.15949209, w: 0.68888485}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Left_Eye
|
||||
parentName: Head
|
||||
position: {x: -0.03330326, y: 0.034598116, z: 0.0867403}
|
||||
rotation: {x: 0, y: 0.7071068, z: 0, w: 0.7071068}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_Eye
|
||||
parentName: Head
|
||||
position: {x: 0.033303294, y: 0.03459628, z: 0.0867403}
|
||||
rotation: {x: 0.7071068, y: 4.3297806e-17, z: 0.7071068, w: -4.3297806e-17}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Neck_Twist_A
|
||||
parentName: Neck
|
||||
position: {x: -0, y: 0.063737005, z: 0}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_Shoulder
|
||||
parentName: UpperChest
|
||||
position: {x: 0.0009571358, y: 0.19149381, z: -0.008727803}
|
||||
rotation: {x: 0.99258024, y: -0.04327539, z: -0.113521874, w: 0.004949396}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_UpperArm
|
||||
parentName: Right_Shoulder
|
||||
position: {x: 0.16743432, y: -0.0000022099182, z: 0.00000012213746}
|
||||
rotation: {x: 0.1267345, y: 0.033320885, z: 0.68096745, w: 0.720494}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_LowerArm
|
||||
parentName: Right_UpperArm
|
||||
position: {x: 0.0000037273983, y: -0.285085, z: -0.00000035927226}
|
||||
rotation: {x: 0.020541133, y: 0.008317431, z: -0.020620903, w: 0.99954176}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_Hand
|
||||
parentName: Right_LowerArm
|
||||
position: {x: 0.0000014923929, y: -0.24036367, z: 0.0000017856368}
|
||||
rotation: {x: -0.047397237, y: -0.24003562, z: 0.013464749, w: 0.9695128}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_IndexProximal
|
||||
parentName: Right_Hand
|
||||
position: {x: -0.0078223245, y: -0.0918393, z: -0.026574574}
|
||||
rotation: {x: -0.00008773989, y: -0.7104814, z: -0.0063276542, w: 0.7036876}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_IndexIntermediate
|
||||
parentName: Right_IndexProximal
|
||||
position: {x: 0.0000006924457, y: -0.04210151, z: -0.0000013631077}
|
||||
rotation: {x: 0.03020306, y: -0.0000005662439, z: 0.000012195228, w: 0.99954385}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_IndexDistal
|
||||
parentName: Right_IndexIntermediate
|
||||
position: {x: -0.00000032847043, y: -0.025139209, z: -0.0000005960629}
|
||||
rotation: {x: 0.03948371, y: -0.000000052504312, z: -0.000005515076, w: 0.99922025}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_IndexDistalEnd
|
||||
parentName: Right_IndexDistal
|
||||
position: {x: 0.00000023984484, y: -0.024609355, z: 0.0000006271131}
|
||||
rotation: {x: -5.5511138e-17, y: 0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_MiddleProximal
|
||||
parentName: Right_Hand
|
||||
position: {x: -0.012848663, y: -0.08609768, z: -0.0034359337}
|
||||
rotation: {x: -0.0040856875, y: -0.6610817, z: -0.0040004994, w: 0.7502922}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_MiddleIntermediate
|
||||
parentName: Right_MiddleProximal
|
||||
position: {x: 0.000000014272595, y: -0.051275954, z: 0.0000009747695}
|
||||
rotation: {x: 0.026226329, y: -0.0000007450579, z: -0.0000027469353, w: 0.9996561}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_MiddleDistal
|
||||
parentName: Right_MiddleIntermediate
|
||||
position: {x: 0.00000014287376, y: -0.028283618, z: 0.00000019378916}
|
||||
rotation: {x: 0.03347514, y: -0, z: -0, w: 0.9994396}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_MiddleDistalEnd
|
||||
parentName: Right_MiddleDistal
|
||||
position: {x: 0.000000038619483, y: -0.023345316, z: 0.0000005352584}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_PinkyProximal
|
||||
parentName: Right_Hand
|
||||
position: {x: -0.0044381507, y: -0.07288141, z: 0.029358566}
|
||||
rotation: {x: -0.020058475, y: -0.55049545, z: -0.008249418, w: 0.83455646}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_PinkyIntermediate
|
||||
parentName: Right_PinkyProximal
|
||||
position: {x: 0.00000045734515, y: -0.032268908, z: 0.00000088312623}
|
||||
rotation: {x: 0.02811499, y: -0.0000035166731, z: -0.00000016298141, w: 0.9996047}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_PinkyDistal
|
||||
parentName: Right_PinkyIntermediate
|
||||
position: {x: 0.00000023899057, y: -0.02022493, z: 0.00000055474345}
|
||||
rotation: {x: 0.03642403, y: -0.0000024211556, z: -0.000008829222, w: 0.9993365}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_PinkyDistalEnd
|
||||
parentName: Right_PinkyDistal
|
||||
position: {x: 0.000000632002, y: -0.018518865, z: 0.0000001154108}
|
||||
rotation: {x: -1.7347236e-17, y: 0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_RingProximal
|
||||
parentName: Right_Hand
|
||||
position: {x: -0.00952738, y: -0.08161427, z: 0.012242128}
|
||||
rotation: {x: -0.017649079, y: -0.6027014, z: -0.0040535578, w: 0.7977614}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_RingIntermediate
|
||||
parentName: Right_RingProximal
|
||||
position: {x: 0.0000000695935, y: -0.04362872, z: 0.00000080048335}
|
||||
rotation: {x: 0.023547903, y: 0.0000024139879, z: 0.0000069094813, w: 0.9997228}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_RingDistal
|
||||
parentName: Right_RingIntermediate
|
||||
position: {x: -0.000000290747, y: -0.02711462, z: 0.0000000181098}
|
||||
rotation: {x: 0.039100695, y: 0.00000009656897, z: -0.000004755179, w: 0.99923533}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_RingDistalEnd
|
||||
parentName: Right_RingDistal
|
||||
position: {x: 0.00000008856214, y: -0.020957856, z: 0.0000005565459}
|
||||
rotation: {x: 9.02056e-17, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_ThumbProximal
|
||||
parentName: Right_Hand
|
||||
position: {x: 0.00080341793, y: -0.028816395, z: -0.023514695}
|
||||
rotation: {x: 0.17960793, y: 0.8841713, z: 0.42399347, w: -0.07881395}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_ThumbIntermediate
|
||||
parentName: Right_ThumbProximal
|
||||
position: {x: 0.00000015009721, y: -0.02757781, z: -0.0038183848}
|
||||
rotation: {x: 0.12780538, y: -0, z: -0, w: 0.9917993}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_ThumbDistal
|
||||
parentName: Right_ThumbIntermediate
|
||||
position: {x: 0.0000007817755, y: -0.044594634, z: 0.0068707783}
|
||||
rotation: {x: -0.04541878, y: -0.000003060937, z: 0.000004811603, w: 0.99896806}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Right_ThumbDistalEnd
|
||||
parentName: Right_ThumbDistal
|
||||
position: {x: 0.00000020228964, y: -0.029458148, z: 0.0000009551683}
|
||||
rotation: {x: -2.7755574e-17, y: 0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
armTwist: 1
|
||||
foreArmTwist: 0
|
||||
upperLegTwist: 1
|
||||
legTwist: 0
|
||||
armStretch: 0
|
||||
legStretch: 0
|
||||
feetSpacing: 0
|
||||
globalScale: 1
|
||||
rootMotionBoneName:
|
||||
hasTranslationDoF: 1
|
||||
hasExtraRoot: 0
|
||||
skeletonHasParents: 1
|
||||
lastHumanDescriptionAvatarSource: {instanceID: 0}
|
||||
autoGenerateAvatarMappingIfUnspecified: 0
|
||||
animationType: 3
|
||||
humanoidOversampling: 1
|
||||
avatarSetup: 1
|
||||
addHumanoidExtraRootOnlyWhenUsingAvatar: 0
|
||||
remapMaterialsIfMaterialImportModeIsNone: 1
|
||||
additionalBone: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 912177c9ad5333b47a7e1fa148db6585
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
Binary file not shown.
@@ -0,0 +1,108 @@
|
||||
fileFormatVersion: 2
|
||||
guid: c6dc62700fa06274b9608a9fce8ed21b
|
||||
TextureImporter:
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
serializedVersion: 11
|
||||
mipmaps:
|
||||
mipMapMode: 0
|
||||
enableMipMap: 1
|
||||
sRGBTexture: 1
|
||||
linearTexture: 0
|
||||
fadeOut: 0
|
||||
borderMipMap: 0
|
||||
mipMapsPreserveCoverage: 0
|
||||
alphaTestReferenceValue: 0.5
|
||||
mipMapFadeDistanceStart: 1
|
||||
mipMapFadeDistanceEnd: 3
|
||||
bumpmap:
|
||||
convertToNormalMap: 0
|
||||
externalNormalMap: 0
|
||||
heightScale: 0.25
|
||||
normalMapFilter: 0
|
||||
isReadable: 0
|
||||
streamingMipmaps: 0
|
||||
streamingMipmapsPriority: 0
|
||||
vTOnly: 0
|
||||
grayScaleToAlpha: 0
|
||||
generateCubemap: 6
|
||||
cubemapConvolution: 0
|
||||
seamlessCubemap: 0
|
||||
textureFormat: 1
|
||||
maxTextureSize: 2048
|
||||
textureSettings:
|
||||
serializedVersion: 2
|
||||
filterMode: -1
|
||||
aniso: -1
|
||||
mipBias: -100
|
||||
wrapU: -1
|
||||
wrapV: -1
|
||||
wrapW: -1
|
||||
nPOTScale: 1
|
||||
lightmap: 0
|
||||
compressionQuality: 50
|
||||
spriteMode: 0
|
||||
spriteExtrude: 1
|
||||
spriteMeshType: 1
|
||||
alignment: 0
|
||||
spritePivot: {x: 0.5, y: 0.5}
|
||||
spritePixelsToUnits: 100
|
||||
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
|
||||
spriteGenerateFallbackPhysicsShape: 1
|
||||
alphaUsage: 1
|
||||
alphaIsTransparency: 0
|
||||
spriteTessellationDetail: -1
|
||||
textureType: 0
|
||||
textureShape: 1
|
||||
singleChannelComponent: 0
|
||||
flipbookRows: 1
|
||||
flipbookColumns: 1
|
||||
maxTextureSizeSet: 0
|
||||
compressionQualitySet: 0
|
||||
textureFormatSet: 0
|
||||
ignorePngGamma: 0
|
||||
applyGammaDecoding: 0
|
||||
platformSettings:
|
||||
- serializedVersion: 3
|
||||
buildTarget: DefaultTexturePlatform
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 2
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 3
|
||||
buildTarget: Standalone
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 2
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
spriteSheet:
|
||||
serializedVersion: 2
|
||||
sprites: []
|
||||
outline: []
|
||||
physicsShape: []
|
||||
bones: []
|
||||
spriteID:
|
||||
internalID: 0
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
spritePackingTag:
|
||||
pSDRemoveMatte: 0
|
||||
pSDShowRemoveMatteOption: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
Binary file not shown.
@@ -0,0 +1,108 @@
|
||||
fileFormatVersion: 2
|
||||
guid: b41d630ccc344454bb1f27587f9acd70
|
||||
TextureImporter:
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
serializedVersion: 11
|
||||
mipmaps:
|
||||
mipMapMode: 0
|
||||
enableMipMap: 1
|
||||
sRGBTexture: 1
|
||||
linearTexture: 0
|
||||
fadeOut: 0
|
||||
borderMipMap: 0
|
||||
mipMapsPreserveCoverage: 0
|
||||
alphaTestReferenceValue: 0.5
|
||||
mipMapFadeDistanceStart: 1
|
||||
mipMapFadeDistanceEnd: 3
|
||||
bumpmap:
|
||||
convertToNormalMap: 0
|
||||
externalNormalMap: 0
|
||||
heightScale: 0.25
|
||||
normalMapFilter: 0
|
||||
isReadable: 0
|
||||
streamingMipmaps: 0
|
||||
streamingMipmapsPriority: 0
|
||||
vTOnly: 0
|
||||
grayScaleToAlpha: 0
|
||||
generateCubemap: 6
|
||||
cubemapConvolution: 0
|
||||
seamlessCubemap: 0
|
||||
textureFormat: 1
|
||||
maxTextureSize: 2048
|
||||
textureSettings:
|
||||
serializedVersion: 2
|
||||
filterMode: -1
|
||||
aniso: -1
|
||||
mipBias: -100
|
||||
wrapU: -1
|
||||
wrapV: -1
|
||||
wrapW: -1
|
||||
nPOTScale: 1
|
||||
lightmap: 0
|
||||
compressionQuality: 50
|
||||
spriteMode: 0
|
||||
spriteExtrude: 1
|
||||
spriteMeshType: 1
|
||||
alignment: 0
|
||||
spritePivot: {x: 0.5, y: 0.5}
|
||||
spritePixelsToUnits: 100
|
||||
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
|
||||
spriteGenerateFallbackPhysicsShape: 1
|
||||
alphaUsage: 1
|
||||
alphaIsTransparency: 0
|
||||
spriteTessellationDetail: -1
|
||||
textureType: 0
|
||||
textureShape: 1
|
||||
singleChannelComponent: 0
|
||||
flipbookRows: 1
|
||||
flipbookColumns: 1
|
||||
maxTextureSizeSet: 0
|
||||
compressionQualitySet: 0
|
||||
textureFormatSet: 0
|
||||
ignorePngGamma: 0
|
||||
applyGammaDecoding: 0
|
||||
platformSettings:
|
||||
- serializedVersion: 3
|
||||
buildTarget: DefaultTexturePlatform
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 2
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 3
|
||||
buildTarget: Standalone
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 2
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
spriteSheet:
|
||||
serializedVersion: 2
|
||||
sprites: []
|
||||
outline: []
|
||||
physicsShape: []
|
||||
bones: []
|
||||
spriteID:
|
||||
internalID: 0
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
spritePackingTag:
|
||||
pSDRemoveMatte: 0
|
||||
pSDShowRemoveMatteOption: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
Binary file not shown.
@@ -0,0 +1,108 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 104a45460231b8d4783e0bb2223be28c
|
||||
TextureImporter:
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
serializedVersion: 11
|
||||
mipmaps:
|
||||
mipMapMode: 0
|
||||
enableMipMap: 1
|
||||
sRGBTexture: 0
|
||||
linearTexture: 0
|
||||
fadeOut: 0
|
||||
borderMipMap: 0
|
||||
mipMapsPreserveCoverage: 0
|
||||
alphaTestReferenceValue: 0.5
|
||||
mipMapFadeDistanceStart: 1
|
||||
mipMapFadeDistanceEnd: 3
|
||||
bumpmap:
|
||||
convertToNormalMap: 0
|
||||
externalNormalMap: 0
|
||||
heightScale: 0.25
|
||||
normalMapFilter: 0
|
||||
isReadable: 0
|
||||
streamingMipmaps: 0
|
||||
streamingMipmapsPriority: 0
|
||||
vTOnly: 0
|
||||
grayScaleToAlpha: 0
|
||||
generateCubemap: 6
|
||||
cubemapConvolution: 0
|
||||
seamlessCubemap: 0
|
||||
textureFormat: 1
|
||||
maxTextureSize: 2048
|
||||
textureSettings:
|
||||
serializedVersion: 2
|
||||
filterMode: -1
|
||||
aniso: -1
|
||||
mipBias: -100
|
||||
wrapU: -1
|
||||
wrapV: -1
|
||||
wrapW: -1
|
||||
nPOTScale: 1
|
||||
lightmap: 0
|
||||
compressionQuality: 50
|
||||
spriteMode: 0
|
||||
spriteExtrude: 1
|
||||
spriteMeshType: 1
|
||||
alignment: 0
|
||||
spritePivot: {x: 0.5, y: 0.5}
|
||||
spritePixelsToUnits: 100
|
||||
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
|
||||
spriteGenerateFallbackPhysicsShape: 1
|
||||
alphaUsage: 1
|
||||
alphaIsTransparency: 0
|
||||
spriteTessellationDetail: -1
|
||||
textureType: 1
|
||||
textureShape: 1
|
||||
singleChannelComponent: 0
|
||||
flipbookRows: 1
|
||||
flipbookColumns: 1
|
||||
maxTextureSizeSet: 0
|
||||
compressionQualitySet: 0
|
||||
textureFormatSet: 0
|
||||
ignorePngGamma: 0
|
||||
applyGammaDecoding: 0
|
||||
platformSettings:
|
||||
- serializedVersion: 3
|
||||
buildTarget: DefaultTexturePlatform
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 2
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 3
|
||||
buildTarget: Standalone
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 2
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
spriteSheet:
|
||||
serializedVersion: 2
|
||||
sprites: []
|
||||
outline: []
|
||||
physicsShape: []
|
||||
bones: []
|
||||
spriteID:
|
||||
internalID: 0
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
spritePackingTag:
|
||||
pSDRemoveMatte: 0
|
||||
pSDShowRemoveMatteOption: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
Binary file not shown.
@@ -0,0 +1,108 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 28d78c5517421f047b88352f3b18e8e7
|
||||
TextureImporter:
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
serializedVersion: 11
|
||||
mipmaps:
|
||||
mipMapMode: 0
|
||||
enableMipMap: 1
|
||||
sRGBTexture: 1
|
||||
linearTexture: 0
|
||||
fadeOut: 0
|
||||
borderMipMap: 0
|
||||
mipMapsPreserveCoverage: 0
|
||||
alphaTestReferenceValue: 0.5
|
||||
mipMapFadeDistanceStart: 1
|
||||
mipMapFadeDistanceEnd: 3
|
||||
bumpmap:
|
||||
convertToNormalMap: 0
|
||||
externalNormalMap: 0
|
||||
heightScale: 0.25
|
||||
normalMapFilter: 0
|
||||
isReadable: 0
|
||||
streamingMipmaps: 0
|
||||
streamingMipmapsPriority: 0
|
||||
vTOnly: 0
|
||||
grayScaleToAlpha: 0
|
||||
generateCubemap: 6
|
||||
cubemapConvolution: 0
|
||||
seamlessCubemap: 0
|
||||
textureFormat: 1
|
||||
maxTextureSize: 2048
|
||||
textureSettings:
|
||||
serializedVersion: 2
|
||||
filterMode: -1
|
||||
aniso: -1
|
||||
mipBias: -100
|
||||
wrapU: -1
|
||||
wrapV: -1
|
||||
wrapW: -1
|
||||
nPOTScale: 1
|
||||
lightmap: 0
|
||||
compressionQuality: 50
|
||||
spriteMode: 0
|
||||
spriteExtrude: 1
|
||||
spriteMeshType: 1
|
||||
alignment: 0
|
||||
spritePivot: {x: 0.5, y: 0.5}
|
||||
spritePixelsToUnits: 100
|
||||
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
|
||||
spriteGenerateFallbackPhysicsShape: 1
|
||||
alphaUsage: 1
|
||||
alphaIsTransparency: 0
|
||||
spriteTessellationDetail: -1
|
||||
textureType: 0
|
||||
textureShape: 1
|
||||
singleChannelComponent: 0
|
||||
flipbookRows: 1
|
||||
flipbookColumns: 1
|
||||
maxTextureSizeSet: 0
|
||||
compressionQualitySet: 0
|
||||
textureFormatSet: 0
|
||||
ignorePngGamma: 0
|
||||
applyGammaDecoding: 0
|
||||
platformSettings:
|
||||
- serializedVersion: 3
|
||||
buildTarget: DefaultTexturePlatform
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 2
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 3
|
||||
buildTarget: Standalone
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 2
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
spriteSheet:
|
||||
serializedVersion: 2
|
||||
sprites: []
|
||||
outline: []
|
||||
physicsShape: []
|
||||
bones: []
|
||||
spriteID:
|
||||
internalID: 0
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
spritePackingTag:
|
||||
pSDRemoveMatte: 0
|
||||
pSDShowRemoveMatteOption: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user