MapDebugOptions

value class MapDebugOptions(val value: Int = 0)(source)

Debug options for the map renderer. Each property represents a debug feature that can be enabled. Multiple options can be enabled simultaneously.

Constructors

Link copied to clipboard
constructor(tileBorders: Boolean = false, parseStatus: Boolean = false, timestamps: Boolean = false, collision: Boolean = false, overdraw: Boolean = false, stencilClip: Boolean = false, depthBuffer: Boolean = false)
constructor(value: Int = 0)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val value: Int = 0

Functions

Link copied to clipboard
fun copy(tileBorders: Boolean? = null, parseStatus: Boolean? = null, timestamps: Boolean? = null, collision: Boolean? = null, overdraw: Boolean? = null, stencilClip: Boolean? = null, depthBuffer: Boolean? = null): MapDebugOptions

Returns a copy of this MapDebugOptions with the specified options modified

Link copied to clipboard
operator fun minus(other: MapDebugOptions): MapDebugOptions

Removes the specified debug options

Link copied to clipboard
operator fun plus(other: MapDebugOptions): MapDebugOptions

Combines this debug options with another

Link copied to clipboard
open override fun toString(): String