From 4048627de7c36ffa76e2a89a55a9e1a1d35b77cc Mon Sep 17 00:00:00 2001 From: Kai Ludwig Date: Tue, 17 Feb 2015 18:50:20 +0100 Subject: [PATCH] 2n try: removed "Script.scriptEnding.connect(scriptEnding);" from lookWithMouse.js, because the function scriptEnding it is no longer available in that script. --- examples/lookWithMouse.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/examples/lookWithMouse.js b/examples/lookWithMouse.js index 41d7a29bd9..470a56bd63 100644 --- a/examples/lookWithMouse.js +++ b/examples/lookWithMouse.js @@ -84,4 +84,5 @@ MyAvatar.bodyYaw = 0; MyAvatar.bodyPitch = 0; MyAvatar.bodyRoll = 0; -Script.scriptEnding.connect(scriptEnding); +// would be nice to change to update +Script.update.connect(update);