Deleting a Hologram

How to delete a hologram.

Overview and Example

This is a tutorial on how to delete a hologram using SkLib's hologram api. Below is an example of how to delete a hologram.

sklib_deleteHologram("test")

How to Delete a Hologram

You can delete a hologram as long as you have a valid id. You must have a created hologram to delete!

# All you need for deleting a hologram is an id.

# This is the order for the arguments.
# sklib_deleteHologram(id)

# Example
sklib_deleteHologram("test")

Last updated