-
Notifications
You must be signed in to change notification settings - Fork 0
Extensions
Potato Destroyer edited this page Feb 17, 2018
·
1 revision
operator fun Vector.plus
operator fun Vector.minus
operator fun Vector.times
operator fun Vector.div
operator fun Vector.get
operator fun Vector.set
entity.velocity += (entity.velocity * 1.1).also { it[Axis3D.X] = it[Axis3D.Y] }operator fun Location.plus
operator fun Location.minus
operator fun Location.times
operator fun Location.get
operator fun Location.set
entity.location.let {
entity.teleport((it * it[Axis3D.Y]).also { it[Axis3D.Z] = 1.0 })
}operator fun ChatColor.times()
entity.sendMessage(ChatColor.AQUA * "This an aqua text!")Join ChatColor and String.