ADProperties now properly stores parsed mumbojumbo

This commit is contained in:
minjaesong
2019-01-06 04:19:21 +09:00
parent 1696cc8601
commit fb06200d26
3 changed files with 67 additions and 23 deletions

View File

@@ -0,0 +1,15 @@
package net.torvald.spriteassembler
/**
* Assembles the single frame of the animation, outputs GDX Pixmap.
*
* Created by minjaesong on 2019-01-06.
*/
object AssembleFrameGdxPixmap {
operator fun invoke(properties: ADProperties, frameName: String) {
val theAnim = properties.getAnimByFrameName(frameName)
val skeleton = theAnim.skeleton
}
}