Serialized Form
properties
Map<K,V> properties
ds
DanceState ds
_isDone
boolean _isDone
Package net.cscott.sdr.anim |
quad
TexturedQuad quad
paint
Paint paint
oldVal
int oldVal
p1
com.jme.math.Vector2f p1
p2
com.jme.math.Vector2f p2
p3
com.jme.math.Vector2f p3
testPoint
com.jme.math.Vector2f testPoint
textureState
com.jme.scene.state.TextureState textureState
label
TextureText label
value
TextureText value
leftArrow
MenuArrow leftArrow
rightArrow
MenuArrow rightArrow
valueText
String[] valueText
which
int which
isEnabled
boolean isEnabled
textureImageRef
SoftReference<T> textureImageRef
- An image buffer for drawing the texture; this is a soft reference to
allow reclamation in mostly-static
TexturedQuad
s, but hopefully
the gc will be smart enough to keep enough around that we don't need
to be doing frequent allocations for dynamic TexturedQuad
s.
texture
com.jme.image.Texture texture
- The
Texture
we will ultimately generate.
textureState
com.jme.scene.state.TextureState textureState
- The
TextureState
(we need to invalidate this from time to
time).
textureSize
int textureSize
- The desired texture size -- for a 64x64 texture, specify '64' here.
quad
TexturedQuad quad
- This is the internal
TexturedQuad
which is textured and translated.
alignX
TextureText.JustifyX alignX
- The user's choice of horizontal alignments.
alignY
TextureText.JustifyY alignY
- The user's choice of vertical alignments.
maxWidth
float maxWidth
- The user's maximum width and height restrictions.
maxHeight
float maxHeight
- The user's maximum width and height restrictions.
width
float width
- The actual width and height of the text.
height
float height
- The actual width and height of the text.
baseline
float baseline
- Baseline offset (from bottom)
text
String text
- The string to display, or null if the TextureText has not been
completely initialized yet.
textureSize
int textureSize
- The desired texture size -- for a 64x64 texture, specify '64' here.
font
Font font
- The
Font
to use to draw this text. Use
Font.createFont(int, java.io.InputStream)
to use a truetype
font from a resource file.
color
com.jme.renderer.ColorRGBA color
- The color to display the text.
Package net.cscott.sdr.calls |
priority
Fraction priority
- Priority field helps us distinguish
ordinary "you can't do that from here" exceptions from special
messages from If nodes, like "facing recycle is not
valid at Plus". The default priority for "ordinary" exceptions
is 0.
If
nodes with messages default
to 1.
target
String target
reason
String reason
Package net.cscott.sdr.util |
serialVersionUID: 65382027393090L
readResolve
private Object readResolve()
throws ObjectStreamException
- Ensure serialization is backwards-compatible by
reconstructing fractions as they are read in.
- Throws:
ObjectStreamException
- if the deserialized fraction
is invalid or corrupt (for example, the denominator is zero)
numerator
int numerator
- The numerator number part of the fraction (the three in three sevenths).
Numerator and denominator are always relatively prime.
denominator
int denominator
- The denominator number part of the fraction (the seven in three sevenths).
Numerator and denominator are always relatively prime.
The denominator is always greater than zero.
Copyright © 2006-2009 C. Scott Ananian