mirror of
https://github.com/vrm-c/UniVRM.git
synced 2026-07-04 09:27:14 -05:00
get non active
This commit is contained in:
parent
d2b4ad1964
commit
866e75243e
|
|
@ -168,9 +168,9 @@ namespace VRM
|
|||
{
|
||||
// copy元
|
||||
var animator = exportRoot.GetComponent<Animator>();
|
||||
var beforeTransforms = exportRoot.GetComponentsInChildren<Transform>();
|
||||
var beforeTransforms = exportRoot.GetComponentsInChildren<Transform>(true);
|
||||
// copy先
|
||||
var afterTransforms = target.GetComponentsInChildren<Transform>();
|
||||
var afterTransforms = target.GetComponentsInChildren<Transform>(true);
|
||||
// copy先のhumanoidBoneのリストを得る
|
||||
var humanTransforms = CachedEnum.GetValues<HumanBodyBones>()
|
||||
.Where(x => x != HumanBodyBones.LastBone)
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user