}
JsonValue jsonValue;
try {
jsonValue = new JsonNumber(Integer.parseInt(value));
} catch (Exception e) {
jsonValue = new JsonString(value);
}
obj.set(path[path.length-1], jsonValue);
writeSceneJson(file, desc);
System.out.println("Updated scene " + file.getAbsolutePath());
} catch (SyntaxError e) {