Skip to content

Commit d5dfa0d

Browse files
authored
Mesh Helper multi-mesh support (#241)
<!-- Copy the TICKETID for this task from Jira and add it to the PR name in brackets --> <!-- PR name should look like: [SDK-524] My Pull Request --> <!-- Add link for the ticket here editing the TICKETID--> ## [SDK-524](https://ready-player-me.atlassian.net/browse/SDK-524) ## Description - Mesh helper now supports transfer from multiple source mesh, material and bones target <!-- Fill the section below with Added, Updated and Removed information. --> <!-- If there is no item under one of the lists remove it's title. --> <!-- Testability --> ## How to Test - Load atlassed and non-atlassed avatars with different customization combinations in Photon Sample project <!-- Update your progress with the task here --> ## Checklist - [ ] Tests written or updated for the changes. - [ ] Documentation is updated. - [x] Changelog is updated. <!--- Remember to copy the Changes Section into the commit message when you close the PR --> [SDK-524]: https://ready-player-me.atlassian.net/browse/SDK-524?atlOrigin=eyJpIjoiNWRkNTljNzYxNjVmNDY3MDlhMDU5Y2ZhYzA5YTRkZjUiLCJwIjoiZ2l0aHViLWNvbS1KU1cifQ
1 parent 9e28b12 commit d5dfa0d

File tree

2 files changed

+59
-14
lines changed

2 files changed

+59
-14
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@
33
All notable changes to this project will be documented in this file.
44
This project adheres to [Semantic Versioning](http://semver.org/).
55

6+
7+
## [6.0.2] - 2024.MM.DD
8+
9+
### Updated
10+
- AvatarMeshHelper now supports multiple mesh and material transfer. [#241](https://github.com/readyplayerme/rpm-unity-sdk-core/pull/241)
11+
612
## [6.0.1] - 2024.02.26
713

814
### Updated
+53-14
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,68 @@
11
using UnityEngine;
2+
using System.Collections.Generic;
23

34
namespace ReadyPlayerMe.Core
45
{
56
public static class AvatarMeshHelper
67
{
8+
[Obsolete("Use TransferMesh(GameObject source, GameObject target) instead.")]
79
public static void TransferMesh(GameObject source, SkinnedMeshRenderer[] targetMeshes, Animator targetAnimator)
810
{
9-
var sourceAnimator = source.GetComponentInChildren<Animator>();
10-
SkinnedMeshRenderer[] sourceMeshes = source.GetComponentsInChildren<SkinnedMeshRenderer>();
11-
for (var i = 0; i < targetMeshes.Length; i++)
11+
TransferMesh(source, targetMeshes[0].transform.parent.gameObject);
12+
}
13+
14+
/// <summary>
15+
/// Transfers the mesh and material data from the source to the target avatar.
16+
/// </summary>
17+
/// <param name="source">Imported Ready Player Me avatar.</param>
18+
/// <param name="target">Photon Network Player Character.</param>
19+
public static void TransferMesh(GameObject source, GameObject target)
20+
{
21+
// store the relevant data of the source (downloaded) avatar
22+
var rendererDict = new Dictionary<string, SkinnedMeshRenderer>();
23+
24+
var sourceRenderers = source.GetComponentsInChildren<SkinnedMeshRenderer>();
25+
var targetRenderers = target.GetComponentsInChildren<SkinnedMeshRenderer>();
26+
27+
foreach (var renderer in sourceRenderers)
28+
{
29+
rendererDict.Add(renderer.name, renderer);
30+
}
31+
32+
// transfer the data to the target skinning mesh renderers
33+
foreach (var renderer in targetRenderers)
1234
{
13-
if (i >= sourceMeshes.Length)
35+
if (rendererDict.TryGetValue(renderer.name, out var sourceRenderer))
1436
{
15-
targetMeshes[i].enabled = false;
16-
break;
37+
renderer.material = sourceRenderer.materials[0];
38+
renderer.sharedMesh = sourceRenderer.sharedMesh;
39+
40+
// transfer the bone data
41+
foreach (var targetBone in renderer.bones)
42+
{
43+
foreach (var sourceBone in sourceRenderer.bones)
44+
{
45+
if (sourceBone.name == targetBone.name)
46+
{
47+
targetBone.position = sourceBone.position;
48+
targetBone.rotation = sourceBone.rotation;
49+
targetBone.localScale = sourceBone.localScale;
50+
break;
51+
}
52+
}
53+
}
54+
}
55+
else
56+
{
57+
// remove the renderer if it's not found in the source avatar
58+
Object.Destroy(renderer.gameObject);
1759
}
18-
Mesh mesh = sourceMeshes[i].sharedMesh;
19-
targetMeshes[i].sharedMesh = mesh;
20-
targetMeshes[i].enabled = true;
21-
Material[] materials = sourceMeshes[i].sharedMaterials;
22-
targetMeshes[i].sharedMaterials = materials;
2360
}
24-
25-
Avatar avatar = sourceAnimator.avatar;
26-
targetAnimator.avatar = avatar;
61+
62+
// transfer the animation avatar
63+
var sourceAnimator = source.GetComponentInChildren<Animator>();
64+
var targetAnimator = target.GetComponentInChildren<Animator>();
65+
targetAnimator.avatar = sourceAnimator.avatar;
2766
}
2867
}
2968
}

0 commit comments

Comments
 (0)