I have this Lua file which contains the following code:
options = {
["VR"] = {
["box_mouse_cursor"] = false,
["custom_IPD"] = 63.5,
["custom_IPD_enable"] = true,
["enable"] = false,
["hand_controllers"] = false,
["pixel_density"] = 2,
["prefer_built_in_audio"] = true,
["use_mouse"] = true,
}
}
I am trying to find an assembly that will parse this into something usable by my .Net Framework 4.5.1 C# project. LuaInterface is .NET standard 2.0 project which can't be used in .Net Framework 4.5.1, so that's off the table.
Are there any tools available that can parse this information, and hopefully serialize it back again?