Palette fade: Difference between revisions

No change in size ,  5 months ago
no edit summary
No edit summary
No edit summary
Line 15:
Before each iteration, there is a delay. The delay starts at 64 frames, and this value is decremented between each iteration. The delay will never go below 1 frame.
 
To update a color, compare each of the red, green, and blue components of the current color and the target color. If the current value is less than the target value, increment it, if it is greater, decrement it, and if the values are the same, do not alter it. This process means that the number of iterations required to complete the fade depends on the largest difference between starting and target color components. See [[#Timing dataData|timing data]] for details.
 
== Additional data format ==