Skip to content

Commit

Permalink
Merge pull request #49 from Derya/patch-2
Browse files Browse the repository at this point in the history
fix #45
  • Loading branch information
mkassner authored Jul 3, 2018
2 parents 24307b3 + cc02c62 commit af2ecb4
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
using System.Collections.Generic;
using System.IO;
using System.Diagnostics;
using UnityEngine;
using UnityEngine;


public class PupilTools : MonoBehaviour
{
Expand Down Expand Up @@ -229,7 +230,7 @@ public static Vector3 VectorFromDictionary(Dictionary<string,object> source, str
public static float FloatFromDictionary(Dictionary<string,object> source, string key)
{
object value_o;
source.TryGetValue ("confidence", out value_o);
source.TryGetValue (key, out value_o);
return (float)(double)value_o;
}
private static object IDo;
Expand Down

0 comments on commit af2ecb4

Please sign in to comment.