當前位置: 首頁>>代碼示例>>Java>>正文


Java JsonValue.next方法代碼示例

本文整理匯總了Java中com.badlogic.gdx.utils.JsonValue.next方法的典型用法代碼示例。如果您正苦於以下問題:Java JsonValue.next方法的具體用法?Java JsonValue.next怎麽用?Java JsonValue.next使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在com.badlogic.gdx.utils.JsonValue的用法示例。


在下文中一共展示了JsonValue.next方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: readColorFromJson

import com.badlogic.gdx.utils.JsonValue; //導入方法依賴的package包/類
public static Color readColorFromJson (JsonValue jsonData, String name) {
	JsonValue colordata = jsonData.getChild(name);
	if (colordata == null)
		return Color.BLACK;
	float r = 0;
	float g = 0;
	float b = 0;
	float a = 0;
	boolean hasnext = true;
	while (hasnext) {
		if (colordata.name().equals("r"))
			r = colordata.asFloat();
		else if (colordata.name().equals("g"))
			g = colordata.asFloat();
		else if (colordata.name().equals("b"))
			b = colordata.asFloat();
		else if (colordata.name().equals("a"))
			a = colordata.asFloat();
		colordata = colordata.next();
		hasnext = colordata != null;
	}
	return new Color(r, g, b, a);
}
 
開發者ID:Quexten,項目名稱:RavTech,代碼行數:24,代碼來源:JsonUtil.java

示例2: read

import com.badlogic.gdx.utils.JsonValue; //導入方法依賴的package包/類
@Override
public void read (Json json, JsonValue jsonData) {
	sortingLayers.clear();
	JsonValue sortingLayersValue = jsonData.get("sortingLayers");
	JsonValue currentLayerValue = sortingLayersValue.child();
	while (currentLayerValue != null) {
		sortingLayers.add(currentLayerValue.asString());
		currentLayerValue = currentLayerValue.next();
	}
	backgroundColor = JsonUtil.readColorFromJson(jsonData, "backgroundColor");
	ambientLightColor = JsonUtil.readColorFromJson(jsonData, "ambientLightColor");
}
 
開發者ID:Quexten,項目名稱:RavTech,代碼行數:13,代碼來源:RenderProperties.java

示例3: read

import com.badlogic.gdx.utils.JsonValue; //導入方法依賴的package包/類
@Override
public void read (Json json, JsonValue jsonData) {
	JsonValue currentValue = jsonData.child();
	if (currentValue == null)
		return;

	while (currentValue != null) {
		String value = currentValue.toString();
		this.put(value.substring(0, value.lastIndexOf(':')), Integer.valueOf(value.substring(value.lastIndexOf(':') + 2)));
		currentValue = currentValue.next();
	}
}
 
開發者ID:Quexten,項目名稱:RavTech,代碼行數:13,代碼來源:ActionMap.java

示例4: read

import com.badlogic.gdx.utils.JsonValue; //導入方法依賴的package包/類
@Override
public void read (Json json, JsonValue jsonData) {
	super.read(json, jsonData);
	vertecies.clear();
	JsonValue next = jsonData.get("vertecies").child;
	while (next != null) {
		// this.overrideVariables.put(next.name, next.asString());
		vertecies.add(new Vector2(next.has("x") ? next.getFloat("x") : 0, next.has("y") ? next.getFloat("y") : 0));
		next = next.next();
	}
	apply();
}
 
開發者ID:Quexten,項目名稱:RavTech,代碼行數:13,代碼來源:PolygonCollider.java


注:本文中的com.badlogic.gdx.utils.JsonValue.next方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。