We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
__scribble_font_add_all_from_project
var
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Scribble/scripts/__scribble_font_add_all_from_project/__scribble_font_add_all_from_project.gml
Lines 10 to 16 in 7e0baea
var _font seems to be used only for if font_exists, later _fontArray[_i] is used again, so maybe there's no need to use var _font at all?
var _font
if font_exists
_fontArray[_i]
I mean replacing:
var _font = _fontArray[_i]; if (not font_exists(_font)) continue;
with
if (not font_exists(_fontArray[_i])) continue;
The text was updated successfully, but these errors were encountered:
Later uses of _fontArray[_i] should be replaced with _font.
_font
Sorry, something went wrong.
No branches or pull requests
Scribble/scripts/__scribble_font_add_all_from_project/__scribble_font_add_all_from_project.gml
Lines 10 to 16 in 7e0baea
var _font
seems to be used only forif font_exists
, later_fontArray[_i]
is used again, so maybe there's no need to usevar _font
at all?I mean replacing:
with
The text was updated successfully, but these errors were encountered: