AnyPortrait > Manual > Synchronize with other characters

Synchronize with other characters


1.3.4

The Customize function to change the character's outfit or appearance in the game is an important factor.
We introduced the image replacement method (Related page), but many users gave us a lot of feedback after that.
The Synchronize function covered on this page is basically to connect with other characters and play the animation in the same way.
However, our team expects the concept of this function to be utilized for Customization.
This page covers how to utilize the Synchronize function based on what will be applied as the Customize function.
If you give us your feedback on this feature, we will further expand and further develop this concept.




We prepared a scene in which only the Hairband and ribbon (hereafter called "Hairband") was separated from the character of the demo.
Let's make the animation work only for Character and synchronize Hairband to Character.




For Synchronize, Animation and Control Parameter must be the same.
When you open Character, the control parameters are registered in the modifier.




(1) Character has 3 animations of "Idle, Smile, Angry".
(2) Remember the FPS and Length of this animations.




Opening Hairband with the editor, Control parameters must be same with the synchronization target.
Also, it must be implemented so that it can move as a modifier according to the control parameter.
(However, since bones are not synchronized, there is no need to make them identical.)




(1) The animation is also three of "Idle, Smile, Angry". If the names are different, they will not be synced.
(2) Each animation length and FPS must also be the same as the sync target.


Now, let's write the script below so that Hairband is synchronized with Character.



Synchronization can be turned on or off using the Synchronize and Unsynchronize functions.
Synchronize function allows you to selectively synchronize Animation or Control parameter.
Here, I put two true values so that they all synchronize.
For detailed description of the function, refer to the related page.




(1) Create a new GameObject.
(2) Add the created script and assign Character and Hairband respectively.




Launch the game and press A key to see the Hairband attach to the Character and the animation and control parameters move in sync.




However, you can see that the rendering order of the meshes in Hairband is not correct.
You need to manually set the rendering order of the meshes of Hairband with a script.




(1) Open Character and check where the meshes of Hairband should be placed.
Let's remember the names of the "meshes just behind" the order in which the meshes in the Hairband should be rendered.




Let's make the Sorting Order of the Character's meshes be assigned differently according to the rendering order.
(1) Press the Bake button.
(2) Select Settings tab.
(3) Change Sorting Order Option to Depth To Order, and set Order Per Depth to 2.
Order Per Depth must be at least 2 to be able to put new meshes between existing meshes.


After setup, execute Bake.




(1) Open Hairband and remember all the mesh names.


Now, add the code for specifying Sorting Order to the script as shown below using the names of the meshes you remembered earlier.





Relaunch the game and press A key and you can see the meshes in the Hairband rendered in their proper positions.




If you press the S key, you can see that the synchronization is canceled by the Unsynchronize function.




Synchronize Root Units


1.3.4

When using Synchronize's functions, you may don't want to synchronize animations.
However, sometimes you want to synchronize "Root Unit transitions" even if you don't synchronize animations.
This would be especially necessary when synchronizing control parameters or synchronizing bones.




First, the main character.
(1) Three Root Units are registered.
(2) The image of each root unit is made easy to distinguish numerically as above.
(3) 3 animation clips are created so that each root unit is executed.








Since the 3 animations are targeting each root unit, playing the animation will switch the root unit as shown above.




This time it's a sync character.
Equally, there are 3 root units.
However, since there is no animation, it is a character whose root unit cannot be switched on its own.


Let's write the script as below to synchronize the target root units to be switched.



Check that the "root unit synchronization" request among the arguments of the Synchronize function is true.


Note
Root unit sync requests do not work in the following cases:
- When the number of root units is less than or equal 1, or the number is different from each other
- When animations are synchronized (Animation synchronization includes root unit synchronization)




Let's put the finished script into the Unity scene.
(1) MainCharacter and SyncCharacter are created, create a new GameObject and add the above script.
(2) Allocate each apPortrait member in the script appropriately.




Now let's run the game.
The root unit is switched according to the animation of the main character.
When you synchronize, you can see that the root unit of the sync character is also switched