Skip to content

Instantly share code, notes, and snippets.

View Mithradates528's full-sized avatar

Mithradates528

View GitHub Profile
@Mithradates528
Mithradates528 / AnimatedPieChart.gd
Created September 30, 2025 20:21
Pie Chart - Godot 3.5
extends Node2D
# Data for the pie chart
export var data := [
{"Name":"Trade", "value": 8.0, "color": Color.burlywood},
{"Name":"Pupets", "value": 16.0, "color": Color.deeppink},
{"Name":"Production", "value": 26.0, "color": Color.greenyellow},
{"Name":"Taxes", "value": 35.0, "color": Color.aqua},
{"Name":"Occupation", "value": 50.0, "color": Color.cornflower}
]