<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en-gb">
<link rel="self" type="application/atom+xml" href="http://theeyetribe.com/forum/feed.php?f=15&amp;t=596" />

<title>The Eye Tribe</title>
<subtitle>Developer Forum</subtitle>
<link href="http://theeyetribe.com/forum/index.php" />
<updated>2016-05-26T08:50:09+02:00</updated>

<author><name><![CDATA[The Eye Tribe]]></name></author>
<id>http://theeyetribe.com/forum/feed.php?f=15&amp;t=596</id>
<entry>
<author><name><![CDATA[stephane.bouilland@gmail.com]]></name></author>
<updated>2016-05-26T08:50:09+02:00</updated>
<published>2016-05-26T08:50:09+02:00</published>
<id>http://theeyetribe.com/forum/viewtopic.php?t=596&amp;p=2574#p2574</id>
<link href="http://theeyetribe.com/forum/viewtopic.php?t=596&amp;p=2574#p2574"/>
<title type="html"><![CDATA[Re: Store Data]]></title>

<content type="html" xml:base="http://theeyetribe.com/forum/viewtopic.php?t=596&amp;p=2574#p2574"><![CDATA[
Thanks it works very well, it was all I needed  <img src="http://theeyetribe.com/forum/images/smilies/icon_e_wink.gif" alt=";)" title="Wink" /><p>Statistics: Posted by <a href="http://theeyetribe.com/forum/memberlist.php?mode=viewprofile&amp;u=10137">skatastephane.bouilland@gmail.com</a> — 26 May 2016, 08:50</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[Martin]]></name></author>
<updated>2016-04-11T14:13:27+02:00</updated>
<published>2016-04-11T14:13:27+02:00</published>
<id>http://theeyetribe.com/forum/viewtopic.php?t=596&amp;p=2522#p2522</id>
<link href="http://theeyetribe.com/forum/viewtopic.php?t=596&amp;p=2522#p2522"/>
<title type="html"><![CDATA[Re: Store Data]]></title>

<content type="html" xml:base="http://theeyetribe.com/forum/viewtopic.php?t=596&amp;p=2522#p2522"><![CDATA[
Should be possible with the builtin .Net <a href="https://msdn.microsoft.com/en-us/library/8bh11f1k.aspx" class="postlink">StreamWriter</a> class.<br /><br />Something along the lines of:<br /><br /><dl class="codebox"><dt>Code: </dt><dd><code><br />string saveFilePath = &quot;gazedata.txt&quot;;<br />StreamWriter logWriter;<br /><br />public void OnGazeUpdate(GazeData gazeData) <br />{<br />     if(logWriter == null)<br />     {<br />         logWriter = new StreamWriter(File.Open(saveFilePath, FileMode.Create, FileAccess.Write, FileShare.Read));<br />     }<br /><br />     logWriter.WriteLine(gazeData.SmoothedCoordinates.X + &quot;:&quot; + gazeData.SmoothedCoordinates.Y);<br />     logWriter.Flush();<br />}<br /><br />public void StopAndSave()<br />{<br />    if(logWriter != null)<br />    {<br />        logWriter.Flush();<br />        logWriter.Close();<br />    }<br />}<br /><br /></code></dd></dl><p>Statistics: Posted by <a href="http://theeyetribe.com/forum/memberlist.php?mode=viewprofile&amp;u=117">skataMartin</a> — 11 Apr 2016, 14:13</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[stephane.bouilland@gmail.com]]></name></author>
<updated>2016-04-11T13:25:49+02:00</updated>
<published>2016-04-11T13:25:49+02:00</published>
<id>http://theeyetribe.com/forum/viewtopic.php?t=596&amp;p=2521#p2521</id>
<link href="http://theeyetribe.com/forum/viewtopic.php?t=596&amp;p=2521#p2521"/>
<title type="html"><![CDATA[Store Data]]></title>

<content type="html" xml:base="http://theeyetribe.com/forum/viewtopic.php?t=596&amp;p=2521#p2521"><![CDATA[
Hello, I would like to use the EyeTribe in Unity and I was wondering if it's possible to store the data of the the gaze in file. For example in the game aircraft I would like to know if it's possible to store the data of the gaze position in a tsv, txt or csv format. And if it's possible how can I do this ?<br /><br />Thanks<p>Statistics: Posted by <a href="http://theeyetribe.com/forum/memberlist.php?mode=viewprofile&amp;u=10137">skatastephane.bouilland@gmail.com</a> — 11 Apr 2016, 13:25</p><hr />
]]></content>
</entry>
</feed>