1. Processing 解壓縮並執行
2. 安裝 Leap Motion Controller

3. 執行 Leap Motion 程式,使用新手教學


4. Sketch-ImportLibrary 尋找 Leap Motion for Processing

5. 安裝好後,File-Examples,ImportLibrary

6. 找 Leap Motion 的 e1-basic 範例

7. 撰寫第一個與 basic 相似的 leap 程式
import de.voidplus.leapmotion.*;
LeapMotion leap;
void setup(){
size(800,600);
leap = new LeapMotion(this);
}
void draw(){
background(255);
for (Hand hand : leap.getHands()){
hand.draw();
}
}

8.期中作品想要做我一直很喜歡玩的一款經典遊戲,不論是從以前的 PS2 到現在的手機APP遊戲都有的飛機射擊遊戲!
沒有留言:
張貼留言