Skip to content

"Simple" animation library for Love2D.

License

Notifications You must be signed in to change notification settings

blarrggg/garlic.lua

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 

Repository files navigation

garlic.lua

"Simple" animation library for LÖVE2D. This library takes three steps in order for animations to function. Firstly, you create an Actor, which are animated objects in your game that hold and control multiple animations. Then, you create Animations to attach to the Actor, which are sequences of frames. However, before you attach them at all, you must give those Animations some Frames, which are the specific parts of a spritesheet that represent individual frames of animation.

Actors

Actors are objects that store, manage, and display Animations, which must be attached beforehand. Each actor is tied to a spritesheet (an image containing multiple frames of animation) and can manage multiple animations simultaneously. When an actor is created, it starts without any animations, and they need to be attached individually.

Creating an actor, then giving it some animations:

local actor = garlic.newActor(spritesheet)
actor.attachAnimation(anim1)
actor.attachAnimation(anim2)

Creating an actor only takes in a singular Image argument.

Animations

Animations are a collection of frames that are played one after another during playback. When an animation is created, it starts as an empty sequence of frames. You must define and attach frames to it manually.

Creating an animation with an ID of "walk", and giving it some frames:

local walkAnim = garlic.newAnimation("walk", 2, 4, true, false)
walkAnim.attachFrame(frame1)
walkAnim.attachFrame(frame2)

Creating an animation requires five arguments (actually, everything beyond the first argument is optional. but still!!).

.newAnimation(
  "ID", -- The ID of the animation. Note that when attaching this to an actor, that there can't be another pre-existing animation of the same ID.
  2, -- The animation's priority. Animations of higher priority (and are playing) typically get drawn first before any others.
  4, -- How fast the animation is.
  true, -- Whether or not to enable looping. If true, when the animation ends, it will return to the first frame and continue playing.
  false -- Whether or not to enable loopback. Assuming looping is false, the animation will snap back to the first frame and stop playing once it has finished.
)

Frames

A Frame is a singular image of a spritesheet that will be drawn to the screen. They get automatically defined as Quads once they have been attached to an Actor. They are the most basic unit in this library.

Creating a frame:

local frame1 = garlic.newFrame(0, 0, 32, 32, function() print("Hello! :)") end)

That last argument (which is optional, mind you!), defined as a function, automatically gets executed once the Frame has been cycled through by an Actor.

Functions

Actor Functions

garlic.newActor(spritesheet) Creates a new actor with the given spritesheet.

actor.getSpritesheet() Returns the spritesheet being used by the actor.

actor.attachAnimation(animation) Attaches an animation to the actor.

actor.playAnimation(id) Plays the animation with the given id. Resets playback to the first frame.

actor.stopAnimation(id) Stops the animation with the given id. Resets playback to the first frame.

actor.pauseAnimation(id) Pauses the animation with the given id.

actor.resumeAnimation(id) Resumes playback of the animation with the given id.

actor.update(dt) Updates the actor.

actor.draw(fallbackAnim, ...) Draws the actor. Whichever animation gets displayed is based on whatever's currently playing with the highest priority. If none are playing, it will default to the fallbackAnim to display.

actor.getAnimations() Returns a table of all attached animations.

actor.getAnimation(id) Returns the animation with the given id, if there is one.

Animation Functions

garlic.newAnimation(id, priority, speed, loop, loopback) Creates a new animation with the specified properties.

animation.attachFrame(frame) Adds a frame to the animation.

Frame Functions

garlic.newFrame(x, y, w, h, func) Creates a new frame from the specific position and size on the spritesheet. "func" argument is optional.

frame.attachFunction(func) Attaches a function to the Frame. Will automatically be executed when the Frame has been cycled through by an Actor.

frame.getFunction() Returns the attached function. If there isn't anything attached, it will simply return nil.

frame.destroyFunction() Removes the attached function, setting it to nil.

About

"Simple" animation library for Love2D.

Topics

Resources

License

Stars

Watchers

Forks

Languages