浏览代码

cleanup

/coco_export
Mohsen Kamalzadeh 3 年前
当前提交
2eb8f36b
共有 1 个文件被更改,包括 1 次插入11 次删除
  1. 12
      com.unity.perception/Runtime/GroundTruth/SimulationState.cs

12
com.unity.perception/Runtime/GroundTruth/SimulationState.cs


}
}
List<object> values2 = null;
if (values != null)
{
values2 = new List<object>();
foreach (var v in values)
{
values2.Add(v);
}
}
ReportAsyncAnnotationResult(asyncAnnotation, filename, jArray, values:values2);
ReportAsyncAnnotationResult(asyncAnnotation, filename, jArray, values?.Cast<object>().ToList() ?? null);
}
void ReportAsyncAnnotationResult(AsyncAnnotation asyncAnnotation, string filename, JArray jArray, IEnumerable<object> values = null)

正在加载...
取消
保存