Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/Patbox/HologramAPI
Simple API for creation of server side holograms without entities
https://github.com/Patbox/HologramAPI
Last synced: 11 days ago
JSON representation
Simple API for creation of server side holograms without entities
- Host: GitHub
- URL: https://github.com/Patbox/HologramAPI
- Owner: Patbox
- License: lgpl-3.0
- Archived: true
- Created: 2021-05-20T15:31:37.000Z (over 3 years ago)
- Default Branch: 1.20
- Last Pushed: 2023-09-20T18:47:00.000Z (about 1 year ago)
- Last Synced: 2024-08-02T03:07:04.360Z (3 months ago)
- Language: Java
- Homepage:
- Size: 147 KB
- Stars: 6
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
- awesome-fabric-server-mods - \[GitHub\
README
# This library is deprecated!
With next release, it likely won't get an update. You should switch to Polymer Virtual Entity API instead,
as it allows for better and more powerful client side entities, while also being compatible with more mods (for example Immersive Portals).## Links:
* Github: https://github.com/Patbox/polymer
* Docs: https://polymer.pb4.eu/0.5.x/polymer-virtual-entity/getting-started/# Hologram API
It's a small, jij-able library for creating server side holograms
showing text, items or even entities. They can be fully interactive with
different actions depending on where players click.## Usage:
Add it to your dependencies like this:```
repositories {
maven { url 'https://maven.nucleoid.xyz' }
}dependencies {
modImplementation include("eu.pb4:hologram-api:[TAG]")
}
```Next you just need to create instance of hologram (WorldHologram/EntityHologram),
set every element and call `hologram.show()`. For example code see [Test Mod](https://github.com/Patbox/HologramAPI/blob/master/src/testmod/java/eu/pb4/holograms/TestMod.java)