Compare commits

...

2 Commits

Author SHA1 Message Date
semantic-release-bot
5a305705f8 chore(release): 4.13.3 [skip ci]
## [4.13.3](https://github.com/mob-sakai/ParticleEffectForUGUI/compare/v4.13.2...v4.13.3) (2026-07-04)

### Bug Fixes

* fix mesh copying ([da49a93](da49a931e3))
2026-07-04 05:55:31 +00:00
mob-sakai
950e45dbfa fix: fix mesh copying 2026-07-04 14:51:54 +09:00
3 changed files with 10 additions and 3 deletions

View File

@@ -1,3 +1,10 @@
## [4.13.3](https://github.com/mob-sakai/ParticleEffectForUGUI/compare/v4.13.2...v4.13.3) (2026-07-04)
### Bug Fixes
* fix mesh copying ([da49a93](https://github.com/mob-sakai/ParticleEffectForUGUI/commit/da49a931e3c43f8988e29700c44cbff802bef641))
## [4.13.2](https://github.com/mob-sakai/ParticleEffectForUGUI/compare/v4.13.1...v4.13.2) (2026-06-29) ## [4.13.2](https://github.com/mob-sakai/ParticleEffectForUGUI/compare/v4.13.1...v4.13.2) (2026-06-29)

View File

@@ -113,8 +113,8 @@ namespace Coffee.UIParticleInternal
self.GetColors(colors); self.GetColors(colors);
self.GetUVs(0, uv0); self.GetUVs(0, uv0);
self.GetUVs(1, uv1); self.GetUVs(1, uv1);
self.GetUVs(2, uv1); self.GetUVs(2, uv2);
self.GetUVs(3, uv1); self.GetUVs(3, uv3);
self.GetNormals(normals); self.GetNormals(normals);
self.GetTangents(tangents); self.GetTangents(tangents);
self.GetIndices(indices, 0); self.GetIndices(indices, 0);

View File

@@ -2,7 +2,7 @@
"name": "com.coffee.ui-particle", "name": "com.coffee.ui-particle",
"displayName": "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.", "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": "4.13.2", "version": "4.13.3",
"unity": "2018.2", "unity": "2018.2",
"license": "MIT", "license": "MIT",
"repository": { "repository": {