I am quite new to JSON and I have been having trouble with this data-driven asset manager (not my code). I have been trying to deserialize parameters for my TmxMapLoader object from JSON. It takes the parameters of TmxMapLoader.Parameters type. Here is the Asset.class file that's responsible for deserializing JSON: public class Asset implements Json.Serializable { public Class<?> type; public String path; public AssetLoaderParameters parameters; @Override public void write(Json json) { json.w...