content/hifi-content/rebecca/Mexico/tequilaServer.js
2022-02-14 02:04:11 +01:00

73 lines
2.3 KiB
JavaScript

//
// tequilaServer.js
//
// Author: Liv Erickson
// Copyright High Fidelity 2018
//
// Licensed under the Apache 2.0 License
// See accompanying license file or http://apache.org/
//
/* globals Entities */
(function() {
var PIECE_MODEL = Script.resolvePath("models/shot-glass-fragment.fbx");
var NUMBER_PIECES = 3;
var NEW_LIFETIME = 10;
var pieces = Array();
var _entityID;
var Glass = function() {
};
Glass.prototype = {
remotelyCallable: ['breakGlass'],
preload: function(entityID) {
_entityID = entityID;
for (var i = 0; i < NUMBER_PIECES; i++) {
pieces.push(Entities.addEntity({
type: "Model",
name: "Glass Piece",
modelURL: PIECE_MODEL,
visible: false,
parentID: entityID,
collidesWith: "",
collisionMask: 0,
shapeType: "None",
grabbable: false,
lifetime: 10
}));
}
},
breakGlass: function() {
var velocity = Entities.getEntityProperties(_entityID, 'velocity').velocity;
pieces.forEach(function(element) {
var age = Entities.getEntityProperties(element, "age").age;
Entities.editEntity(element, {
visible: true,
dynamic: true,
gravity: {x: 0, y: -5, z: 0},
acceleration: {x: 1, y: -5, z: 2},
parentID: "{00000000-0000-0000-0000-000000000000}",
dimensions: {
"x": 0.06498056650161743,
"y": 0.06805062294006348,
"z": 0.060177650302648544
},
lifetime: age + NEW_LIFETIME,
collidesWith: "static,dynamic,",
collisionMask: 3,
shapeType: "Box",
velocity: velocity,
grabbable: false
});
});
Entities.deleteEntity(_entityID);
}
};
return new Glass();
});