How I can parse JSON data with a standard rountines in UE4? Take me please a sample

As of 4.6.X you need to include the JSON modules for it to work properly.

PublicDependencyModuleNames.AddRange(new string[] { “Json”, “JsonUtilities” });

This goes in your GameProject.Build.cs file.

1 Like