mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01:00
This is a slightly hacky way to make ScriptManager work without any networking, and minimize the number of dependencies needed to run a test.
23 lines
523 B
JavaScript
23 lines
523 B
JavaScript
"use strict";
|
|
|
|
function functionInInclude() {
|
|
print("Function in include");
|
|
functionInMainFile();
|
|
}
|
|
|
|
var TestObject = function(shouldUseEditTabletApp) {
|
|
var requireTest = Script.require("http://oaktown.pl/scripts/004b_require_module.js");
|
|
|
|
var onEvent = function(data) {
|
|
that.thatFunction();
|
|
}
|
|
var that = {};
|
|
that.thatFunction = function() {
|
|
functionInMainFile();
|
|
}
|
|
Script.update.connect(onEvent);
|
|
}
|
|
|
|
functionInMainFile();
|
|
|
|
//Script.setInterval(functionInInclude, 1000);
|