final case class DroppodData(basic: CommonFieldDataWithPlacement, health: Int, burn: Boolean, unk: Boolean) extends ConstructorData with Product with Serializable
A representation of a droppod that is dropped from the HART shuttle and ferries the player into battle.
Droppods are also used when a player has activated Instant Action.
When the server first spawns the droppod, it will be placed at the world ceiling - 1024.0f.
It is placed under control via another packet that sends it hurtling to the ground.
Upon hitting the ground, it opens up, releasing the player, and despawns.
Although the droppod is not technically a vehicle, it is treated as such by the game.
A spawned and unoccupied droppod can be entered and exited, as expected (the mount is 0).
There is no entry animation.
The exit animation is the droppod flowering open as usual.
Even in its spread open state, the droppod can be re-entered, though it will remain spread open.
The player's character will disappear once "inside."
Upon exiting again, the droppod will snap shut and spread open.
Exploration:
When basic.player_guid
is defined, the droppod will not be at the world ceiling anymore and its boosters will be activate.
Does this basic.player_guid
actually represent the player who is in the pod?
- basic
data common to objects
- health
the amount of health the object has, as a percentage of a filled bar
- burn
whether the boosters are ignited
- Source
- DroppodData.scala
- See also
DroppodLaunchRequestMessage
DroppodLaunchResponseMessage
- Alphabetic
- By Inheritance
- DroppodData
- Serializable
- Product
- Equals
- ConstructorData
- StreamBitSize
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- new DroppodData(basic: CommonFieldDataWithPlacement, health: Int, burn: Boolean, unk: Boolean)
- basic
data common to objects
- health
the amount of health the object has, as a percentage of a filled bar
- burn
whether the boosters are ignited
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- val basic: CommonFieldDataWithPlacement
- def bitsize: Long
Performs a "sizeof()" analysis of the given object.
The calculation reflects thescodec Codec
definition rather than the explicit parameter fields.Performs a "sizeof()" analysis of the given object.
The calculation reflects thescodec Codec
definition rather than the explicit parameter fields. For example, a traditionalInt
is normally a 32-bit number, often rendered as a32u
number. When parsed with auintL(7)
, it's length will be considered 7 bits (7u
). (Note: being permanently signed, anscodec
value of32u
or longer must fit into aLong
type.)- returns
the number of bits necessary to measure an object of this class; defaults to
0L
- Definition Classes
- DroppodData → StreamBitSize
- val burn: Boolean
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- val health: Int
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- val unk: Boolean
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()