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

godot.gen.godot.VerticalAlignment.kt Maven / Gradle / Ivy

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