mirror of
https://github.com/curioustorvald/Terrarum.git
synced 2026-03-07 20:31:51 +09:00
15 lines
371 B
Kotlin
15 lines
371 B
Kotlin
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
|
|
}
|
|
|
|
} |