This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Frame Selector System - Randomly selects frames without repetition | |
* Ensures each frame is used exactly once before any frame is repeated | |
*/ | |
/** | |
* Creates a shuffled frame selector for the current sprite | |
* | |
* @return {struct} Frame selector object with methods | |
* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#macro THICKNESS 1 | |
/** | |
* Draws text with an outline effect by rendering the text multiple times | |
* with slight offsets before drawing the main text on top. | |
* | |
* @param {real} _x - X position to draw the text | |
* @param {real} _y - Y position to draw the text | |
* @param {string} _text - The text string to draw | |
* @param {color} _textColor - Color of the main text (default: white) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
FILES_PER_DIR=40 | |
DIR_COUNT=1 | |
FILE_COUNT=0 | |
SCRIPT_NAME=$(basename "$0") |