<?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=9&amp;t=225" />

<title>The Eye Tribe</title>
<subtitle>Developer Forum</subtitle>
<link href="http://theeyetribe.com/forum/index.php" />
<updated>2014-06-09T19:20:45+02:00</updated>

<author><name><![CDATA[The Eye Tribe]]></name></author>
<id>http://theeyetribe.com/forum/feed.php?f=9&amp;t=225</id>
<entry>
<author><name><![CDATA[sirnumbskull]]></name></author>
<updated>2014-06-09T19:20:45+02:00</updated>
<published>2014-06-09T19:20:45+02:00</published>
<id>http://theeyetribe.com/forum/viewtopic.php?t=225&amp;p=978#p978</id>
<link href="http://theeyetribe.com/forum/viewtopic.php?t=225&amp;p=978#p978"/>
<title type="html"><![CDATA[Re: OnGazeUpdate never fires]]></title>

<content type="html" xml:base="http://theeyetribe.com/forum/viewtopic.php?t=225&amp;p=978#p978"><![CDATA[
Nevermind, it looks like, in addition to the .dll, the other files that are produced after a successful build (json, etc.) need to be in the directory with the .dll<p>Statistics: Posted by <a href="http://theeyetribe.com/forum/memberlist.php?mode=viewprofile&amp;u=214">skatasirnumbskull</a> — 09 Jun 2014, 19:20</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[sirnumbskull]]></name></author>
<updated>2014-06-09T18:40:52+02:00</updated>
<published>2014-06-09T18:40:52+02:00</published>
<id>http://theeyetribe.com/forum/viewtopic.php?t=225&amp;p=977#p977</id>
<link href="http://theeyetribe.com/forum/viewtopic.php?t=225&amp;p=977#p977"/>
<title type="html"><![CDATA[Re: OnGazeUpdate never fires]]></title>

<content type="html" xml:base="http://theeyetribe.com/forum/viewtopic.php?t=225&amp;p=977#p977"><![CDATA[
<dl class="codebox"><dt>Code: </dt><dd><code>            if (!GazeManager.Instance.IsActivated)<br />            {<br />                MessageBox.Show(&quot;EyeTribe Server has not been started&quot;);    <br />            }<br /></code></dd></dl><br />If I add the above code, it always says that the eyetribe server hasn't been started, even though I'm staring at the DOS window that says that it has (the eyecontrolclient seems to find the server just fine).  I'm a bit stumped.<p>Statistics: Posted by <a href="http://theeyetribe.com/forum/memberlist.php?mode=viewprofile&amp;u=214">skatasirnumbskull</a> — 09 Jun 2014, 18:40</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[sirnumbskull]]></name></author>
<updated>2014-06-09T18:01:17+02:00</updated>
<published>2014-06-09T18:01:17+02:00</published>
<id>http://theeyetribe.com/forum/viewtopic.php?t=225&amp;p=976#p976</id>
<link href="http://theeyetribe.com/forum/viewtopic.php?t=225&amp;p=976#p976"/>
<title type="html"><![CDATA[[Resolved] OnGazeUpdate never fires]]></title>

<content type="html" xml:base="http://theeyetribe.com/forum/viewtopic.php?t=225&amp;p=976#p976"><![CDATA[
I'm trying to put together a sample application for the tracker, but since the latest update the OnGazeUpdate event never triggers.  Here's the gist of the code:<br /><dl class="codebox"><dt>Code: </dt><dd><code>  public class GazePoint : IGazeListener<br />{<br />    {public GazePoint()<br />        {<br />            adjustment = new Point(0, 0);<br />            // Connect client<br />            GazeManager.Instance.Activate(GazeManager.ApiVersion.VERSION_1_0, GazeManager.ClientMode.Push);<br /><br />            // Register this class for events<br />            GazeManager.Instance.AddGazeListener(this);<br /><br />            pointLog = new Point&#91;1&#93;;<br /><br />        }<br /><br />        Point&#91;&#93; p;<br />        <br />        public void OnGazeUpdate(TETCSharpClient.Data.GazeData gazeData)<br />        {<br />            <br />            if (pointLog.Length &lt; 30)<br />            {<br />                Point&#91;&#93; newPoint = new Point&#91;pointLog.Length + 1&#93;;<br />                for (int i=0;i&lt;pointLog.Length;i++)<br />                {<br />                    newPoint&#91;i + 1&#93; = pointLog&#91;i&#93;;<br />                }<br />                pointLog = newPoint;<br />            }<br /><br />            double gX = gazeData.SmoothedCoordinates.X;<br />            double gY = gazeData.SmoothedCoordinates.Y;<br /></code></dd></dl><br /><br />Any idea as to why it's not picking it up?  I'm currently using the eyecontrolclient to do calibration; does it now require that the host application do it?<p>Statistics: Posted by <a href="http://theeyetribe.com/forum/memberlist.php?mode=viewprofile&amp;u=214">skatasirnumbskull</a> — 09 Jun 2014, 18:01</p><hr />
]]></content>
</entry>
</feed>