From dad97cd52ea324f9d42b6df3de6028737962575d Mon Sep 17 00:00:00 2001 From: ZappoMan Date: Sun, 23 Feb 2014 18:54:15 -0800 Subject: [PATCH] removed accidental code --- examples/hifi-interface-tools.svg | 177 ------------------------------ examples/touchVsMouse.js | 36 ------ 2 files changed, 213 deletions(-) delete mode 100644 examples/hifi-interface-tools.svg delete mode 100644 examples/touchVsMouse.js diff --git a/examples/hifi-interface-tools.svg b/examples/hifi-interface-tools.svg deleted file mode 100644 index 311514581f..0000000000 --- a/examples/hifi-interface-tools.svg +++ /dev/null @@ -1,177 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/examples/touchVsMouse.js b/examples/touchVsMouse.js deleted file mode 100644 index c5007e076b..0000000000 --- a/examples/touchVsMouse.js +++ /dev/null @@ -1,36 +0,0 @@ -// -// toucheVsMouse.js -// hifi -// -// Created by Brad Hefta-Gaub on 1/28/14. -// Copyright (c) 2014 HighFidelity, Inc. All rights reserved. -// -// This is an example script that demonstrates use of the Controller class -// -// - -function touchBeginEvent(event) { - print("touchBeginEvent event.x,y=" + event.x + ", " + event.y); -} - -function touchEndEvent(event) { - print("touchEndEvent event.x,y=" + event.x + ", " + event.y); -} - -function touchUpdateEvent(event) { - print("touchUpdateEvent event.x,y=" + event.x + ", " + event.y); -} -function mouseMoveEvent(event) { - print("mouseMoveEvent event.x,y=" + event.x + ", " + event.y); -} - -// Map the mouse events to our functions -Controller.touchBeginEvent.connect(touchBeginEvent); -Controller.touchUpdateEvent.connect(touchUpdateEvent); -Controller.touchEndEvent.connect(touchEndEvent); - -Controller.mouseMoveEvent.connect(mouseMoveEvent); - -function scriptEnding() { -} -Script.scriptEnding.connect(scriptEnding);