Documents (English, 日本語)
Technical Documents (English, 日本語)
Air Sticker is a decal system that addresses the limitations of URP decals and has a low impact on performance.
Also, URP decals can only be used with Unity2021 or higher, while Air Sticker supports operation with Unity2020 or higher.
Air Sticker implements decal processing using the typical mesh generation method used in many games.
Mesh-generated decals implement decal expression by generating a mesh at runtime with a shape that matches the model to which the decal will be applied and then applying a texture to it.
On the other hand, the decal process implemented in Unity implements projected DBuffer decals and screen space decals.
Both mesh generation and projection decals have advantages/disadvantages.
The mesh generation and projection methods can also be used together to compensate for many disadvantages. (see section 2.1 and 2.2 for details).
The advantages/disadvantages of URP decals and Air Sticker are as follows.
- URP Decal
- Advantages
- Fast-applied decal.
- Z-fighting doesn't happen.
- Demerit
- Difficult to support full skin animation. ( Can be complemented with Air Sticker. )
- Pixel shaders are overloaded.( Can be complemented with Air Sticker. )
- Custom shaders cannot be used as is.( Can be complemented with Air Sticker. )
- Advantages
- Air Sticker
- Advantages
- Lightweight processing.( However, decal mesh generation is laggy )
- Full skin animation is possible.
- Custom shaders can be used without modification.
- Demerit
- The process of applying decals takes time. ( Can be complemented with URP decals. )
- Z-fighting happen.
- Advantages
Thus, the two decals can be used together to complement many of the disadvantages.
As we saw in the previous section, the two decal treatments can be used together to complement many disadvantages.
The following model case is presented here as a way of combining the two.
Method | Use Case |
---|---|
URP Decal | ・ Decal moves in the object space. ・ An alternative method until the mesh generation by Air Sticker is finished. |
Air Sticker | Decal don't moves in object space. |
The following movie demonstrates the implementation of this model case.
Combination of URP decal and Air Sticker
In this movie, URP decal is used when the decal moves on the receiver object and to buy time until mesh generation is complete.
Once the position on the receiver object is determined and mesh generation is finished, the decal by Air Sticker is displayed thereafter.
Once mesh generation is complete, Air Sticker can be used to greatly improve runtime performance(see Section 2.3 for details).
Air Sticker takes several frames to generate the mesh, but once generated, the drawing performance is no different than simple mesh drawing.
On the other hand, URP decals do not require mesh generation, but a complex drawing process is performed to display the decals.
Therefore, the mesh generation method is more advantageous in terms of frame-by-frame rendering performance.
The following figure shows the measured rendering performance of URP Decal and Air Sticker.
In all cases, Air Sticker was superior, with the most significant difference being a performance improvement of 19 ms.
Performance Measurement Results
To install the software, follow the steps below.
- Open the Package Manager from
Window > Package Manager
"+" button > Add package from git URL
- Enter the following
Or, open Packages/manifest.json
and add the following to the dependencies block.
{
"dependencies": {
"jp.co.cyberagent.air-sticker": "https://github.com/CyberAgentGameEntertainment/AirSticker.git?path=/Assets/AirSticker"
}
}
If you want to set the target version, write as follows.
Note that if you get a message like No 'git' executable was found. Please install Git on your system and restart Unity
, you will need to set up Git on your machine.
To update the version, rewrite the version as described above.
If you don't want to specify a version, you can also update the version by editing the hash of this library in the package-lock.json file.
{
"dependencies": {
"jp.co.cyberagent.air-sticker": {
"version": "https://github.com/CyberAgentGameEntertainment/AirSticker.git?path=/Assets/AirSticker",
"depth": 0,
"source": "git",
"dependencies": {},
"hash": "..."
}
}
}
The following two classes are important for using Air Sticker.
- AirStickerSystem
- AirStickerProjector
To use Air Sticker, you must have one game object attached to this component in your scene.
This component is used to project decals. Add this component to the game object that you want to use as a decal projector.
Five parameters can be set for the AirStickerProjector component.
Parameter name | Description |
---|---|
Width | Width of the Projector bounding box.This complies with URP's decal projector specifications. For more information, see Manual for URP Decals. |
Height | Height of the Projector bounding box.This complies with URP's decal projector specifications. For more information, see Manual for URP Decals. |
Depth | Depth of the Projector bounding box.This complies with URP's decal projector specifications. For more information, see Manual for URP Decals. |
Receiver Objects | The objects to which the decal texture will be applied. AirStickerProjector targets all renderers pasted to children of the configured receiver object (including itself). Therefore, the receiver object can be specified directly as an object to which a component such as MeshRenderer or SkinMeshRenderer is attached, or it can be an object that contains an object to which a renderer is attached as a child. The more renderers you process, the longer it will take to generate the decal mesh.Therefore, if the object to which the decal texture is to be applied can be restricted, it is more advantageous to specify that object directly as the receiver object. For example, if you want to put a sticker on a character's face in a character edit, you can save mesh generation time by specifying the object to which the face renderer is attached rather than specifying the character's root object. |
Decal Material | URP decals can only use materials with Shader Graphs/Decal shaders assigned, while Air Sticker can use regular materials. This means that built-in Lit shaders, Unlit shaders, and user-custom, proprietary shaders are also available. |
Z Offset In Decal Space | This is the Z offset in the surface space where the decal is applied. By adjusting this value, you can reduce Z-fighting. |
Projection Backside | If this checkbox is checked, the decal mesh is projected onto the mesh on the backside. |
Launch On Awake | If this checkbox is checked, the decal projection process is started at the same time the instance is created. |
On Finished Launch | You can specify a callback to be called at the end of the decal projection. |
The following video shows how to use AirStickerProjector in a scene.
How to use AirStickerProjector
An example of an in-game use of decals is the process of applying bullet holes to a background, such as in a FPS.
Such a process can be accomplished by determining the collision between the background and the bullet, generating a AirStickerProjector component based on the collision point information, and constructing a decal mesh.
AirStickerProjector components can be created by calling the AirStickerProjector.CreateAndLaunch() method.
If true is specified for the launchAwake argument of the CreateAndLaunch() method, the decal mesh construction process is started at the same time the component is created.
The decal mesh construction process takes several frames.Therefore, if you want to monitor the end of the decal mesh construction process, you must monitor the NowState property of AirStickerProjector or use the onFinishedLaunch callback, which is called when the mesh generation process is finished.
The following code is a pseudo code to paste bullet holes on the background using the AirStickerProjector.CreateAndLaunch() method. This code sets up a callback that monitors for termination using the arguments of the CreateAndLaunch() method.
// hitPosition Bullet and background collision point.
// hitNormal Normal of the collided surface.
// receiverObject Receiver object to which decal is applied.
// decalMaterial Material with decal texture set
void LaunchProjector(
Vector3 hitPosition, Vector3 hitNormal,
GameObject receiverObject, Material decalMaterial )
{
var projectorObject = new GameObject("Decal Projector");
// Install the projector at the position pushed back in the normal direction.
projectorObject.transform.position = hitPosition + hitNormal;
// Projector is oriented in the opposite direction of the normal.
projectorObject.transform.rotation = Quaternion.LookRotation( hitNormal * -1.0f );
AirStickerProjector.CreateAndLaunch(
projectorObj,
receiverObject,
decalMaterial,
/*width=*/0.05f,
/*height=*/0.05f,
/*depth=*/0.2f
/*launchOnAwake*/true,
/*onCompletedLaunch*/() => { Destroy(projectorObj); });
}
© Unity Technologies Japan/UC