commonMain.ru.casperix.spine.json.component.MeshAttachmentJson.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.SerialName
import kotlinx.serialization.Serializable
@SerialName("mesh")
@Serializable
class MeshAttachmentJson(
override val name:String = "",
val path: String? = null,
val uvs: List,
val triangles: List,
val vertices: List,
val hull: Int,
val edges:List? = null,
val color: String = "FFFFFFFF",
val width: Float? = null,
val height: Float? = null,
) : AttachmentJson