feat!: optimize camera settings in overlay render mode

BREAKING CHANGE: the default value of `UIParticleProjectSettings.defaultViewSizeForBaking` has been changed from `10` to `1000`. In some cases, the appearance of certain effects may change.
This commit is contained in:
mob-sakai
2026-06-28 20:01:12 +09:00
parent 34453a0163
commit dc16e6458e
2 changed files with 2 additions and 1 deletions

View File

@@ -162,6 +162,7 @@ _This package requires **Unity 2019.3 or later**._
### Breaking Changes ### Breaking Changes
- The default value of `UIParticle.scale` has been changed from `10` to `1`. - The default value of `UIParticle.scale` has been changed from `10` to `1`.
- The default value of `UIParticleProjectSettings.defaultViewSizeForBaking` has been changed from `10` to `1000`.
- `UIParticle` no longer inherits from `MaskableGraphic`. - `UIParticle` no longer inherits from `MaskableGraphic`.
- If you are installing via git URL, add `?path=Packages/src`. - If you are installing via git URL, add `?path=Packages/src`.
```json ```json

View File

@@ -22,7 +22,7 @@ namespace Coffee.UIExtensions
[SerializeField] [SerializeField]
[Tooltip("Default view size for baking particle systems.")] [Tooltip("Default view size for baking particle systems.")]
private float m_DefaultViewSizeForBaking = 10; private float m_DefaultViewSizeForBaking = 1000;
public static float defaultViewSizeForBaking public static float defaultViewSizeForBaking
{ {