22 lines
No EOL
488 B
JavaScript
22 lines
No EOL
488 B
JavaScript
//
|
|
// cloneScriptTest.js
|
|
// A test script to see if preload gets called on clones with scripts
|
|
//
|
|
// Author: Elisa Lupin-Jimenez
|
|
// Copyright High Fidelity 2018
|
|
//
|
|
// Licensed under the Apache 2.0 License
|
|
// See accompanying license file or http://apache.org/
|
|
//
|
|
// All assets are under CC Attribution Non-Commerical
|
|
// http://creativecommons.org/licenses/
|
|
//
|
|
|
|
(function() {
|
|
|
|
this.preload = function(entityID) {
|
|
print("EntityID of clone is: " + entityID);
|
|
}
|
|
|
|
|
|
}); |