├── Braffolk Image Loader.gmx ├── Braffolk Image Loader.project.gmx ├── Configs │ ├── Default.config.gmx │ └── Default │ │ ├── WinPhone │ │ ├── ApplicationIcon.png │ │ ├── CycleSmall.png │ │ ├── CycleWide1.png │ │ ├── CycleWide2.png │ │ ├── CycleWide3.png │ │ ├── CycleWide4.png │ │ ├── CycleWide5.png │ │ ├── CycleWide6.png │ │ ├── CycleWide7.png │ │ ├── CycleWide8.png │ │ ├── CycleWide9.png │ │ ├── FlipMedBack.png │ │ ├── FlipMedFront.png │ │ ├── FlipSmallFront.png │ │ ├── FlipWideBack.png │ │ ├── FlipWideFront.png │ │ ├── IconicSmall.png │ │ ├── IconicWide.png │ │ ├── SplashScreenImage.jpg │ │ ├── SplashScreenImage480.jpg │ │ └── SplashScreenImage720.jpg │ │ ├── Windows8 │ │ ├── logos │ │ │ ├── logo150.png │ │ │ ├── logo30.png │ │ │ ├── logo310.png │ │ │ └── logo50.png │ │ └── splashscreen.png │ │ ├── android │ │ ├── icons │ │ │ ├── icon_hdpi.png │ │ │ ├── icon_ldpi.png │ │ │ ├── icon_mdpi.png │ │ │ ├── icon_xhdpi.png │ │ │ ├── icon_xxhdpi.png │ │ │ ├── icon_xxxhdpi.png │ │ │ └── ouyaIcon.png │ │ ├── portrait_splash.png │ │ └── splash.png │ │ ├── html5 │ │ ├── fav.ico │ │ └── splash.png │ │ ├── ios │ │ ├── IphoneRetinasplash.png │ │ ├── IphoneRetinasplashPortrait.png │ │ ├── iPadRetinasplash.png │ │ ├── iPadRetinasplashPortrait.png │ │ ├── iPadsplash.png │ │ ├── iPadsplashPortrait.png │ │ ├── iPhone5splash.png │ │ ├── iPhone5splashPortrait.png │ │ ├── iPhone6Plussplash.png │ │ ├── iPhone6PlussplashPortrait.png │ │ ├── iPhone6splash.png │ │ ├── iPhone6splashPortrait.png │ │ ├── iPhonesplash.png │ │ ├── iPhonesplashPortrait.png │ │ ├── icons │ │ │ ├── icon114.png │ │ │ ├── icon120.png │ │ │ ├── icon144.png │ │ │ ├── icon152.png │ │ │ ├── icon167.png │ │ │ ├── icon57.png │ │ │ ├── icon72.png │ │ │ └── icon76.png │ │ └── splash.png │ │ ├── linux │ │ ├── icon64.png │ │ └── splash.png │ │ ├── mac │ │ ├── icon512.png │ │ └── splash.png │ │ ├── tizen │ │ ├── icon117.png │ │ └── splash.png │ │ └── windows │ │ ├── License.txt │ │ ├── RunnerInstaller.nsi │ │ ├── Runner_finish.bmp │ │ ├── Runner_header.bmp │ │ ├── runner_icon.ico │ │ └── splash.png ├── help.rtf └── scripts │ ├── draw_image.gml │ ├── draw_image_ext.gml │ ├── draw_image_general.gml │ ├── draw_image_part.gml │ ├── draw_image_part_ext.gml │ ├── draw_image_pos.gml │ ├── draw_image_pos_ext.gml │ ├── draw_image_pos_general.gml │ ├── draw_image_stretched.gml │ ├── draw_image_stretched_ext.gml │ ├── draw_image_tiled.gml │ ├── draw_image_tiled_area.gml │ ├── draw_image_tiled_area_ext.gml │ ├── draw_image_tiled_ext.gml │ ├── image_cache_create.gml │ ├── image_cache_delete.gml │ ├── image_cache_load.gml │ ├── image_cache_save.gml │ ├── image_cache_unpack.gml │ ├── image_exists.gml │ ├── image_get_filename.gml │ ├── image_get_height.gml │ ├── image_get_identifier.gml │ ├── image_get_number.gml │ ├── image_get_texture.gml │ ├── image_get_texturepage.gml │ ├── image_get_uvs.gml │ ├── image_get_width.gml │ ├── image_get_xoffset.gml │ ├── image_get_yoffset.gml │ ├── image_group_clear.gml │ ├── image_group_create.gml │ ├── image_group_destroy.gml │ ├── image_group_exists.gml │ ├── image_group_find_image.gml │ ├── image_save.gml │ ├── image_save_strip.gml │ ├── image_set_offset.gml │ ├── image_stream_add.gml │ ├── image_stream_add_3d.gml │ ├── image_stream_finish.gml │ ├── image_stream_finish_clamp.gml │ ├── image_stream_is_active.gml │ ├── image_stream_is_received.gml │ ├── image_stream_progress.gml │ ├── image_stream_receive.gml │ ├── image_stream_start.gml │ ├── image_system_cleanup.gml │ └── image_system_init.gml ├── LICENSE ├── README.md ├── image_framework_V2_9.gmx ├── Configs │ ├── Default.config.gmx │ └── Default │ │ ├── Android │ │ ├── icons │ │ │ ├── icon_hdpi.png │ │ │ ├── icon_ldpi.png │ │ │ ├── icon_mdpi.png │ │ │ ├── icon_xhdpi.png │ │ │ ├── icon_xxhdpi.png │ │ │ ├── icon_xxxhdpi.png │ │ │ └── ouyaIcon.png │ │ ├── portrait_splash.png │ │ └── splash.png │ │ ├── HTML5 │ │ ├── fav.ico │ │ └── splash.png │ │ ├── Linux │ │ ├── icon64.png │ │ └── splash.png │ │ ├── Mac │ │ ├── icon512.png │ │ └── splash.png │ │ ├── Windows8 │ │ ├── Win8NativeRunner_TemporaryKey.pfx │ │ ├── Windows8_TemporaryKey.pfx │ │ ├── logos │ │ │ ├── logo150.png │ │ │ ├── logo30.png │ │ │ ├── logo310.png │ │ │ └── logo50.png │ │ └── splashscreen.png │ │ ├── WindowsUAP │ │ ├── SplashScreen.scale-100.png │ │ ├── WinUWPRunner_TemporaryKey.pfx │ │ └── logos │ │ │ ├── LargeLogo.scale-100.png │ │ │ ├── Logo.scale-100.png │ │ │ ├── SmallLogo.scale-100.png │ │ │ ├── SmallishLogo.scale-100.png │ │ │ ├── StoreLogo.scale-100.png │ │ │ └── WideLogo.scale-100.png │ │ ├── iOS │ │ ├── iPadRetinaSplash.png │ │ ├── iPadRetinaSplashPortrait.png │ │ ├── iPadsplash.png │ │ ├── iPadsplashPortrait.png │ │ ├── iPhone5splash.png │ │ ├── iPhone5splashPortrait.png │ │ ├── iPhone6PlusSplash.png │ │ ├── iPhone6PlusSplashPortrait.png │ │ ├── iPhone6Splash.png │ │ ├── iPhone6SplashPortrait.png │ │ ├── iPhone7PlusSplash.png │ │ ├── iPhone7PlusSplashPortrait.png │ │ ├── iPhone7Splash.png │ │ ├── iPhone7SplashPortrait.png │ │ ├── iPhone8PlusSplash.png │ │ ├── iPhone8PlusSplashPortrait.png │ │ ├── iPhone8Splash.png │ │ ├── iPhone8SplashPortrait.png │ │ ├── iPhoneRetinasplash.png │ │ ├── iPhoneRetinasplashPortrait.png │ │ ├── iPhoneSEsplash.png │ │ ├── iPhoneSEsplashPortrait.png │ │ ├── iPhoneXSplash.png │ │ ├── iPhoneXSplashPortrait.png │ │ ├── iPhonesplash.png │ │ ├── iPhonesplashPortrait.png │ │ ├── icons │ │ │ ├── app │ │ │ │ ├── ipad_152.png │ │ │ │ ├── ipad_76.png │ │ │ │ ├── ipad_pro_167.png │ │ │ │ ├── iphone_120.png │ │ │ │ └── iphone_180.png │ │ │ ├── icon114.png │ │ │ ├── icon120.png │ │ │ ├── icon144.png │ │ │ ├── icon152.png │ │ │ ├── icon167.png │ │ │ ├── icon57.png │ │ │ ├── icon72.png │ │ │ ├── icon76.png │ │ │ ├── itunes │ │ │ │ └── itunes_1024.png │ │ │ ├── notification │ │ │ │ ├── ipad_20.png │ │ │ │ ├── ipad_40.png │ │ │ │ ├── iphone_40.png │ │ │ │ └── iphone_60.png │ │ │ ├── settings │ │ │ │ ├── ipad_29.png │ │ │ │ ├── ipad_58.png │ │ │ │ ├── iphone_58.png │ │ │ │ └── iphone_87.png │ │ │ └── spotlight │ │ │ │ ├── ipad_40.png │ │ │ │ ├── ipad_80.png │ │ │ │ ├── iphone_120.png │ │ │ │ └── iphone_80.png │ │ ├── splash.png │ │ └── splashPortrait.png │ │ └── windows │ │ ├── License.txt │ │ ├── RunnerInstaller.nsi │ │ ├── Runner_Icon_256.ico │ │ ├── Runner_finish.bmp │ │ ├── Runner_header.bmp │ │ ├── runner_icon.ico │ │ └── splash.png ├── help.rtf ├── image_framework_V2_9.project.gmx └── scripts │ ├── draw_image.gml │ ├── draw_image_ext.gml │ ├── draw_image_general.gml │ ├── draw_image_part.gml │ ├── draw_image_part_ext.gml │ ├── draw_image_pos.gml │ ├── draw_image_pos_ext.gml │ ├── draw_image_pos_general.gml │ ├── draw_image_stretched.gml │ ├── draw_image_stretched_ext.gml │ ├── draw_image_tiled.gml │ ├── draw_image_tiled_area.gml │ ├── draw_image_tiled_area_ext.gml │ ├── draw_image_tiled_ext.gml │ ├── draw_text_outline.gml │ ├── image_cache_create.gml │ ├── image_cache_delete.gml │ ├── image_cache_load.gml │ ├── image_cache_save.gml │ ├── image_cache_unpack.gml │ ├── image_exists.gml │ ├── image_get_bbox_bottom.gml │ ├── image_get_bbox_left.gml │ ├── image_get_bbox_right.gml │ ├── image_get_bbox_top.gml │ ├── image_get_filename.gml │ ├── image_get_height.gml │ ├── image_get_identifier.gml │ ├── image_get_number.gml │ ├── image_get_texture.gml │ ├── image_get_texturepage.gml │ ├── image_get_uvs.gml │ ├── image_get_width.gml │ ├── image_get_xoffset.gml │ ├── image_get_yoffset.gml │ ├── image_group_clear.gml │ ├── image_group_create.gml │ ├── image_group_destroy.gml │ ├── image_group_exists.gml │ ├── image_group_find.gml │ ├── image_group_find_image.gml │ ├── image_group_flush.gml │ ├── image_group_prefetch.gml │ ├── image_save.gml │ ├── image_save_sheet.gml │ ├── image_save_strip.gml │ ├── image_set_bbox.gml │ ├── image_set_offset.gml │ ├── image_stream_add.gml │ ├── image_stream_add_3d.gml │ ├── image_stream_add_files.gml │ ├── image_stream_add_sheet.gml │ ├── image_stream_finish.gml │ ├── image_stream_finish_clamp.gml │ ├── image_stream_is_active.gml │ ├── image_stream_is_received.gml │ ├── image_stream_progress.gml │ ├── image_stream_receive.gml │ ├── image_stream_start.gml │ ├── image_stream_stop.gml │ ├── image_system_cleanup.gml │ └── image_system_init.gml └── preview.png /Braffolk Image Loader.gmx/Braffolk Image Loader.project.gmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/Braffolk Image Loader.project.gmx -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/Configs/Default.config.gmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/Configs/Default.config.gmx -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/Configs/Default/WinPhone/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/Configs/Default/WinPhone/ApplicationIcon.png -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/Configs/Default/WinPhone/CycleSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/Configs/Default/WinPhone/CycleSmall.png -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/Configs/Default/WinPhone/CycleWide1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/Configs/Default/WinPhone/CycleWide1.png -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/Configs/Default/WinPhone/CycleWide2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/Configs/Default/WinPhone/CycleWide2.png -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/Configs/Default/WinPhone/CycleWide3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/Configs/Default/WinPhone/CycleWide3.png -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/Configs/Default/WinPhone/CycleWide4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/Configs/Default/WinPhone/CycleWide4.png -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/Configs/Default/WinPhone/CycleWide5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/Configs/Default/WinPhone/CycleWide5.png -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/Configs/Default/WinPhone/CycleWide6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/Configs/Default/WinPhone/CycleWide6.png -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/Configs/Default/WinPhone/CycleWide7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/Configs/Default/WinPhone/CycleWide7.png -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/Configs/Default/WinPhone/CycleWide8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/Configs/Default/WinPhone/CycleWide8.png -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/Configs/Default/WinPhone/CycleWide9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/Configs/Default/WinPhone/CycleWide9.png -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/Configs/Default/WinPhone/FlipMedBack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/Configs/Default/WinPhone/FlipMedBack.png -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/Configs/Default/WinPhone/FlipMedFront.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/Configs/Default/WinPhone/FlipMedFront.png -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/Configs/Default/WinPhone/FlipSmallFront.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/Configs/Default/WinPhone/FlipSmallFront.png -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/Configs/Default/WinPhone/FlipWideBack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/Configs/Default/WinPhone/FlipWideBack.png -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/Configs/Default/WinPhone/FlipWideFront.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/Configs/Default/WinPhone/FlipWideFront.png -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/Configs/Default/WinPhone/IconicSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/Configs/Default/WinPhone/IconicSmall.png -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/Configs/Default/WinPhone/IconicWide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/Configs/Default/WinPhone/IconicWide.png -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/Configs/Default/WinPhone/SplashScreenImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/Configs/Default/WinPhone/SplashScreenImage.jpg -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/Configs/Default/WinPhone/SplashScreenImage480.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/Configs/Default/WinPhone/SplashScreenImage480.jpg -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/Configs/Default/WinPhone/SplashScreenImage720.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/Configs/Default/WinPhone/SplashScreenImage720.jpg -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/Configs/Default/Windows8/logos/logo150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/Configs/Default/Windows8/logos/logo150.png -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/Configs/Default/Windows8/logos/logo30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/Configs/Default/Windows8/logos/logo30.png -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/Configs/Default/Windows8/logos/logo310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/Configs/Default/Windows8/logos/logo310.png -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/Configs/Default/Windows8/logos/logo50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/Configs/Default/Windows8/logos/logo50.png -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/Configs/Default/Windows8/splashscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/Configs/Default/Windows8/splashscreen.png -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/Configs/Default/android/icons/icon_hdpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/Configs/Default/android/icons/icon_hdpi.png -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/Configs/Default/android/icons/icon_ldpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/Configs/Default/android/icons/icon_ldpi.png -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/Configs/Default/android/icons/icon_mdpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/Configs/Default/android/icons/icon_mdpi.png -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/Configs/Default/android/icons/icon_xhdpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/Configs/Default/android/icons/icon_xhdpi.png -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/Configs/Default/android/icons/icon_xxhdpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/Configs/Default/android/icons/icon_xxhdpi.png -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/Configs/Default/android/icons/icon_xxxhdpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/Configs/Default/android/icons/icon_xxxhdpi.png -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/Configs/Default/android/icons/ouyaIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/Configs/Default/android/icons/ouyaIcon.png -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/Configs/Default/android/portrait_splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/Configs/Default/android/portrait_splash.png -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/Configs/Default/android/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/Configs/Default/android/splash.png -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/Configs/Default/html5/fav.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/Configs/Default/html5/fav.ico -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/Configs/Default/html5/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/Configs/Default/html5/splash.png -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/Configs/Default/ios/IphoneRetinasplash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/Configs/Default/ios/IphoneRetinasplash.png -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/Configs/Default/ios/IphoneRetinasplashPortrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/Configs/Default/ios/IphoneRetinasplashPortrait.png -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/Configs/Default/ios/iPadRetinasplash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/Configs/Default/ios/iPadRetinasplash.png -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/Configs/Default/ios/iPadRetinasplashPortrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/Configs/Default/ios/iPadRetinasplashPortrait.png -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/Configs/Default/ios/iPadsplash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/Configs/Default/ios/iPadsplash.png -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/Configs/Default/ios/iPadsplashPortrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/Configs/Default/ios/iPadsplashPortrait.png -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/Configs/Default/ios/iPhone5splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/Configs/Default/ios/iPhone5splash.png -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/Configs/Default/ios/iPhone5splashPortrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/Configs/Default/ios/iPhone5splashPortrait.png -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/Configs/Default/ios/iPhone6Plussplash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/Configs/Default/ios/iPhone6Plussplash.png -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/Configs/Default/ios/iPhone6PlussplashPortrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/Configs/Default/ios/iPhone6PlussplashPortrait.png -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/Configs/Default/ios/iPhone6splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/Configs/Default/ios/iPhone6splash.png -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/Configs/Default/ios/iPhone6splashPortrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/Configs/Default/ios/iPhone6splashPortrait.png -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/Configs/Default/ios/iPhonesplash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/Configs/Default/ios/iPhonesplash.png -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/Configs/Default/ios/iPhonesplashPortrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/Configs/Default/ios/iPhonesplashPortrait.png -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/Configs/Default/ios/icons/icon114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/Configs/Default/ios/icons/icon114.png -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/Configs/Default/ios/icons/icon120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/Configs/Default/ios/icons/icon120.png -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/Configs/Default/ios/icons/icon144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/Configs/Default/ios/icons/icon144.png -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/Configs/Default/ios/icons/icon152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/Configs/Default/ios/icons/icon152.png -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/Configs/Default/ios/icons/icon167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/Configs/Default/ios/icons/icon167.png -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/Configs/Default/ios/icons/icon57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/Configs/Default/ios/icons/icon57.png -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/Configs/Default/ios/icons/icon72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/Configs/Default/ios/icons/icon72.png -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/Configs/Default/ios/icons/icon76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/Configs/Default/ios/icons/icon76.png -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/Configs/Default/ios/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/Configs/Default/ios/splash.png -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/Configs/Default/linux/icon64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/Configs/Default/linux/icon64.png -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/Configs/Default/linux/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/Configs/Default/linux/splash.png -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/Configs/Default/mac/icon512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/Configs/Default/mac/icon512.png -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/Configs/Default/mac/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/Configs/Default/mac/splash.png -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/Configs/Default/tizen/icon117.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/Configs/Default/tizen/icon117.png -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/Configs/Default/tizen/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/Configs/Default/tizen/splash.png -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/Configs/Default/windows/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/Configs/Default/windows/License.txt -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/Configs/Default/windows/RunnerInstaller.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/Configs/Default/windows/RunnerInstaller.nsi -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/Configs/Default/windows/Runner_finish.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/Configs/Default/windows/Runner_finish.bmp -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/Configs/Default/windows/Runner_header.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/Configs/Default/windows/Runner_header.bmp -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/Configs/Default/windows/runner_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/Configs/Default/windows/runner_icon.ico -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/Configs/Default/windows/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/Configs/Default/windows/splash.png -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/help.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/help.rtf -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/scripts/draw_image.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/scripts/draw_image.gml -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/scripts/draw_image_ext.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/scripts/draw_image_ext.gml -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/scripts/draw_image_general.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/scripts/draw_image_general.gml -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/scripts/draw_image_part.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/scripts/draw_image_part.gml -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/scripts/draw_image_part_ext.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/scripts/draw_image_part_ext.gml -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/scripts/draw_image_pos.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/scripts/draw_image_pos.gml -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/scripts/draw_image_pos_ext.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/scripts/draw_image_pos_ext.gml -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/scripts/draw_image_pos_general.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/scripts/draw_image_pos_general.gml -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/scripts/draw_image_stretched.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/scripts/draw_image_stretched.gml -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/scripts/draw_image_stretched_ext.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/scripts/draw_image_stretched_ext.gml -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/scripts/draw_image_tiled.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/scripts/draw_image_tiled.gml -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/scripts/draw_image_tiled_area.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/scripts/draw_image_tiled_area.gml -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/scripts/draw_image_tiled_area_ext.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/scripts/draw_image_tiled_area_ext.gml -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/scripts/draw_image_tiled_ext.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/scripts/draw_image_tiled_ext.gml -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/scripts/image_cache_create.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/scripts/image_cache_create.gml -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/scripts/image_cache_delete.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/scripts/image_cache_delete.gml -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/scripts/image_cache_load.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/scripts/image_cache_load.gml -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/scripts/image_cache_save.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/scripts/image_cache_save.gml -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/scripts/image_cache_unpack.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/scripts/image_cache_unpack.gml -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/scripts/image_exists.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/scripts/image_exists.gml -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/scripts/image_get_filename.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/scripts/image_get_filename.gml -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/scripts/image_get_height.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/scripts/image_get_height.gml -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/scripts/image_get_identifier.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/scripts/image_get_identifier.gml -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/scripts/image_get_number.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/scripts/image_get_number.gml -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/scripts/image_get_texture.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/scripts/image_get_texture.gml -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/scripts/image_get_texturepage.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/scripts/image_get_texturepage.gml -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/scripts/image_get_uvs.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/scripts/image_get_uvs.gml -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/scripts/image_get_width.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/scripts/image_get_width.gml -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/scripts/image_get_xoffset.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/scripts/image_get_xoffset.gml -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/scripts/image_get_yoffset.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/scripts/image_get_yoffset.gml -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/scripts/image_group_clear.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/scripts/image_group_clear.gml -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/scripts/image_group_create.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/scripts/image_group_create.gml -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/scripts/image_group_destroy.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/scripts/image_group_destroy.gml -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/scripts/image_group_exists.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/scripts/image_group_exists.gml -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/scripts/image_group_find_image.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/scripts/image_group_find_image.gml -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/scripts/image_save.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/scripts/image_save.gml -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/scripts/image_save_strip.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/scripts/image_save_strip.gml -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/scripts/image_set_offset.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/scripts/image_set_offset.gml -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/scripts/image_stream_add.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/scripts/image_stream_add.gml -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/scripts/image_stream_add_3d.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/scripts/image_stream_add_3d.gml -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/scripts/image_stream_finish.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/scripts/image_stream_finish.gml -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/scripts/image_stream_finish_clamp.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/scripts/image_stream_finish_clamp.gml -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/scripts/image_stream_is_active.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/scripts/image_stream_is_active.gml -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/scripts/image_stream_is_received.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/scripts/image_stream_is_received.gml -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/scripts/image_stream_progress.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/scripts/image_stream_progress.gml -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/scripts/image_stream_receive.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/scripts/image_stream_receive.gml -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/scripts/image_stream_start.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/scripts/image_stream_start.gml -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/scripts/image_system_cleanup.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/scripts/image_system_cleanup.gml -------------------------------------------------------------------------------- /Braffolk Image Loader.gmx/scripts/image_system_init.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/Braffolk Image Loader.gmx/scripts/image_system_init.gml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/README.md -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/Configs/Default.config.gmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/Configs/Default.config.gmx -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/Configs/Default/Android/icons/icon_hdpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/Configs/Default/Android/icons/icon_hdpi.png -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/Configs/Default/Android/icons/icon_ldpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/Configs/Default/Android/icons/icon_ldpi.png -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/Configs/Default/Android/icons/icon_mdpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/Configs/Default/Android/icons/icon_mdpi.png -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/Configs/Default/Android/icons/icon_xhdpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/Configs/Default/Android/icons/icon_xhdpi.png -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/Configs/Default/Android/icons/icon_xxhdpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/Configs/Default/Android/icons/icon_xxhdpi.png -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/Configs/Default/Android/icons/icon_xxxhdpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/Configs/Default/Android/icons/icon_xxxhdpi.png -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/Configs/Default/Android/icons/ouyaIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/Configs/Default/Android/icons/ouyaIcon.png -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/Configs/Default/Android/portrait_splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/Configs/Default/Android/portrait_splash.png -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/Configs/Default/Android/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/Configs/Default/Android/splash.png -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/Configs/Default/HTML5/fav.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/Configs/Default/HTML5/fav.ico -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/Configs/Default/HTML5/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/Configs/Default/HTML5/splash.png -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/Configs/Default/Linux/icon64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/Configs/Default/Linux/icon64.png -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/Configs/Default/Linux/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/Configs/Default/Linux/splash.png -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/Configs/Default/Mac/icon512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/Configs/Default/Mac/icon512.png -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/Configs/Default/Mac/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/Configs/Default/Mac/splash.png -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/Configs/Default/Windows8/Win8NativeRunner_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/Configs/Default/Windows8/Win8NativeRunner_TemporaryKey.pfx -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/Configs/Default/Windows8/Windows8_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/Configs/Default/Windows8/Windows8_TemporaryKey.pfx -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/Configs/Default/Windows8/logos/logo150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/Configs/Default/Windows8/logos/logo150.png -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/Configs/Default/Windows8/logos/logo30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/Configs/Default/Windows8/logos/logo30.png -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/Configs/Default/Windows8/logos/logo310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/Configs/Default/Windows8/logos/logo310.png -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/Configs/Default/Windows8/logos/logo50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/Configs/Default/Windows8/logos/logo50.png -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/Configs/Default/Windows8/splashscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/Configs/Default/Windows8/splashscreen.png -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/Configs/Default/WindowsUAP/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/Configs/Default/WindowsUAP/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/Configs/Default/WindowsUAP/WinUWPRunner_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/Configs/Default/WindowsUAP/WinUWPRunner_TemporaryKey.pfx -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/Configs/Default/WindowsUAP/logos/LargeLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/Configs/Default/WindowsUAP/logos/LargeLogo.scale-100.png -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/Configs/Default/WindowsUAP/logos/Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/Configs/Default/WindowsUAP/logos/Logo.scale-100.png -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/Configs/Default/WindowsUAP/logos/SmallLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/Configs/Default/WindowsUAP/logos/SmallLogo.scale-100.png -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/Configs/Default/WindowsUAP/logos/SmallishLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/Configs/Default/WindowsUAP/logos/SmallishLogo.scale-100.png -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/Configs/Default/WindowsUAP/logos/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/Configs/Default/WindowsUAP/logos/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/Configs/Default/WindowsUAP/logos/WideLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/Configs/Default/WindowsUAP/logos/WideLogo.scale-100.png -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/Configs/Default/iOS/iPadRetinaSplash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/Configs/Default/iOS/iPadRetinaSplash.png -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/Configs/Default/iOS/iPadRetinaSplashPortrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/Configs/Default/iOS/iPadRetinaSplashPortrait.png -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/Configs/Default/iOS/iPadsplash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/Configs/Default/iOS/iPadsplash.png -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/Configs/Default/iOS/iPadsplashPortrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/Configs/Default/iOS/iPadsplashPortrait.png -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/Configs/Default/iOS/iPhone5splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/Configs/Default/iOS/iPhone5splash.png -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/Configs/Default/iOS/iPhone5splashPortrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/Configs/Default/iOS/iPhone5splashPortrait.png -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/Configs/Default/iOS/iPhone6PlusSplash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/Configs/Default/iOS/iPhone6PlusSplash.png -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/Configs/Default/iOS/iPhone6PlusSplashPortrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/Configs/Default/iOS/iPhone6PlusSplashPortrait.png -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/Configs/Default/iOS/iPhone6Splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/Configs/Default/iOS/iPhone6Splash.png -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/Configs/Default/iOS/iPhone6SplashPortrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/Configs/Default/iOS/iPhone6SplashPortrait.png -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/Configs/Default/iOS/iPhone7PlusSplash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/Configs/Default/iOS/iPhone7PlusSplash.png -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/Configs/Default/iOS/iPhone7PlusSplashPortrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/Configs/Default/iOS/iPhone7PlusSplashPortrait.png -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/Configs/Default/iOS/iPhone7Splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/Configs/Default/iOS/iPhone7Splash.png -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/Configs/Default/iOS/iPhone7SplashPortrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/Configs/Default/iOS/iPhone7SplashPortrait.png -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/Configs/Default/iOS/iPhone8PlusSplash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/Configs/Default/iOS/iPhone8PlusSplash.png -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/Configs/Default/iOS/iPhone8PlusSplashPortrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/Configs/Default/iOS/iPhone8PlusSplashPortrait.png -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/Configs/Default/iOS/iPhone8Splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/Configs/Default/iOS/iPhone8Splash.png -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/Configs/Default/iOS/iPhone8SplashPortrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/Configs/Default/iOS/iPhone8SplashPortrait.png -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/Configs/Default/iOS/iPhoneRetinasplash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/Configs/Default/iOS/iPhoneRetinasplash.png -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/Configs/Default/iOS/iPhoneRetinasplashPortrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/Configs/Default/iOS/iPhoneRetinasplashPortrait.png -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/Configs/Default/iOS/iPhoneSEsplash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/Configs/Default/iOS/iPhoneSEsplash.png -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/Configs/Default/iOS/iPhoneSEsplashPortrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/Configs/Default/iOS/iPhoneSEsplashPortrait.png -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/Configs/Default/iOS/iPhoneXSplash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/Configs/Default/iOS/iPhoneXSplash.png -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/Configs/Default/iOS/iPhoneXSplashPortrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/Configs/Default/iOS/iPhoneXSplashPortrait.png -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/Configs/Default/iOS/iPhonesplash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/Configs/Default/iOS/iPhonesplash.png -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/Configs/Default/iOS/iPhonesplashPortrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/Configs/Default/iOS/iPhonesplashPortrait.png -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/Configs/Default/iOS/icons/app/ipad_152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/Configs/Default/iOS/icons/app/ipad_152.png -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/Configs/Default/iOS/icons/app/ipad_76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/Configs/Default/iOS/icons/app/ipad_76.png -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/Configs/Default/iOS/icons/app/ipad_pro_167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/Configs/Default/iOS/icons/app/ipad_pro_167.png -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/Configs/Default/iOS/icons/app/iphone_120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/Configs/Default/iOS/icons/app/iphone_120.png -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/Configs/Default/iOS/icons/app/iphone_180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/Configs/Default/iOS/icons/app/iphone_180.png -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/Configs/Default/iOS/icons/icon114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/Configs/Default/iOS/icons/icon114.png -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/Configs/Default/iOS/icons/icon120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/Configs/Default/iOS/icons/icon120.png -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/Configs/Default/iOS/icons/icon144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/Configs/Default/iOS/icons/icon144.png -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/Configs/Default/iOS/icons/icon152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/Configs/Default/iOS/icons/icon152.png -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/Configs/Default/iOS/icons/icon167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/Configs/Default/iOS/icons/icon167.png -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/Configs/Default/iOS/icons/icon57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/Configs/Default/iOS/icons/icon57.png -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/Configs/Default/iOS/icons/icon72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/Configs/Default/iOS/icons/icon72.png -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/Configs/Default/iOS/icons/icon76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/Configs/Default/iOS/icons/icon76.png -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/Configs/Default/iOS/icons/itunes/itunes_1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/Configs/Default/iOS/icons/itunes/itunes_1024.png -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/Configs/Default/iOS/icons/notification/ipad_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/Configs/Default/iOS/icons/notification/ipad_20.png -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/Configs/Default/iOS/icons/notification/ipad_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/Configs/Default/iOS/icons/notification/ipad_40.png -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/Configs/Default/iOS/icons/notification/iphone_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/Configs/Default/iOS/icons/notification/iphone_40.png -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/Configs/Default/iOS/icons/notification/iphone_60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/Configs/Default/iOS/icons/notification/iphone_60.png -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/Configs/Default/iOS/icons/settings/ipad_29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/Configs/Default/iOS/icons/settings/ipad_29.png -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/Configs/Default/iOS/icons/settings/ipad_58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/Configs/Default/iOS/icons/settings/ipad_58.png -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/Configs/Default/iOS/icons/settings/iphone_58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/Configs/Default/iOS/icons/settings/iphone_58.png -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/Configs/Default/iOS/icons/settings/iphone_87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/Configs/Default/iOS/icons/settings/iphone_87.png -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/Configs/Default/iOS/icons/spotlight/ipad_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/Configs/Default/iOS/icons/spotlight/ipad_40.png -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/Configs/Default/iOS/icons/spotlight/ipad_80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/Configs/Default/iOS/icons/spotlight/ipad_80.png -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/Configs/Default/iOS/icons/spotlight/iphone_120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/Configs/Default/iOS/icons/spotlight/iphone_120.png -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/Configs/Default/iOS/icons/spotlight/iphone_80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/Configs/Default/iOS/icons/spotlight/iphone_80.png -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/Configs/Default/iOS/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/Configs/Default/iOS/splash.png -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/Configs/Default/iOS/splashPortrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/Configs/Default/iOS/splashPortrait.png -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/Configs/Default/windows/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/Configs/Default/windows/License.txt -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/Configs/Default/windows/RunnerInstaller.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/Configs/Default/windows/RunnerInstaller.nsi -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/Configs/Default/windows/Runner_Icon_256.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/Configs/Default/windows/Runner_Icon_256.ico -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/Configs/Default/windows/Runner_finish.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/Configs/Default/windows/Runner_finish.bmp -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/Configs/Default/windows/Runner_header.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/Configs/Default/windows/Runner_header.bmp -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/Configs/Default/windows/runner_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/Configs/Default/windows/runner_icon.ico -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/Configs/Default/windows/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/Configs/Default/windows/splash.png -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/help.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/help.rtf -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/image_framework_V2_9.project.gmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/image_framework_V2_9.project.gmx -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/scripts/draw_image.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/scripts/draw_image.gml -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/scripts/draw_image_ext.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/scripts/draw_image_ext.gml -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/scripts/draw_image_general.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/scripts/draw_image_general.gml -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/scripts/draw_image_part.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/scripts/draw_image_part.gml -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/scripts/draw_image_part_ext.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/scripts/draw_image_part_ext.gml -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/scripts/draw_image_pos.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/scripts/draw_image_pos.gml -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/scripts/draw_image_pos_ext.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/scripts/draw_image_pos_ext.gml -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/scripts/draw_image_pos_general.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/scripts/draw_image_pos_general.gml -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/scripts/draw_image_stretched.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/scripts/draw_image_stretched.gml -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/scripts/draw_image_stretched_ext.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/scripts/draw_image_stretched_ext.gml -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/scripts/draw_image_tiled.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/scripts/draw_image_tiled.gml -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/scripts/draw_image_tiled_area.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/scripts/draw_image_tiled_area.gml -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/scripts/draw_image_tiled_area_ext.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/scripts/draw_image_tiled_area_ext.gml -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/scripts/draw_image_tiled_ext.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/scripts/draw_image_tiled_ext.gml -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/scripts/draw_text_outline.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/scripts/draw_text_outline.gml -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/scripts/image_cache_create.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/scripts/image_cache_create.gml -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/scripts/image_cache_delete.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/scripts/image_cache_delete.gml -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/scripts/image_cache_load.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/scripts/image_cache_load.gml -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/scripts/image_cache_save.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/scripts/image_cache_save.gml -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/scripts/image_cache_unpack.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/scripts/image_cache_unpack.gml -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/scripts/image_exists.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/scripts/image_exists.gml -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/scripts/image_get_bbox_bottom.gml: -------------------------------------------------------------------------------- 1 | ///image_get_bbox_bottom() 2 | gml_pragma("forceinline"); 3 | return( argument0[# __ISG_IMG.BBOX_BOTTOM, 0 ] ); 4 | -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/scripts/image_get_bbox_left.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/scripts/image_get_bbox_left.gml -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/scripts/image_get_bbox_right.gml: -------------------------------------------------------------------------------- 1 | ///image_get_bbox_right() 2 | gml_pragma("forceinline"); 3 | return( argument0[# __ISG_IMG.BBOX_RIGHT, 0 ] ); 4 | -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/scripts/image_get_bbox_top.gml: -------------------------------------------------------------------------------- 1 | ///image_get_bbox_top() 2 | gml_pragma("forceinline"); 3 | return( argument0[# __ISG_IMG.BBOX_TOP, 0 ] ); 4 | -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/scripts/image_get_filename.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/scripts/image_get_filename.gml -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/scripts/image_get_height.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/scripts/image_get_height.gml -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/scripts/image_get_identifier.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/scripts/image_get_identifier.gml -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/scripts/image_get_number.gml: -------------------------------------------------------------------------------- 1 | ///image_get_number(ind) 2 | gml_pragma("forceinline"); 3 | return( argument0[# __ISG_IMG.SUBIMAGES, 0 ] ); 4 | -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/scripts/image_get_texture.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/scripts/image_get_texture.gml -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/scripts/image_get_texturepage.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/scripts/image_get_texturepage.gml -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/scripts/image_get_uvs.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/scripts/image_get_uvs.gml -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/scripts/image_get_width.gml: -------------------------------------------------------------------------------- 1 | ///image_get_width(ind) 2 | gml_pragma("forceinline"); 3 | return( argument0[# __ISG_IMG.WIDTH, 0 ] ); 4 | -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/scripts/image_get_xoffset.gml: -------------------------------------------------------------------------------- 1 | ///image_get_xoffset(ind) 2 | gml_pragma("forceinline"); 3 | return( argument0[# __ISG_IMG.XORIGIN, 0 ] ); 4 | -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/scripts/image_get_yoffset.gml: -------------------------------------------------------------------------------- 1 | ///image_get_yoffset(ind) 2 | gml_pragma("forceinline"); 3 | return( argument0[# __ISG_IMG.YORIGIN, 0 ] ); 4 | -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/scripts/image_group_clear.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/scripts/image_group_clear.gml -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/scripts/image_group_create.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/scripts/image_group_create.gml -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/scripts/image_group_destroy.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/scripts/image_group_destroy.gml -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/scripts/image_group_exists.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/scripts/image_group_exists.gml -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/scripts/image_group_find.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/scripts/image_group_find.gml -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/scripts/image_group_find_image.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/scripts/image_group_find_image.gml -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/scripts/image_group_flush.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/scripts/image_group_flush.gml -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/scripts/image_group_prefetch.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/scripts/image_group_prefetch.gml -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/scripts/image_save.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/scripts/image_save.gml -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/scripts/image_save_sheet.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/scripts/image_save_sheet.gml -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/scripts/image_save_strip.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/scripts/image_save_strip.gml -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/scripts/image_set_bbox.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/scripts/image_set_bbox.gml -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/scripts/image_set_offset.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/scripts/image_set_offset.gml -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/scripts/image_stream_add.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/scripts/image_stream_add.gml -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/scripts/image_stream_add_3d.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/scripts/image_stream_add_3d.gml -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/scripts/image_stream_add_files.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/scripts/image_stream_add_files.gml -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/scripts/image_stream_add_sheet.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/scripts/image_stream_add_sheet.gml -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/scripts/image_stream_finish.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/scripts/image_stream_finish.gml -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/scripts/image_stream_finish_clamp.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/scripts/image_stream_finish_clamp.gml -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/scripts/image_stream_is_active.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/scripts/image_stream_is_active.gml -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/scripts/image_stream_is_received.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/scripts/image_stream_is_received.gml -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/scripts/image_stream_progress.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/scripts/image_stream_progress.gml -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/scripts/image_stream_receive.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/scripts/image_stream_receive.gml -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/scripts/image_stream_start.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/scripts/image_stream_start.gml -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/scripts/image_stream_stop.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/scripts/image_stream_stop.gml -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/scripts/image_system_cleanup.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/scripts/image_system_cleanup.gml -------------------------------------------------------------------------------- /image_framework_V2_9.gmx/scripts/image_system_init.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/image_framework_V2_9.gmx/scripts/image_system_init.gml -------------------------------------------------------------------------------- /preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameMakerDiscord/custom-sprite-framework/HEAD/preview.png --------------------------------------------------------------------------------