Question
I am trying to find where in the Godot Repo the default ‘icon.svg’ is.
I tried to look from the project creation code, getting Here, which references get_default_project_icon(), which I found Here, which pulls a value from a ‘editor_icons_sources’ array.
I can’t seem to find where that is, and therefor where the default ‘icon.svg’ is located, how can I find where this array is and its contents to find the file?
I tried Ctrl+F to search in the page but can’t got no results, and it doesn’t seem to be from an outside class / scope since there is no dot-notation, but I am not familiar with C++ so I may be missing something.
Thanks.