├── LICENSE ├── README.md ├── README_Assets ├── SpriteSheet_test.png └── gif_test.gif ├── index.js ├── layers ├── Background │ ├── 4Frames_Blue_Background#10.png │ ├── 4Frames_Green_Background#10.png │ └── Orange#10.png └── Ball │ ├── 4Frames_Green_Ball#10.png │ ├── 4Frames_Orange_Ball#10.png │ └── 4Frames_Red_Ball#10.png ├── package.json ├── script.js ├── src ├── blendMode.js ├── config.js └── main.js └── utils ├── rarity.js └── update.js /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaPipo/Generative_Gif_Engine/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaPipo/Generative_Gif_Engine/HEAD/README.md -------------------------------------------------------------------------------- /README_Assets/SpriteSheet_test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaPipo/Generative_Gif_Engine/HEAD/README_Assets/SpriteSheet_test.png -------------------------------------------------------------------------------- /README_Assets/gif_test.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaPipo/Generative_Gif_Engine/HEAD/README_Assets/gif_test.gif -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaPipo/Generative_Gif_Engine/HEAD/index.js -------------------------------------------------------------------------------- /layers/Background/4Frames_Blue_Background#10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaPipo/Generative_Gif_Engine/HEAD/layers/Background/4Frames_Blue_Background#10.png -------------------------------------------------------------------------------- /layers/Background/4Frames_Green_Background#10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaPipo/Generative_Gif_Engine/HEAD/layers/Background/4Frames_Green_Background#10.png -------------------------------------------------------------------------------- /layers/Background/Orange#10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaPipo/Generative_Gif_Engine/HEAD/layers/Background/Orange#10.png -------------------------------------------------------------------------------- /layers/Ball/4Frames_Green_Ball#10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaPipo/Generative_Gif_Engine/HEAD/layers/Ball/4Frames_Green_Ball#10.png -------------------------------------------------------------------------------- /layers/Ball/4Frames_Orange_Ball#10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaPipo/Generative_Gif_Engine/HEAD/layers/Ball/4Frames_Orange_Ball#10.png -------------------------------------------------------------------------------- /layers/Ball/4Frames_Red_Ball#10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaPipo/Generative_Gif_Engine/HEAD/layers/Ball/4Frames_Red_Ball#10.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaPipo/Generative_Gif_Engine/HEAD/package.json -------------------------------------------------------------------------------- /script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaPipo/Generative_Gif_Engine/HEAD/script.js -------------------------------------------------------------------------------- /src/blendMode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaPipo/Generative_Gif_Engine/HEAD/src/blendMode.js -------------------------------------------------------------------------------- /src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaPipo/Generative_Gif_Engine/HEAD/src/config.js -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaPipo/Generative_Gif_Engine/HEAD/src/main.js -------------------------------------------------------------------------------- /utils/rarity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaPipo/Generative_Gif_Engine/HEAD/utils/rarity.js -------------------------------------------------------------------------------- /utils/update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaPipo/Generative_Gif_Engine/HEAD/utils/update.js --------------------------------------------------------------------------------