Compare commits

..

2 Commits

Author SHA1 Message Date
semantic-release-bot
b58498c10f chore(release): 5.0.0-preview.19 [skip ci]
# [5.0.0-preview.19](https://github.com/mob-sakai/ParticleEffectForUGUI/compare/5.0.0-preview.18...5.0.0-preview.19) (2026-06-28)

* feat!: optimize camera settings in overlay render mode ([dc16e64](dc16e6458e))

### BREAKING CHANGES

* the default value of `UIParticleProjectSettings.defaultViewSizeForBaking` has been changed from `10` to `1000`. In some cases, the appearance of certain effects may change.
2026-06-28 11:02:29 +00:00
mob-sakai
dc16e6458e 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.
2026-06-28 20:01:12 +09:00
4 changed files with 13 additions and 2 deletions

View File

@@ -1,3 +1,13 @@
# [5.0.0-preview.19](https://github.com/mob-sakai/ParticleEffectForUGUI/compare/5.0.0-preview.18...5.0.0-preview.19) (2026-06-28)
* feat!: optimize camera settings in overlay render mode ([dc16e64](https://github.com/mob-sakai/ParticleEffectForUGUI/commit/dc16e6458e855c451ab73e9c4cd418ef65f8b350))
### BREAKING CHANGES
* the default value of `UIParticleProjectSettings.defaultViewSizeForBaking` has been changed from `10` to `1000`. In some cases, the appearance of certain effects may change.
# [5.0.0-preview.18](https://github.com/mob-sakai/ParticleEffectForUGUI/compare/5.0.0-preview.17...5.0.0-preview.18) (2026-06-26)

View File

@@ -162,6 +162,7 @@ _This package requires **Unity 2019.3 or later**._
### Breaking Changes
- 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`.
- If you are installing via git URL, add `?path=Packages/src`.
```json

View File

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

View File

@@ -2,7 +2,7 @@
"name": "com.coffee.ui-particle",
"displayName": "UI Particle",
"description": "This package provides a component to render particle effects for uGUI.\nThe particle rendering is maskable and sortable, without the need for an extra Camera, RenderTexture, or Canvas.",
"version": "5.0.0-preview.18",
"version": "5.0.0-preview.19",
"unity": "2019.3",
"license": "MIT",
"repository": {