@gandalfwisdom/flipbookbuddy
v1.0.0
Published
A basic flipbook animator/display module for Roblox.
Readme
FlipbookBuddy
A basic flipbook animator/display module for Roblox.
Dependencies
This resource is dependant on the Nevermore framework. It will not work without it.
Features
Allows functionality for animated or static sprite sheets.
Usage
This module will automatically detect the image's resolution if you uploaded it, but will need a custom resolution if you are using a public decal.
Initialize your FlipbookBuddy with your ImageLabel/Button label as the first argument.
local FlipbookBuddy = require(path.to.flipbookbuddy);
local flipbook = FlipbookBuddy.new(image_label);Now it's as simple as calling:
flipbook:Play();
-- or
flipbook:Loop();to play your animation.
You can also use:
flipbook:SetPosition(3);to set the image to a specific frame. Very useful for button input atlases.
Installation
PathBuddy supports Nevermore's npm package installation method.
Simply type npm install @gandalfwisdom/flipbookbuddy in your CLI on your project to install.
