commonMain.ru.casperix.spine.json.component.SkinJson.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spine-jvm Show documentation
Show all versions of spine-jvm Show documentation
Signals for all occasions
package ru.casperix.spine.json.component
import kotlinx.serialization.Serializable
@Serializable
class SkinJson(
val name: String,
val bones: List? = null,
val ik: List? = null,
val transform: List? = null,
val path: List? = null,
// slot-name -> attachment-name
val attachments: Map>? = null,
/**
* Undocumented section
*/
val color:String? = null,
)