content/hifi-content/luis/solidHandsApp/solidhand.js
2022-02-14 02:04:11 +01:00

41 lines
833 B
JavaScript

//
// Created by Luis Cuenca on 1/31/18
// Copyright 2018 High Fidelity, Inc.
//
//
// Distributed under the Apache License, Version 2.0.
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
//
/* jslint bitwise: true */
/* global Script, Overlays, Controller, MyAvatar, QUAT, VEC3, AvatarList, Xform
*/
(function(){
/*
Script.update.connect(function(){
});
Script.scriptEnding.connect(stopFlow);
MyAvatar.skeletonChanged.connect(function(){
});
MyAvatar.scaleChanged.connect(function(){
});
*/
var varsToDebug = {
"getGroupData": function() {
}
};
// Register GlobalDebugger for API Debugger
Script.registerValue("GlobalDebugger", varsToDebug);
}());