commonMain.ru.casperix.spine.json.component.SkeletonJsonAttributes.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 SkeletonJsonAttributes(
val hash: String,
val spine: String,
val x: Float,
val y: Float,
val width: Float,
val height: Float,
val fps: Float = 30f,
val images: String,
val audio: String,
/**
* Undocumented section
*/
val referenceScale:Float = 100f
)