ToroCraft / ToroHealth

GNU General Public License v3.0
64 stars 48 forks source link

How to keep particles and damage hits number but hide the top-left HUD ? #145

Closed HeartX94 closed 7 months ago

HeartX94 commented 2 years ago

All in the title: How to keep particles and damage hits number but hide the top-left HUD ?

I would really want to only keep particles and the number of damage on hits,

Thank you so much,

Lunar

Andyghandi commented 2 years ago

In the Config, You can disable the HUD elements as following.

"showEntity": false,
"showBar": false,
"showSkin": false

And then set inWorld mode to ALWAYS. (This is the feature where every mob has a bar above them) If you don't wanna have the bar and only the damage particles and numbers, just set the distance to 0.0:

"inWorld": { "mode": "ALWAYS", "distance": 0.0, "onlyWhenLookingAt": false, "onlyWhenHurt": false

That made the trick for me.