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
Hello I tried your script and it is animating really great however I have results not applied correctly.
First and last reel seems to be ignoring the expected the result array when I play with the values and debug stuff arround.
Edit fixed it by changing:
var current_idx = total_runs - reel_runs
To:
var current_idx = total_runs - reel_runs if (state == State.OFF || reel_runs == total_runs): current_idx = int(tile.position.y / tile_size.y)
I can confirm it is now displaying the expected result at the end of the animation.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello I tried your script and it is animating really great however I have results not applied correctly.
First and last reel seems to be ignoring the expected the result array when I play with the values and debug stuff arround.
Edit fixed it by changing:
To:
I can confirm it is now displaying the expected result at the end of the animation.
The text was updated successfully, but these errors were encountered: