com.lop.devtools.monstera.files.beh.entitiy.components.ComponentMountPathing.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of monstera Show documentation
Show all versions of monstera Show documentation
A library and environment designed to streamline the development of Minecraft addons.
package com.lop.devtools.monstera.files.beh.entitiy.components
class ComponentMountPathing {
val general = mutableMapOf()
var priority: Int? = null
var speedMultiplier: Float? = null
var targetDist: Float? = null
var trackTarget: Boolean? = null
fun getData(): MutableMap {
priority?.let { general["priority"] = it }
speedMultiplier?.let { general["speed_multiplier"] = it }
targetDist?.let { general["target_dist"] = it }
trackTarget?.let { general["track_target"] = it }
return general
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy