Modifier and Type | Method and Description |
---|---|
protected void |
G3dModelLoader.parseAnimations(ModelData model,
JsonValue json) |
protected VertexAttribute[] |
G3dModelLoader.parseAttributes(JsonValue attributes) |
protected Color |
G3dModelLoader.parseColor(JsonValue colorArray) |
protected void |
G3dModelLoader.parseMaterials(ModelData model,
JsonValue json,
java.lang.String materialDir) |
protected void |
G3dModelLoader.parseMeshes(ModelData model,
JsonValue json) |
protected Array<ModelNode> |
G3dModelLoader.parseNodes(ModelData model,
JsonValue json) |
protected ModelNode |
G3dModelLoader.parseNodesRecursively(JsonValue json) |
protected Vector2 |
G3dModelLoader.readVector2(JsonValue vectorArray,
float x,
float y) |
Modifier and Type | Method and Description |
---|---|
void |
ParticleController.read(Json json,
JsonValue jsonMap) |
void |
ParticleControllerComponent.read(Json json,
JsonValue jsonData) |
void |
ResourceData.read(Json json,
JsonValue jsonData) |
void |
ResourceData.SaveData.read(Json json,
JsonValue jsonData) |
void |
ResourceData.AssetData.read(Json json,
JsonValue jsonData) |
Modifier and Type | Method and Description |
---|---|
void |
Emitter.read(Json json,
JsonValue jsonData) |
void |
RegularEmitter.read(Json json,
JsonValue jsonData) |
Modifier and Type | Method and Description |
---|---|
void |
ColorInfluencer.Single.read(Json json,
JsonValue jsonData) |
void |
DynamicsInfluencer.read(Json json,
JsonValue jsonData) |
void |
DynamicsModifier.read(Json json,
JsonValue jsonData) |
void |
DynamicsModifier.Strength.read(Json json,
JsonValue jsonData) |
void |
DynamicsModifier.Angular.read(Json json,
JsonValue jsonData) |
void |
RegionInfluencer.read(Json json,
JsonValue jsonData) |
void |
SimpleInfluencer.read(Json json,
JsonValue jsonData) |
void |
SpawnInfluencer.read(Json json,
JsonValue jsonData) |
Modifier and Type | Method and Description |
---|---|
void |
EllipseSpawnShapeValue.read(Json json,
JsonValue jsonData) |
void |
GradientColorValue.read(Json json,
JsonValue jsonData) |
void |
NumericValue.read(Json json,
JsonValue jsonData) |
void |
ParticleValue.read(Json json,
JsonValue jsonData) |
void |
PrimitiveSpawnShapeValue.read(Json json,
JsonValue jsonData) |
void |
RangedNumericValue.read(Json json,
JsonValue jsonData) |
void |
ScaledNumericValue.read(Json json,
JsonValue jsonData) |
void |
SpawnShapeValue.read(Json json,
JsonValue jsonData) |
Modifier and Type | Field and Description |
---|---|
JsonValue |
JsonValue.child
May be null.
|
JsonValue |
JsonValue.next
May be null.
|
JsonValue |
JsonValue.parent
May be null.
|
JsonValue |
JsonValue.prev
May be null.
|
Modifier and Type | Method and Description |
---|---|
JsonValue |
JsonValue.child()
Returns the first child for this object or array.
|
JsonValue |
JsonValue.get(int index)
Returns the child at the specified index.
|
JsonValue |
JsonValue.get(java.lang.String name)
Returns the child with the specified name.
|
JsonValue |
JsonValue.getChild(java.lang.String name)
Finds the child with the specified name and returns its first child.
|
JsonValue |
JsonValue.next()
Returns the next sibling of this value.
|
JsonValue |
JsonValue.JsonIterator.next() |
JsonValue |
JsonValue.parent()
Returns the parent for this value.
|
JsonValue |
JsonReader.parse(char[] data,
int offset,
int length) |
JsonValue |
UBJsonReader.parse(java.io.DataInputStream din) |
protected JsonValue |
UBJsonReader.parse(java.io.DataInputStream din,
byte type) |
JsonValue |
BaseJsonReader.parse(FileHandle file) |
JsonValue |
JsonReader.parse(FileHandle file) |
JsonValue |
UBJsonReader.parse(FileHandle file) |
JsonValue |
BaseJsonReader.parse(java.io.InputStream input) |
JsonValue |
JsonReader.parse(java.io.InputStream input) |
JsonValue |
UBJsonReader.parse(java.io.InputStream input)
Parses the UBJSON from the given stream.
|
JsonValue |
JsonReader.parse(java.io.Reader reader) |
JsonValue |
JsonReader.parse(java.lang.String json) |
protected JsonValue |
UBJsonReader.parseArray(java.io.DataInputStream din) |
protected JsonValue |
UBJsonReader.parseData(java.io.DataInputStream din,
byte blockType) |
protected JsonValue |
UBJsonReader.parseObject(java.io.DataInputStream din) |
JsonValue |
JsonValue.prev()
Returns the previous sibling of this value.
|
JsonValue |
JsonValue.remove(int index)
Removes the child with the specified index.
|
JsonValue |
JsonValue.remove(java.lang.String name)
Removes the child with the specified name.
|
JsonValue |
JsonValue.require(int index)
Returns the child at the specified index.
|
JsonValue |
JsonValue.require(java.lang.String name)
Returns the child with the specified name.
|
Modifier and Type | Method and Description |
---|---|
java.util.Iterator<JsonValue> |
JsonValue.JsonIterator.iterator() |
Modifier and Type | Method and Description |
---|---|
void |
JsonValue.addChild(JsonValue value)
Adds the specified value after the last child.
|
void |
JsonValue.addChild(java.lang.String name,
JsonValue value)
Sets the name of the specified value and adds it after the last child.
|
void |
Json.Serializable.read(Json json,
JsonValue jsonData) |
T |
Json.Serializer.read(Json json,
JsonValue jsonData,
java.lang.Class type) |
abstract T |
Json.ReadOnlySerializer.read(Json json,
JsonValue jsonData,
java.lang.Class type) |
void |
Json.readField(java.lang.Object object,
Field field,
java.lang.String jsonName,
java.lang.Class elementType,
JsonValue jsonMap) |
void |
Json.readField(java.lang.Object object,
java.lang.String name,
java.lang.Class elementType,
JsonValue jsonData) |
void |
Json.readField(java.lang.Object object,
java.lang.String name,
JsonValue jsonData) |
void |
Json.readField(java.lang.Object object,
java.lang.String fieldName,
java.lang.String jsonName,
java.lang.Class elementType,
JsonValue jsonMap) |
void |
Json.readField(java.lang.Object object,
java.lang.String fieldName,
java.lang.String jsonName,
JsonValue jsonData) |
void |
Json.readFields(java.lang.Object object,
JsonValue jsonMap) |
<T> T |
Json.readValue(java.lang.Class<T> type,
java.lang.Class elementType,
JsonValue jsonData) |
<T> T |
Json.readValue(java.lang.Class<T> type,
java.lang.Class elementType,
T defaultValue,
JsonValue jsonData) |
<T> T |
Json.readValue(java.lang.Class<T> type,
JsonValue jsonData) |
<T> T |
Json.readValue(java.lang.String name,
java.lang.Class<T> type,
java.lang.Class elementType,
JsonValue jsonMap) |
<T> T |
Json.readValue(java.lang.String name,
java.lang.Class<T> type,
java.lang.Class elementType,
T defaultValue,
JsonValue jsonMap) |
<T> T |
Json.readValue(java.lang.String name,
java.lang.Class<T> type,
JsonValue jsonMap) |
<T> T |
Json.readValue(java.lang.String name,
java.lang.Class<T> type,
T defaultValue,
JsonValue jsonMap) |
void |
JsonValue.setNext(JsonValue next)
Sets the next sibling of this value.
|
void |
JsonValue.setPrev(JsonValue prev)
Sets the next sibling of this value.
|
UBJsonWriter |
UBJsonWriter.value(JsonValue value)
Appends the given JsonValue, including all its fields recursively, to the stream.
|