A Hologram shows a floating text at a specific Location using Armorstands. | constructor | | |--|--| |String|the text to display(can also be multiline string)| |location|the position(required)| |color|a Color| |tags|additional tags for the armorstands| |space|the space in between the lines(default = 0.25)| **Example:** ```dart Hologram(""" Hello, World! """, location: Location.here(), color:Color.Aqua, ) ⇒ summon armor_stand ~ ~0.25 ~ {"Marker":1,"Invisible":1,"CustomName":"{\"text\":\"Hello,\",\"color\":\"aqua\"}","Invulnerable":1,"CustomNameVisible":1,"NoGravity":1,"Tags":["objd_hologram"]} ⇒ summon armor_stand ~ ~ ~ {"Marker":1,"Invisible":1,"CustomName":"{\"text\":\"World!\",\"color\":\"aqua\"}","Invulnerable":1,"CustomNameVisible":1,"NoGravity":1,"Tags":["objd_hologram"]} ``` If you wish you can also assign each line a seperate TextComponent with `Hologram.multiple` | Hologram.multiple| | |--|--| |List of TextComponents|Component for each line| |...| same as Hologram|