Install Asset
Install via Godot
To maintain one source of truth, Godot Asset Library is just a mirror of the old asset library so you can download directly on Godot via the integrated asset library browser

Quick Information

Prints screen debug messages, with color, duration and tag.Tags prevents repetitions. Or you can just clear a message with a tag.Visit github for more info. Click View Files.
screen_print
A Godot Addon for Screen Debug Messages like Unreal Engine. Messages can have colors, durations and tags. Tags prevents repetitions. And you can clear messages with tags clear("tag") or you can call clear_all()
Functions->
Prints message to screen
func print(message: String, color: Color = Color.CYAN, time: float = 3.0, tag: String = "")
Cleans a certain message
func clear(tag: String):
Clear all the messages
func clear_all():
You can change the settings from this file:
Prints screen debug messages, with color, duration and tag.
Tags prevents repetitions. Or you can just clear a message with a tag.
Visit github for more info. Click View Files.
Reviews
Quick Information

Prints screen debug messages, with color, duration and tag.Tags prevents repetitions. Or you can just clear a message with a tag.Visit github for more info. Click View Files.