Render particle effect in UnityUI(uGUI). Maskable, sortable, and no extra Camera/RenderTexture/Canvas.
 
 
Go to file
mob-sakai 67c7e816a7 fix: when using mesh sharing, the `Transform.scale` of the primary UIParticle affects the replicas.
close #333

NOTE: This fix may cause changes in the rendering of existing UIParticles.
2024-09-26 18:15:42 +09:00
.github/workflows fix: fix release workflow 2024-05-23 20:03:17 +09:00
Assets update demo 2024-07-18 14:56:49 +09:00
Packages fix: when using mesh sharing, the `Transform.scale` of the primary UIParticle affects the replicas. 2024-09-26 18:15:42 +09:00
ProjectSettings demos: webgl setting 2024-07-18 12:53:36 +09:00
.editorconfig refactor 2024-06-27 14:12:53 +09:00
.gitignore fix demo 2024-06-19 13:23:40 +09:00
README.md docs: fix readme 2023-11-21 11:55:34 +09:00

README.md

🛠 Package Development

NOTE: This branch is for development purposes only.

Develop the Package with the develop Branch

  1. Fork the repository.

  2. Clone the repository.

  3. Checkout develop branch.

  4. Develop the package.

  5. Test the package with the test runner (Window > Generals > Test Runner).

  6. Commit with a message based on Angular Commit Message Conventions as follows:

    • fix: fix a bug
    • feat: new feature
    • docs: changes only in documentation
    • style: changes only in formatting, white-space, etc
    • refactor: changes only in code structure (extract method, rename variable, move method, etc)
    • perf: changes only in code performance
    • test: add or update tests
    • chore: changes to the build process or auxiliary tools and libraries such as documentation generation
  7. Create a pull request on GitHub. Fill out the description, link any related issues and submit your pull request.

For details, refer to CONTRIBUTING and CODE_OF_CONDUCT.

How to Release This Package

When you push to the preview, release, or v4.x branch, this package is automatically released by GitHub Action.

Semantic Release is used for automatic release.

  • Update the version in package.json.
  • Update CHANGELOG.md.
  • Commit documents and push.
  • Update and tag the UPM branch.
  • Release on GitHub.
  • Publish npm registry

Alternatively, you can release it manually with the following command:

$ cd Packages/src
$ npm run release -- --no-ci