![JAR search and dependency download from the Maven repository](/logo.png)
godot.gen.godot.VerticalAlignment.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of godot-library-release Show documentation
Show all versions of godot-library-release Show documentation
Contains godot api as kotlin classes and jvm cpp interaction code.
// THIS FILE IS GENERATED! DO NOT EDIT IT MANUALLY!
package godot
import kotlin.Long
public enum class VerticalAlignment(
id: Long,
) {
/**
* Vertical top alignment, usually for text-derived classes.
*/
VERTICAL_ALIGNMENT_TOP(0),
/**
* Vertical center alignment, usually for text-derived classes.
*/
VERTICAL_ALIGNMENT_CENTER(1),
/**
* Vertical bottom alignment, usually for text-derived classes.
*/
VERTICAL_ALIGNMENT_BOTTOM(2),
/**
* Expand rows to fit height, usually for text-derived classes.
*/
VERTICAL_ALIGNMENT_FILL(3),
;
public val id: Long
init {
this.id = id
}
public companion object {
public fun from(`value`: Long): VerticalAlignment = entries.single { it.id == `value` }
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy