Serialized Form
-
Package com.jme3.app
-
Class com.jme3.app.AppletHarness
class AppletHarness extends Applet implements Serializable-
Serialized Fields
-
app
LegacyApplication app
-
appCfg
URL appCfg
-
appClass
String appClass
-
assetCfg
URL assetCfg
-
canvas
Canvas canvas
-
context
JmeCanvasContext context
-
-
-
-
Package com.jme3.asset
-
Exception com.jme3.asset.AssetLoadException
class AssetLoadException extends RuntimeException implements Serializable -
Exception com.jme3.asset.AssetNotFoundException
class AssetNotFoundException extends RuntimeException implements Serializable
-
-
Package com.jme3.bullet.collision
-
Class com.jme3.bullet.collision.PhysicsCollisionEvent
class PhysicsCollisionEvent extends EventObject implements Serializable-
Serialized Fields
-
cp
com.bulletphysics.collision.narrowphase.ManifoldPoint cp
-
nodeA
PhysicsCollisionObject nodeA
-
nodeB
PhysicsCollisionObject nodeB
-
type
int type
-
-
-
-
Package com.jme3.bullet.control.ragdoll
-
Package com.jme3.cinematic
-
Class com.jme3.cinematic.TimeLine
-
Serialized Fields
-
keyFramesPerSeconds
int keyFramesPerSeconds
-
lastKeyFrameIndex
int lastKeyFrameIndex
-
-
-
-
Package com.jme3.collision
-
Exception com.jme3.collision.UnsupportedCollisionException
class UnsupportedCollisionException extends UnsupportedOperationException implements Serializable
-
-
Package com.jme3.material
-
Package com.jme3.material.plugins
-
Exception com.jme3.material.plugins.MatParseException
class MatParseException extends IOException implements Serializable
-
-
Package com.jme3.math
-
Class com.jme3.math.ColorRGBA
class ColorRGBA extends Object implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
a
float a
The alpha component of the color. 0 is transparent and 1 is opaque. -
b
float b
The blue component of the color. 0 is none and 1 is maximum blue. -
g
float g
The green component of the color. 0 is none and 1 is maximum green. -
r
float r
The red component of the color. 0 is none and 1 is maximum red.
-
-
Class com.jme3.math.Eigen3f
class Eigen3f extends Object implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
eigenValues
float[] eigenValues
-
eigenVectors
Vector3f[] eigenVectors
-
-
Class com.jme3.math.Line
class Line extends Object implements Serializable- serialVersionUID:
- 1L
-
Class com.jme3.math.LineSegment
class LineSegment extends Object implements Serializable- serialVersionUID:
- 1L
-
Class com.jme3.math.Matrix3f
class Matrix3f extends Object implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
m00
float m00
The element in row 0, column 0. -
m01
float m01
The element in row 0, column 1. -
m02
float m02
The element in row 0, column 2. -
m10
float m10
The element in row 1, column 0. -
m11
float m11
The element in row 1, column 1. -
m12
float m12
The element in row 1, column 2. -
m20
float m20
The element in row 2, column 0. -
m21
float m21
The element in row 2, column 1. -
m22
float m22
The element in row 2, column 2.
-
-
Class com.jme3.math.Matrix4f
class Matrix4f extends Object implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
m00
float m00
The element in row 0, column 0. -
m01
float m01
The element in row 0, column 1. -
m02
float m02
The element in row 0, column 2. -
m03
float m03
The element in row 0, column 3 (the X translation). -
m10
float m10
The element in row 1, column 0. -
m11
float m11
The element in row 1, column 1. -
m12
float m12
The element in row 1, column 2. -
m13
float m13
The element in row 1, column 3 (the Y translation). -
m20
float m20
The element in row 2, column 0. -
m21
float m21
The element in row 2, column 1. -
m22
float m22
The element in row 2, column 2. -
m23
float m23
The element in row 2, column 3 (the Z translation). -
m30
float m30
The element in row 3, column 0. -
m31
float m31
The element in row 3, column 1. -
m32
float m32
The element in row 3, column 2. -
m33
float m33
The element in row 3, column 3.
-
-
Class com.jme3.math.Plane
class Plane extends Object implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
constant
float constant
Constant of the plane. See formula in class definition. -
normal
Vector3f normal
Vector normal to the plane.
-
-
Class com.jme3.math.Quaternion
class Quaternion extends Object implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
w
float w
The real (W) component. Not an angle! -
x
float x
The first imaginary (X) component. Not an angle! -
y
float y
The 2nd imaginary (Y) component. Not an angle! -
z
float z
The 3rd imaginary (Z) component. Not an angle!
-
-
Class com.jme3.math.Ray
class Ray extends Object implements Serializable- serialVersionUID:
- 1L
-
Class com.jme3.math.Rectangle
class Rectangle extends Object implements Serializable- serialVersionUID:
- 1L
-
Class com.jme3.math.Ring
class Ring extends Object implements Serializable- serialVersionUID:
- 1L
-
Class com.jme3.math.Transform
class Transform extends Object implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
rot
Quaternion rot
Rotation component. -
scale
Vector3f scale
Scaling component: a scale factor for each local axis. -
translation
Vector3f translation
Translation component: an offset for each local axis.
-
-
Class com.jme3.math.Triangle
class Triangle extends AbstractTriangle implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
index
int index
The index of the triangle, used to identify it in an OBBTree. -
pointA
Vector3f pointA
The location of the first vertex in winding order. -
pointB
Vector3f pointB
The location of the 2nd vertex in winding order. -
pointC
Vector3f pointC
The location of the 3rd vertex in winding order. -
projection
float projection
-
-
Class com.jme3.math.Vector2f
class Vector2f extends Object implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
x
float x
The first (X) component. -
y
float y
The 2nd (Y) component.
-
-
Class com.jme3.math.Vector3f
class Vector3f extends Object implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
x
float x
The first (X) component. -
y
float y
The 2nd (Y) component. -
z
float z
The 3rd (Z) component.
-
-
Class com.jme3.math.Vector4f
class Vector4f extends Object implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
w
float w
the w value of the vector. -
x
float x
the x value of the vector. -
y
float y
the y value of the vector. -
z
float z
the z value of the vector.
-
-
-
Package com.jme3.network.kernel
-
Exception com.jme3.network.kernel.ConnectorException
class ConnectorException extends RuntimeException implements Serializable -
Exception com.jme3.network.kernel.KernelException
class KernelException extends RuntimeException implements Serializable
-
-
Package com.jme3.network.serializing
-
Exception com.jme3.network.serializing.SerializerException
class SerializerException extends IOException implements Serializable
-
-
Package com.jme3.opencl
-
Exception com.jme3.opencl.KernelCompilationException
class KernelCompilationException extends OpenCLException implements Serializable-
Serialized Fields
-
log
String log
-
-
-
Exception com.jme3.opencl.OpenCLException
class OpenCLException extends RuntimeException implements Serializable- serialVersionUID:
- 8471229972153694848L
-
Serialized Fields
-
errorCode
int errorCode
-
-
-
Package com.jme3.renderer
-
Exception com.jme3.renderer.RendererException
class RendererException extends RuntimeException implements Serializable -
Exception com.jme3.renderer.TextureUnitException
class TextureUnitException extends Exception implements Serializable
-
-
Package com.jme3.system
-
Class com.jme3.system.AppSettings
- serialVersionUID:
- 1L
-
-
Package com.jme3.system.awt
-
Class com.jme3.system.awt.AwtPanel
class AwtPanel extends Canvas implements Serializable-
Serialized Fields
-
attachAsMain
boolean attachAsMain
-
byteBuf
ByteBuffer byteBuf
-
fb
FrameBuffer fb
-
hasNativePeer
AtomicBoolean hasNativePeer
-
img
BufferedImage img
-
intBuf
IntBuffer intBuf
-
lock
Object lock
-
newHeight
int newHeight
-
newWidth
int newWidth
-
paintMode
PaintMode paintMode
-
repaintRequest
AtomicBoolean repaintRequest
-
reshapeNeeded
AtomicBoolean reshapeNeeded
-
rm
RenderManager rm
-
showing
AtomicBoolean showing
-
srgb
boolean srgb
-
strategy
BufferStrategy strategy
-
transformOp
AffineTransformOp transformOp
-
viewPorts
List<ViewPort> viewPorts
-
-
-
-
Package com.jme3.util