forked from ToroCraft/ToroHUD
-
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
Showing
30 changed files
with
95 additions
and
247 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 |
---|---|---|
@@ -1,22 +1,12 @@ | ||
|
||
# ToroHealth Damage Indicators | ||
|
||
With ToroHealth Damage Indicators, damage given, received, or mitigated will be displayed as a number that pops off of the entity. | ||
|
||
Also, health bars will appear in the top left corner for the entity in the player's crosshairs. | ||
|
||
Customization options are available for changing the color of the damage numbers and the display style of the health bar (Compact or Standard). I will soon be adding options to re-position the health bars and may make some visual tweaks to them. | ||
|
||
### [Download from here](https://minecraft.curseforge.com/projects/torohealth-damage-indicators) | ||
|
||
![Screenshot](https://i.imgur.com/C9oBhZ5.png) | ||
# ToroHUD Damage Indicators | ||
|
||
|
||
## Development Environment Setup | ||
|
||
``` | ||
git clone [email protected]:ToroCraft/ToroHealth.git | ||
cd ToroHealth | ||
git clone [email protected]:ToroCraft/ToroHUD.git | ||
cd ToroHUD | ||
gradle setupDecompWorkspace | ||
``` | ||
|
||
|
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
This file was deleted.
Oops, something went wrong.
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
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
8 changes: 4 additions & 4 deletions
8
...orohealth/config/GuiConfigToroHealth.java → ...t/torohud/config/GuiConfigToroHealth.java
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 |
---|---|---|
@@ -1,19 +1,19 @@ | ||
package net.torocraft.torohealth.config; | ||
package net.torocraft.torohud.config; | ||
|
||
import net.minecraft.client.gui.GuiScreen; | ||
import net.minecraftforge.common.config.ConfigElement; | ||
import net.minecraftforge.common.config.Configuration; | ||
import net.minecraftforge.fml.client.config.GuiConfig; | ||
import net.torocraft.torohealth.ToroHealth; | ||
import net.torocraft.torohud.ToroHUD; | ||
|
||
public class GuiConfigToroHealth extends GuiConfig { | ||
|
||
public GuiConfigToroHealth(GuiScreen parent) { | ||
super(parent, new ConfigElement(ConfigurationHandler.config.getCategory(Configuration.CATEGORY_CLIENT)).getChildElements(), | ||
ToroHealth.MODID, | ||
ToroHUD.MODID, | ||
false, | ||
false, | ||
"ToroHealth"); | ||
"ToroHUD"); | ||
titleLine2 = ConfigurationHandler.config.getConfigFile().getAbsolutePath(); | ||
} | ||
} |
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
8 changes: 4 additions & 4 deletions
8
...ocraft/torohealth/display/BarDisplay.java → ...torocraft/torohud/display/BarDisplay.java
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
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
6 changes: 3 additions & 3 deletions
6
...aft/torohealth/display/HeartsDisplay.java → ...ocraft/torohud/display/HeartsDisplay.java
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
4 changes: 2 additions & 2 deletions
4
...torohealth/display/ToroHealthDisplay.java → ...t/torocraft/torohud/display/IDisplay.java
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
8 changes: 4 additions & 4 deletions
8
...ft/torohealth/display/NumericDisplay.java → ...craft/torohud/display/NumericDisplay.java
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
9 changes: 4 additions & 5 deletions
9
...aft/torohealth/display/PotionDisplay.java → ...ocraft/torohud/display/PotionDisplay.java
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
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
Oops, something went wrong.