summaryrefslogtreecommitdiff
path: root/Assets/ThirdParty/VRM/MeshUtility/Runtime/HumanoidLoader.cs
diff options
context:
space:
mode:
authorchai <chaifix@163.com>2022-03-10 14:07:40 +0800
committerchai <chaifix@163.com>2022-03-10 14:07:40 +0800
commit22891bf59032ba88262824255a706d652031384b (patch)
tree7595439ba9966c9402d37e37cee5e8cf098757d5 /Assets/ThirdParty/VRM/MeshUtility/Runtime/HumanoidLoader.cs
parent8b04ea73e540067f83870b61d89db4868fea5e8a (diff)
* move folder
Diffstat (limited to 'Assets/ThirdParty/VRM/MeshUtility/Runtime/HumanoidLoader.cs')
-rw-r--r--Assets/ThirdParty/VRM/MeshUtility/Runtime/HumanoidLoader.cs60
1 files changed, 0 insertions, 60 deletions
diff --git a/Assets/ThirdParty/VRM/MeshUtility/Runtime/HumanoidLoader.cs b/Assets/ThirdParty/VRM/MeshUtility/Runtime/HumanoidLoader.cs
deleted file mode 100644
index 2a5d5252..00000000
--- a/Assets/ThirdParty/VRM/MeshUtility/Runtime/HumanoidLoader.cs
+++ /dev/null
@@ -1,60 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using UnityEngine;
-
-namespace MeshUtility
-{
- public static class HumanoidLoader
- {
- public static Avatar LoadHumanoidAvatar(Transform root, IEnumerable<(Transform, HumanBodyBones)> boneMap)
- {
- var description = new HumanDescription
- {
- skeleton = root.GetComponentsInChildren<Transform>()
- .Select(x => x.ToSkeletonBone()).ToArray(),
- human = boneMap
- .Select(x => new HumanBone
- {
- boneName = x.Item1.name,
- humanName = s_humanTranitBoneNameMap[x.Item2],
- limit = new HumanLimit
- {
- useDefaultValues = true,
- }
- }).ToArray(),
-
- armStretch = 0.05f,
- legStretch = 0.05f,
- upperArmTwist = 0.5f,
- lowerArmTwist = 0.5f,
- upperLegTwist = 0.5f,
- lowerLegTwist = 0.5f,
- feetSpacing = 0,
- hasTranslationDoF = false,
- };
-
- return AvatarBuilder.BuildHumanAvatar(root.gameObject, description);
- }
-
- static SkeletonBone ToSkeletonBone(this Transform t)
- {
- var sb = new SkeletonBone();
- sb.name = t.name;
- sb.position = t.localPosition;
- sb.rotation = t.localRotation;
- sb.scale = t.localScale;
- return sb;
- }
-
- static HumanBodyBones TraitToHumanBone(string x)
- {
- return (HumanBodyBones)Enum.Parse(typeof(HumanBodyBones), x.Replace(" ", ""), true);
- }
-
- static readonly Dictionary<HumanBodyBones, string> s_humanTranitBoneNameMap =
- HumanTrait.BoneName.ToDictionary(
- x => TraitToHumanBone(x),
- x => x);
- }
-}