feat: enable "shrink by material" option as default

pull/197/head
mob-sakai 2021-09-21 16:45:59 +09:00
parent 19f732a564
commit 6948c98f15
1 changed files with 2 additions and 2 deletions

View File

@ -32,8 +32,8 @@ namespace Coffee.UIExtensions
[Tooltip("Particles")] [SerializeField]
private List<ParticleSystem> m_Particles = new List<ParticleSystem>();
[Tooltip("Shrink rendering by material on refresh.\nNOTE: Performance will be improved, but in some cases the rendering is not correct.")] [SerializeField]
bool m_ShrinkByMaterial = false;
[Tooltip("Shrink rendering by material on refresh.\nNOTE: This option will improve canvas batching and performance, but in some cases the rendering is not correct.")] [SerializeField]
private bool m_ShrinkByMaterial = true;
#if !SERIALIZE_FIELD_MASKABLE
[SerializeField] private bool m_Maskable = true;