Package ea.actor
Enum Class BodyType
- All Implemented Interfaces:
Serializable
,Comparable<BodyType>
,Constable
Aufzählung der drei verschiedenen Typen von Objekten innerhalb der Physics der EA.
-
Statische Objekte:
- Haben keine Geschwindigkeit
- Bewegen sich nicht in der Simulation, Kräfte haben keinen Einfluss auf sie.
-
Dynamische Objekte:
- Verhalten sich wie Objekte der newton'schen Mechanik.
- Können Kräfte auf sich wirken lassen und interagieren miteinander.
-
Kinematische Objekte:
- Können eine Geschwindigkeit haben, aber onKeyDownInternal nicht auf Kräfte.
- Kollidieren (im Sinne der Physics) nur mit dynamischen Objekten.
-
Sensoren:
- Nehmen nicht an der Physiksimulation teil. Sie werden von der Physics so behandelt, als wären sie nicht da.
- Generieren troztdem Collision Events
-
Particles:
- Nehmen wie Sensoren nicht teil an der Physiksimulation
- Generieren troztdem Collision Events
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionboolean
isSensor()
org.jbox2d.dynamics.BodyType
toBox2D()
Konvertierungsmethode zwischen Engine-Physiktyp und JB2D-Physiktyp.static BodyType
Returns the enum constant of this class with the specified name.static BodyType[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
STATIC
-
DYNAMIC
-
KINEMATIC
-
SENSOR
-
PARTICLE
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-
toBox2D
@Internal public org.jbox2d.dynamics.BodyType toBox2D()Konvertierungsmethode zwischen Engine-Physiktyp und JB2D-Physiktyp.- Returns:
- Der zugehörige JB2D-Phy-Type zu diesem Engine-Phy-Type.
-
isSensor
public boolean isSensor()
-