Skip to content

Commit 6e0313d

Browse files
committed
minor fix
1 parent 16c35cd commit 6e0313d

2 files changed

Lines changed: 24 additions & 4 deletions

File tree

docs/portfolio.md

Lines changed: 18 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,18 +13,32 @@ slug: /portfolio
1313

1414
This page contains two core classes from my proudest Minecraft mod, ***[MadParticle](https://modrinth.com/mod/mad-particle)*** : `NeoInstancedRenderManager` and `MultiThreadedEqualObjectLinkedOpenHashSetQueue`.
1515

16-
MadParticle was originally designed as a decorative particle mod for Minecraft, allowing players to create visually rich in-game scenes through a large number of configurable parameters. Unlike particle systems in Unreal or Unity, Minecraft’s particles are relatively heavier, which function more like client-side actors/entities than VFX effects.
16+
*MadParticle* was originally designed as a decorative particle mod for Minecraft, allowing players to create visually rich in-game scenes through a large number of configurable parameters. Unlike particle systems in Unreal or Unity, Minecraft’s particles are relatively heavier, which function more like client-side actors/entities than VFX effects.
1717

18-
### In-game demo
18+
:::info
19+
20+
Additionally, there are several demonstration videos of *MadParticle* available:
21+
22+
- Initial announcation video on [***Youtube***](https://www.youtube.com/watch?v=M-PhAlBLZAU)
23+
- 0.5 version update on [***Youtube***](https://www.youtube.com/watch?v=pzR447A-hjg)
24+
- 0.5 performance comparison on [***Bilibili***](https://www.bilibili.com/video/BV1k64y1w76j) (not translated yet)
25+
- 0.8 version update on [***Bilibili***](https://www.bilibili.com/video/BV1btqVYQEZf) (not translated yet)
26+
- Third anniversary/1.0 version update on [***Bilibili***](https://www.bilibili.com/video/BV1sbe6zsEMK) (not translated yet)
27+
28+
And there is a list of my other projects on the [Home page](/).
29+
30+
:::
31+
32+
### In-game screenshot
1933

20-
<img src={require('./assets/portfolio_0.png').default} alt="MadParticle in game demo"/>
34+
<img src={require('./assets/portfolio_0.png').default} alt="MadParticle in-game screenshot"/>
2135

2236
> This image shows the in-game command editing interface of MadParticle, which renders an Arabic numeral “3” to celebrate the third anniversary of the mod.
2337
On the right side, you can see that a single command has more than 30 adjustable parameters.
2438

2539
### Performance comparison
2640

27-
Later, in response to player feedback, I began optimizing the vanilla particle system. The current version of MadParticle now achieves a 10–20x performance improvement over the vanilla Minecraft implementation.
41+
Later, in response to player and other developers' feedback, I began optimizing the vanilla particle system. The current version of MadParticle now achieves a 10–20x performance improvement over the vanilla Minecraft implementation.
2842

2943
<img src={require('./assets/portfolio_1.png').default} alt="MadParticle performance comparison"/>
3044

docusaurus.config.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,12 @@ const config = {
8282
position: 'left',
8383
label: 'Mod使用指南',
8484
},
85+
{
86+
type: 'doc',
87+
docId: 'portfolio',
88+
position: 'left',
89+
label: 'Portfolio',
90+
},
8591
/*{
8692
type: 'doc',
8793
docId: 'r6ms/home',

0 commit comments

Comments
 (0)