├── .gitignore ├── GIF_DEMO_IN-APP.gif ├── images ├── frozen1.gif ├── frozen2.gif ├── frozen3.gif ├── frozen4.gif ├── frozen5.gif ├── frozen6.gif ├── frozen7.gif ├── frozen8.gif ├── frozen9.gif └── channel_store_icon-hd.jpg ├── source └── main.brs ├── components ├── FrameAnimator.xml ├── AppScene.xml ├── GIFDecoder.xml ├── FrameAnimator.brs ├── AppScene.brs └── GIFDecoder.brs ├── manifest └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | out/ 3 | -------------------------------------------------------------------------------- /GIF_DEMO_IN-APP.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acotilla91/Animated-GIF-Roku-Demo/HEAD/GIF_DEMO_IN-APP.gif -------------------------------------------------------------------------------- /images/frozen1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acotilla91/Animated-GIF-Roku-Demo/HEAD/images/frozen1.gif -------------------------------------------------------------------------------- /images/frozen2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acotilla91/Animated-GIF-Roku-Demo/HEAD/images/frozen2.gif -------------------------------------------------------------------------------- /images/frozen3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acotilla91/Animated-GIF-Roku-Demo/HEAD/images/frozen3.gif -------------------------------------------------------------------------------- /images/frozen4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acotilla91/Animated-GIF-Roku-Demo/HEAD/images/frozen4.gif -------------------------------------------------------------------------------- /images/frozen5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acotilla91/Animated-GIF-Roku-Demo/HEAD/images/frozen5.gif -------------------------------------------------------------------------------- /images/frozen6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acotilla91/Animated-GIF-Roku-Demo/HEAD/images/frozen6.gif -------------------------------------------------------------------------------- /images/frozen7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acotilla91/Animated-GIF-Roku-Demo/HEAD/images/frozen7.gif -------------------------------------------------------------------------------- /images/frozen8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acotilla91/Animated-GIF-Roku-Demo/HEAD/images/frozen8.gif -------------------------------------------------------------------------------- /images/frozen9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acotilla91/Animated-GIF-Roku-Demo/HEAD/images/frozen9.gif -------------------------------------------------------------------------------- /images/channel_store_icon-hd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acotilla91/Animated-GIF-Roku-Demo/HEAD/images/channel_store_icon-hd.jpg -------------------------------------------------------------------------------- /source/main.brs: -------------------------------------------------------------------------------- 1 | sub main(args as dynamic) 2 | screen = CreateObject("roSGScreen") 3 | scene = screen.createScene("AppScene") 4 | screen.show() 5 | 6 | while true 7 | end while 8 | end sub -------------------------------------------------------------------------------- /components/FrameAnimator.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |