= Assets, Actors and Editors
{F101999, size=full}
The diagram above shows the different concepts used for character customization and their relation. The system main concepts are CustomizableObject assets, CustomizableObjectInstance assets, and Unreal Actors with special components using these assets.
== Customizable Object
This is a new type of asset added to Unreal Engine. It represents an object that can be customized. It includes all the possible variations that can be applied to it, and defines the parameters that can be controlled at run-time (by the player or by game code), and how they affect the final objects.
You can create CustomizableObjects from the Content Browser **Add New** menu:
{F102004, size=full}
== Parameters ==
A Customizable Object will define several parameters. The parameters are what the game or application (so probably the player) will be able to modify at runtime. There are several types of parameters, and they can be created by several nodes:
* Slider parameters: numeric parameters with decimals, ranging between 0.0 and 1.0. These are usually created explicitely by a [[ /w/mutable/unreal-engine-4/user-documentation/nodes/float-parameter | Float Parameter Node ]], and used for continuous effects like texture effects, or mesh morphs.
* Enumeration parameters: they represent an option in a predefined set of options. These are created by [[ /w/mutable/unreal-engine-4/user-documentation/nodes/object-group | Object Group Node ]], to select a child object.
* Checkbox parameters: they only have two possibilities (enabled or disabled). These are created by [[ /w/mutable/unreal-engine-4/user-documentation/nodes/object-group | Object Group Node ]] when the group type is "Toggle Each".
* Projector parameters: they represent a projector with a position that will be modified at runtime. They are created with the [[ /w/mutable/unreal-engine-4/user-documentation/nodes/projector-parameter/ | Projector Parameter Node ]].
== Customizable Object Instance
{anchor #customizable-object-instance}
This is a new type of asset added to Unreal Engine. It represents an instance of a CustomizableObject: a set of parameter values to apply to a CustomizableObject in order to obtain a "customized" object. For instance, if you have a CustomizableObject for Bandits, each unique bandit you want to create from it will be a CustomizableObjectInstance.
To create an instance from a Customizable Object, you can right-click the Customizable Object in the Content Browser and select 'Create New Instance'.
{F102020, size=full}
= Editors
== Customizable Object Editor
There is a special tool called Customizable Object Editor inside the Unreal Editor to show and edit this kind of asset.
To open it, just double-click on any CustomizableObject asset in the Content Browser. These assets look like this in the browser:
{F102006, size=full}
The main UI of the editor looks like this:
{F102002, size=full}
The main panels of this interface are:
* **Source Graph** : It contains the diagram of nodes that define this CustomizableObject structure, including its LODs, materials, meshes, textures, parameters and effects that connect them all.
* **Object Properties** : This panel has the general properties of the object.
* **Node Properties** : When a node is selected in the //Source Graph// its properties are displayed here.
* **Preview Instance Viewport** : When an objects is open and compiled, this panel will show the 3D preview. See the article [[ /w/mutable/unreal-engine-4/user-documentation/preview-object/| Tuning the Preview Of An Object ]] for details.
* **Preview Instance Parameters** : This panel shows the current parameters for the preview object. They can be directly modified here. It can also "Bake" the current instance into a set of standard Unreal Engine assets. See this article for details on [[ /w/mutable/unreal-engine-4/user-documentation/baking-instances/ | baking objects ]].
The editor contains its own tool bar with the following elements:
{F102014, size=full}
* ** Save** Saves the current object.
* ** Compile ** Compile the current object with all of its children and update the preview. This is necessary to reflect changes in the graph. Find out more about the compilation options in the [[ /w/mutable/unreal-engine-4/technical/#performance | Performance Tuning ]] documentation.
* ** Compile Only Selected ** Compile the current object, and only the children that are currently in use in the preview. This is useful for faster iteration when the customizable object is very big.
* ** Export ** {icon exclamation-triangle} //Advanced// Is used for debugging and troubleshooting. This is only necessary when we request issue reproduction data from Anticto.
* ** Stress Test ** {icon exclamation-triangle} //Advanced// It is used to benchmark an object. It will build many instances internally and output the results in the //Output Log// of the Unreal Editor. Find out more in the [[ /w/mutable/unreal-engine-4/technical/#performance | Performance Tuning ]] documentation.
* ** Version ** The current plugin version number, and an indicator stating if the engine modifications required by the Mutable plugin have been correctly applied.
== Customizable Object Instance Editor
This is the editor used to view and modify CustomizableObjectInstances. It has only two panels that mimic the Preview panels in the Customizable Object Editor above.
{F102018, size=full}
= Reference Skeletal Mesh
All CustomizableObjects have a property called **Reference Skeletal Mesh**. This property is defined in the **Object Properties** panel of the root CustomizableObject asset. This is a standard Unreal Engine SkeletalMesh and it is used for several reasons:
* All the SkeletalMeshes generated for this CustomizableObject instances will use the Reference Skeletal Mesh properties for everything that Mutable doesn't create or modify. This includes data like LOD distances, Physics properties, Bounding Volumes, Skeleton, etc.
* While a CustomizableObject instance is being created for the first time, and in some situation with lots of objects this may require some seconds, the Reference Skeletal Mesh is used for the actor. This works as a better solution than the alternative of not showing anything, although this can be disabled with the function "SetReplaceDiscardedWithReferenceMeshEnabled" (See the c++ section).
For this reason, projects usually use a simple or generic SkeletalMesh as ReferenceSkeletalMesh. One good option is to replace the Reference Skeletal Mesh with a Baked Skeletal Mesh generated in the editor, with the desired //generic// appearence. This can be done with the **Bake** button in the editor preview panels. See [[ /w/mutable/unreal-engine-4/user-documentation/baking-instances/ | this section ]] for more information.
{F103386, size=full}
= Object Hierarchy
== Objects
Mutable organizes the data for each Customizable Object in a hierarchy of parts. Each object has a root object node that can define a base mesh and materials with some parameters. This object can have any number of child objects that can:
- add new mesh fragments (materials) to the final object
- extend the mesh used by a material already present in a parent object
- remove part of the mesh in the parent object
- patch the textures of a material in the parent object
- activate user-defined Tags that can be used in sibling objects to apply different effects.
At the same time, child objects can have their own child objects in an unlimited hierarchy.
== Groups
The children of an object can be organized in Groups. The Groups define the logic between the object and its parent in regard of how are the children activated. For instance, all t-shirt children can be grouped with an object parameter that only lets the users select one of them at a time or none.
Two Child Objects directly connected to the parent (they are not a selectable option in the Preview Instance Viewport):
{F102022, size=full}
Two Child Objects grouped. The Group type is 'toggle', so the child objects appear as toggleable options in the Viewport:
{F102024, size=full}
Two Child Objects grouped. The Group type is set as 'One'. Only one child object can be selected in the viewport:
{F102026, size=full}
Two Child Objects grouped. The Group type is 'One or none'. In the viewport, the child objects can be selected or not:
{F102028, size=full}
== Multiple Assets
A big CustomizableObject can be split into several assets. This is very important when multiple users work in the same data and also for version control. There are 2 features to assist with this:
- Child Objects can select as parent an Object Group in a different asset, instad of directly connecting them in a graph. See the [[ /w/mutable/unreal-engine-4/user-documentation/nodes/object-group/ | Object Group ]] and [[ /w/mutable/unreal-engine-4/user-documentation/nodes/child-object/| Child Object ]] node reference for details.
- There are special diagram nodes to [[ /w/mutable/unreal-engine-4/user-documentation/nodes/export-pin/ | export ]] and [[ /w/mutable/unreal-engine-4/user-documentation/nodes/import-pin/ | import ]] connections from the graph in other assets.
This is useful for editor data, but it has nothing to do with data streaming in packaged games. Data streaming for packaged games will happen regardless the CustomizableObject is split in multiple assets or not.
= Object Interactions
Mutable has several features to handle object interactions. The most basic one is the Object Groups, which create instance parameters that select only one child object from a set, so it is not possible to add more than one of them. An example of this is a group for character hats, that will let you select one har or none, but never two hats.
Additionally, Mutable has a system to create different variations of an object based on what other objects are added to an instance. For example, you may have a character with several hair styles, and optionally hats. You may want to create variations for some of the hairstyles to be used when a type of hat is also present in the character. You can use the Material Variations for this.
Another example of object interaction is the selective removal of mesh fragments. This can be seen in the section Remove unseen mesh parts.
These two types of object interactions use the Tag system. You can define your own Tags and they are enabled when an object is active in an instance. The Material Node is the place where you can add the tags which are just text labels. Then, there are several nodes that will act differently based on what tags are enabled in a particular instance, like the Material Variation Node, or the Clip Mesh With Mesh Node.
= Texture Layouts
{anchor #texture-layout-concept}
Mutable can merge material meshes from several objects into a single material. It can also remove mesh fragments from existing materials. When doing this, it can modify the texture UV layouts to optimize memory usage, and minimize rendering commands. This is achieved with the [[ /w/mutable/unreal-engine-4/user-documentation/nodes/mesh-layout/ | texture layout ]] concept, which creates texture blocks. These blocks can later be referenced in several other nodes.
(WARNING) Several usage examples of this can be found in the [[ /w/mutable/unreal-engine-4/user-documentation/texture-layouts/ | Texture Layout ]] page in the [[ /w/mutable/unreal-engine-4/user-documentation/ | User Documentation ]] section.