Page 1 of 1

Really need help - coding problem

PostPosted: 24 Aug 2014, 13:17
by biostrike666
Hi, i am a beginer programer.

i am planning to design a game in unity with eyetribe device.
Thus, i studied for some exmaples, such as anglebots, gazecam, and unofficial-eyetribe-unity3d that created by richstoner.

But for me, its is hard to understand at this stage.

So may i ask a question?

I believe that the device will detect our eye location.
So, there may include device.lefteye.position & device.righteye.position.

I want to make the same effect like gazecam. The lefteye texture will move accrording to my left eye move.

Thus, in unity, i planning to wrtie such as...

public GameObject lefteye;

void Update () {

lefteye.transform.position = device.lefteye.position

}

But i do not know and i cannot find the relative coding from http://eyetribe.github.io/tet-csharp-client/#

So may i ask how to write this code or any easier way to write.

I just wanna have the same eff name as gazecam, once my eye move, the texture will move accoring to my eye.


thankyou very much

Re: Really need help - coding problem

PostPosted: 19 Sep 2014, 06:49
by Anders
Hi

The official Unity sample GazeCam contains everything you here ask for. Since this sample is open source you are free to look into the scripts used in that demo.

It seems that you are interested in placing textures based on pupil position. You should take a look at the script associated to the calibration scene for this.

Hope this helps.

BR,
Anders