All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.ru.casperix.spine.json.component.MeshAttachmentJson.kt Maven / Gradle / Ivy

There is a newer version: 0.9.0
Show newest version
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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy