commonMain.ru.casperix.spine.json.component.RegionAttachmentJson.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spine Show documentation
Show all versions of spine Show documentation
Signals for all occasions
The newest version!
package ru.casperix.spine.json.component
import kotlinx.serialization.SerialName
import kotlinx.serialization.Serializable
@SerialName("region")
@Serializable
class RegionAttachmentJson(
override val name:String = "",
val path: String? = null,
val x: Float = 0f,
val y: Float = 0f,
val scaleX: Float = 1f,
val scaleY: Float = 1f,
val rotation: Float = 0f,
val width: Float,
val height: Float,
val color: String = "FFFFFFFF",
) : AttachmentJson
© 2015 - 2025 Weber Informatics LLC | Privacy Policy