Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yancey2023/openparticle
A fabric mod to summon particle with amazing optimization
https://github.com/yancey2023/openparticle
fabric minecraft minecraft-fabric-mod particle
Last synced: about 1 month ago
JSON representation
A fabric mod to summon particle with amazing optimization
- Host: GitHub
- URL: https://github.com/yancey2023/openparticle
- Owner: Yancey2023
- License: other
- Created: 2024-02-09T10:06:20.000Z (9 months ago)
- Default Branch: master
- Last Pushed: 2024-09-29T06:34:21.000Z (about 2 months ago)
- Last Synced: 2024-10-14T06:21:52.594Z (about 1 month ago)
- Topics: fabric, minecraft, minecraft-fabric-mod, particle
- Language: C++
- Homepage:
- Size: 1.65 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# OpenParticle
A minecraft fabric mod to summon particle in minecraft.
The particle files loaded by this mod are stored in binary format, which can greatly accelerate the export and import
speed of particle files.The particle kernel is made by C++ and has ultimate performance.
## Command
load particle file:
```mcfunction
par load
```run particle:
```mcfunction
par run [isSingleThread]
```load particle file and run it:
```mcfunction
par loadAndRun
```## params
`path` - path to your particle file
`isSingleThread` - if it prepares VBO data in single thread when rendering
## examples
```mcfunction
par load D:\PyCharm\project\OpenParticleAPI-py\output\1.par
par run
par run true
par run false
par loadAndRun false D:\PyCharm\project\OpenParticleAPI-py\output\1.par
par loadAndRun true D:\PyCharm\project\OpenParticleAPI-py\output\1.par
```## How to create a particle file
[OpenParticle Java API](https://github.com/Yancey2023/OpenParticleAPI)
[OpenParticle Python API](https://github.com/Yancey2023/OpenParticleAPI-py)
## Keys
You can press `v` to run particle file. Of course, you can bind to other keys.