mirror of
https://gitgud.io/AbstractConcept/rimworld-animation-studio.git
synced 2024-08-15 00:43:27 +00:00
Initial commit
This commit is contained in:
commit
3c7cc0c973
8391 changed files with 704313 additions and 0 deletions
|
@ -0,0 +1,17 @@
|
|||
namespace UnityEngine.U2D
|
||||
{
|
||||
/// <summary>
|
||||
/// (Deprecated) An add-on module for Cinemachine Virtual Camera that tweaks the orthographic size
|
||||
/// of the virtual camera. It detects the presence of the Pixel Perfect Camera component and use the
|
||||
/// settings from that Pixel Perfect Camera to correct the orthographic size so that pixel art
|
||||
/// sprites would appear pixel perfect when the virtual camera becomes live.
|
||||
/// </summary>
|
||||
[AddComponentMenu("")] // Hide in menu
|
||||
public class CinemachinePixelPerfect : MonoBehaviour
|
||||
{
|
||||
void OnEnable()
|
||||
{
|
||||
Debug.LogError("CinemachinePixelPerfect is now deprecated and doesn't function properly. Instead, use the one from Cinemachine v2.4.0 or newer.");
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue