xiandie/addons/project-statistics/loaders/extensions/JSONStatistics.gd
2024-12-23 09:30:31 +08:00

13 lines
239 B
GDScript

extends "../FileStatistics.gd"
const ICON: Texture = preload("../../icons/json.svg")
func _get_extension() -> String:
return "JSON"
func _get_color() -> Color:
return Color.GOLD
func _get_icon() -> String:
return ICON.resource_path