We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
anima/addons/anima/utils/animations.gd
Line 22 in b61ee6f
The first if statement is always true: file.find('.gd.') < 0
file.find('.gd.') < 0
The second if statement is also match for both .gd file and .gdc file ,which makes it's quite confusion
and I guess its not working for gde file, I use a low version of anima , and it report cant find any animation
in replacement:
for file in list: if file.ends_with('.gdc'): filtered.push_back(file.replace('.gdc', '.gd')) elif file.ends_with('.gde'): filtered.push_back(file.replace('.gde', '.gd')) elif file.ends_with('.gd'): filtered.push_back(file) _animations_list = filtered
BTW, Anima is a great plugin ! Thanks a lot !
The text was updated successfully, but these errors were encountered:
No branches or pull requests
anima/addons/anima/utils/animations.gd
Line 22 in b61ee6f
The first if statement is always true:
file.find('.gd.') < 0
The second if statement is also match for both .gd file and .gdc file ,which makes it's quite confusion
and I guess its not working for gde file, I use a low version of anima , and it report cant find any animation
in replacement:
BTW, Anima is a great plugin ! Thanks a lot !
The text was updated successfully, but these errors were encountered: