Hello,
I get an error when loading images from Json File
Warning: too many targets in [images_targets.json], only the first one is picked!
UnityEngine.Debug:Log(Object)
EasyAR.EngineNative:Log(String)
EasyAR.EngineNative:ezarImageTarget_load(IntPtr, String, Int32, String)
EasyAR.EngineNative:ImageTarget_load(IntPtr, String, Int32, String)
EasyAR.ImageTarget:Load(String, Int32, String)
Below the content of my json file
{
"images" :
[
{
"image" : "aaa.png",
"name" : "aaa"
},
{
"image" : "bbb.png",
"name" : "bbb"
},
{
"image" : "ccc.PNG",
"name" : "ccc"
}
]
}
Please can you help me.