-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
31747ac
commit 651d474
Showing
1 changed file
with
38 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# 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 powerful particle combination can store a large number of particles with minimal file size and memory usage. | ||
|
||
Multithreading particle VBO filling can greatly improve your particle rendering speed. | ||
|
||
## Command | ||
|
||
load particle in file: | ||
|
||
```mcfunction | ||
par file load path_to_your_file | ||
``` | ||
|
||
run particle: | ||
|
||
```mcfunction | ||
par file run | ||
``` | ||
|
||
load particle in file and run it: | ||
|
||
```mcfunction | ||
par file loadAndRun path_to_your_file | ||
``` | ||
|
||
## How to create a particle file | ||
|
||
You can find the api in this package: `yancey.openparticle.api.common`. | ||
|
||
clone it to your java project, or implement the same logic in whatever language you like. | ||
|
||
Have fun!!! |