xiandie/addons/project-statistics/loaders/extensions/YAMLStatistics.gd

16 lines
334 B
GDScript3
Raw Normal View History

2024-12-23 01:30:31 +00:00
extends "../FileStatistics.gd"
const ICON: Texture = preload("../../icons/yaml.svg")
func _get_extension() -> String:
return "YAMl"
func _get_color() -> Color:
return Color.MEDIUM_PURPLE
func _get_icon() -> String:
return ICON.resource_path
func _is_comment(line: String) -> bool:
return line.strip_edges().begins_with("#")