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
Use Godot Font Icons instead!This addon provides the following nodes to use emojis in Godot:- **EmojiIcon**: A node that displays an Emoji.- **EmojiButton**: A node that displays an Emoji as a button.Rewritten to give you access to **EmojisDB** singleton for easier use of emojis anywhere in your project.It's also adds **IconsFinder** to the Godot's **Tools** menu.So you can find the emojis easily.
Emojis for Godot
Emoji mode use Twemoji.
This addon provides the following nodes to use emojis in Godot:
- EmojiIcon: A node that displays an Emoji.
- EmojiButton: A node that displays an Emoji as a button.
It's also adds EmojiFinder to the Godot editor's toolbar. So you can find the emojis easily.
Install using gd-plug
To install it with gd-plug add in your plug.gd
script:
extends "res://addons/gd-plug/plug.gd"
func _plugging():
# your other plugins/addons install instructions
# ...
plug("rakugoteam/Emojis-For-Godot", {"include": ["addons", ".import/"]})
Using it with RichTextLabel
From version 1.3 you can use emojis in RichTextLabel.
This is the example code of using emojis in RichTextLabel:
extends RichTextLabel
var emojis = Emojis.new()
export var text_with_emojis := "some emoji :sunglasses:"
func _ready():
bbcode_enabled = true
bbcode_text = emojis.parse_emojis(text_with_emojis)
This is the result of the above code:
Exporting
For emojis to work in exported projects, you need add *.json
files to include files settings:
TexturePacker is used to generate the emoji atlases.
Use Godot Font Icons instead!
This addon provides the following nodes to use emojis in Godot:
- **EmojiIcon**: A node that displays an Emoji.
- **EmojiButton**: A node that displays an Emoji as a button.
Rewritten to give you access to **EmojisDB** singleton for easier use of emojis anywhere in your project.
It's also adds **IconsFinder** to the Godot's **Tools** menu.
So you can find the emojis easily.
Reviews
Quick Information
Use Godot Font Icons instead!This addon provides the following nodes to use emojis in Godot:- **EmojiIcon**: A node that displays an Emoji.- **EmojiButton**: A node that displays an Emoji as a button.Rewritten to give you access to **EmojisDB** singleton for easier use of emojis anywhere in your project.It's also adds **IconsFinder** to the Godot's **Tools** menu.So you can find the emojis easily.