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

18 lines
348 B
GDScript3
Raw Normal View History

2024-12-23 01:30:31 +00:00
extends "../FileStatistics.gd"
func _is_comment(line: String) -> bool:
# TODO: Detect multi-line comments
return line.strip_edges().begins_with("#")
func _get_extension() -> String:
return "GDScript"
func _get_icon() -> String:
return "GDScript"
func _get_color() -> Color:
return Color.STEEL_BLUE
func _is_script() -> bool:
return true