viniciusgerevini / godot-aseprite-wizard

Godot Editor plugin to help import Aseprite animations to AnimationPlayers, AnimatedSprites and SpriteFrames.
MIT License
825 stars 42 forks source link

Fix incorrect null check in config #74

Closed poohcom1 closed 1 year ago

poohcom1 commented 1 year ago

The _get_project_setting function in config.gd has a null check that checks if a value is truthy as opposed to non-null, which results in boolean configs such as _LOOP_ENABLED always being true.

viniciusgerevini commented 1 year ago

oh, nice catch! Thank you.