All Projects → rakugoteam → Emojis-For-Godot

rakugoteam / Emojis-For-Godot

Licence: MIT license
Addon that allows to use Emojis in your Godot project

Programming Languages

GDScript
375 projects

Projects that are alternatives of or similar to Emojis-For-Godot

Godot-Material-Icons
Templarian's Material Design Icons for Godot
Stars: ✭ 19 (-26.92%)
Mutual labels:  addon, godot-engine, godot-addon
VisualNovelKit
Combo of addons + template to create narrative games in Godot inspired by Ren'Py
Stars: ✭ 78 (+200%)
Mutual labels:  addon, godot-engine, godot-addon
nativelib-cli
NativeLib is a plugin management system for Godot engine.
Stars: ✭ 19 (-26.92%)
Mutual labels:  addon, godot-engine, godot-addon
Godot Engine.github Integration
A Godot Engine addon to integrate a native GitHub client inside Godot's Editor. Manage your project without even opening your browser!
Stars: ✭ 134 (+415.38%)
Mutual labels:  addon, godot-engine
viewport-spy
Godot editor UI to spy on what a Viewport is rendering. Useful for debugging.
Stars: ✭ 28 (+7.69%)
Mutual labels:  godot-engine, godot-addon
godot-engine.code-snapshot
A plugin for Godot Engine which will let you take beautified snapshots of your code within the Editor. Configure the frame as you like, with GDScript syntax already highlighted.
Stars: ✭ 32 (+23.08%)
Mutual labels:  addon, godot-engine
Cartographer
A GPU powered Terrain editor and renderer for Godot Engine
Stars: ✭ 216 (+730.77%)
Mutual labels:  addon, godot-engine
godot-logger
Simple in-game logger for Godot 4.0
Stars: ✭ 14 (-46.15%)
Mutual labels:  godot-engine, godot-addon
Godot Engine.easy Charts
A Godot Engine addon for plotting general purpose charts. A collection of Control, 2D and 3D Nodes to plot every chart possible.
Stars: ✭ 146 (+461.54%)
Mutual labels:  addon, godot-engine
godot-rpgdb
An easy to use JSON database-manager for Godot.
Stars: ✭ 25 (-3.85%)
Mutual labels:  godot-engine, godot-addon
RTS-Camera2D
A RTS style Camera addon to Godot Engine
Stars: ✭ 25 (-3.85%)
Mutual labels:  godot-engine, godot-addon
Project-Map
No description or website provided.
Stars: ✭ 52 (+100%)
Mutual labels:  godot-engine, godot-addon
godot-interpolated-camera3d
Provides an InterpolatedCamera3D node that replicates its 3.2.x functionality (and more)
Stars: ✭ 40 (+53.85%)
Mutual labels:  godot-engine, godot-addon
PostgreSQLClient
PostgreSQL connector for Godot Engine in GDScript.
Stars: ✭ 28 (+7.69%)
Mutual labels:  godot-engine, godot-addon
Godot Engine.file Editor
A Godot Engine addon that adds a File Editor for multiple file types editing. Create and Write plain text files, configuration files and csv files with custom visualizers and previews. Also supports file translations!
Stars: ✭ 70 (+169.23%)
Mutual labels:  addon, godot-engine
godot-unirest
Unirest in GDScript: Simplified, lightweight HTTP client library.
Stars: ✭ 32 (+23.08%)
Mutual labels:  godot-engine, godot-addon
godot-engine.supabase
A lightweight addon which integrates Supabase APIs for Godot Engine out of the box.
Stars: ✭ 39 (+50%)
Mutual labels:  addon, godot-engine
GodotTerrainEditorPainter
Heightmap based terrain editor plugin for GODOT with vertex color based terrain shader painting
Stars: ✭ 23 (-11.54%)
Mutual labels:  godot-engine, godot-addon
github emoji
all emojis in github
Stars: ✭ 77 (+196.15%)
Mutual labels:  emoji
godot-uuid
Unique identifier generation v4 for Godot Engine
Stars: ✭ 96 (+269.23%)
Mutual labels:  godot-engine

github-top-lang lic emojis-lic

Emojis for Godot

Emoji mode use emojis-lic 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.

EmojiFinder Screen Shot

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:

RichTextLabel Example Screen Shot

Exporting

For emojis to work in exported projects, you need add *.json files to include files settings: include files settings

TexturePacker is used to generate the emoji atlases.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].