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

Create a customizable radar graph in Godot
Godot Radar Graph
- Godot Radar Graph is a script that allows you to easily draw Radar Graphs which are highly customizable and also supports animation. See the installation guide to get started.
Replica of the icon created using custom drawing, check out the code.
Installation
n/a
Setting Up A Graph
- Just search for
RadarGraph
while adding a node. - Setup the graph using is multitude of options.
Customize
Colors
[!IMPORTANT] Due to Godot's Theme limitations all styling will have to be set using the exported properties.
- The drawing can be highly customized, from using the
draw_order
array to overridding the existing_rg_graph_draw_
functions. Checkout the demos.
Fonts
[!NOTE] All fonts are different! Be sure to use reliable font's to ensure the script works correctly.
- Note that fonts also decide the bounding box for it's corrosponding tooltip
Customized using colors from the Godot Editor.
Animation
- All properties in the editor are keyable as well as Tween's. Although using
set(<property_name>)
is supported its still best to use theset_item_
methods.
Displaying randomizing the values using a Tween. Check out the code.
Create a customizable radar graph in Godot
Reviews
Quick Information

Create a customizable radar graph in Godot