TIC-80 is a fantasy computer for making, playing and sharing tiny games.
https://github.com/nesbox/TIC-80
374 forks.
3,938 stars.
213 open issues.
Recent commits:
- Merge pull request #2149 from Madadog/clamp-anim-ticks-1Clamp input to animEffect(), GitHub
- Clamp input to animEffect()Fixes https://github.com/nesbox/TIC-80/issues/1913.animEffect() seems to expect a value between 0 and 1, and #1913 is caused by the surf coverFade animation lerping past 1, which feeds values greater than 256 into fadePalette(), causing the flashing colors. This PR clamps movie ticks for each item ensuring animEffect won't receive values > 1.This could create issues if any animation items rely on playing past their end. I didn't notice any while visually checking the editor and surf menu animations, but I could easily have missed something.It might be better to move this clamp directly to the start of animEffect().Alternative fixes for #1913 include clamping the fadePalette() value between 0 and 256, or stopping the animation at the right time., GitHub
- Merge pull request #2145 from sthilaid/better-scheme-errorsBetter scheme errors, GitHub
- Better scheme errors. Added error type and a callstack to the error message which greatly helps finding the error., David St-Hilaire
- linux gpu build fix, nesbox