mirror of
https://github.com/overte-org/overte.git
synced 2025-04-25 14:13:47 +02:00
45 lines
No EOL
1.3 KiB
JavaScript
45 lines
No EOL
1.3 KiB
JavaScript
// createWand.js
|
|
// part of bubblewand
|
|
//
|
|
// Script Type: Entity Spawner
|
|
// Created by James B. Pollack @imgntn -- 09/03/2015
|
|
// Copyright 2015 High Fidelity, Inc.
|
|
//
|
|
// Loads a wand model and attaches the bubble wand behavior.
|
|
// Distributed under the Apache License, Version 2.0.
|
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
|
|
|
|
|
|
|
Script.include("../../utilities.js");
|
|
Script.include("../../libraries/utils.js");
|
|
|
|
|
|
var WAND_MODEL = 'http://hifi-public.s3.amazonaws.com/james/bubblewand/models/wand/wand.fbx';
|
|
var WAND_COLLISION_SHAPE = 'http://hifi-public.s3.amazonaws.com/james/bubblewand/models/wand/collisionHull.obj';
|
|
var WAND_SCRIPT_URL = Script.resolvePath("wand.js?"+randInt(0,4000));
|
|
//create the wand in front of the avatar
|
|
var center = Vec3.sum(MyAvatar.position, Vec3.multiply(1, Quat.getFront(Camera.getOrientation())));
|
|
|
|
|
|
|
|
var wand = Entities.addEntity({
|
|
type: "Model",
|
|
modelURL: WAND_MODEL,
|
|
position: center,
|
|
dimensions: {
|
|
x: 0.05,
|
|
y: 0.5,
|
|
z: 0.05
|
|
},
|
|
//must be enabled to be grabbable in the physics engine
|
|
collisionsWillMove: true,
|
|
compoundShapeURL: WAND_COLLISION_SHAPE,
|
|
script: WAND_SCRIPT_URL
|
|
});
|
|
function cleanup() {
|
|
Entities.deleteEntity(wand);
|
|
}
|
|
|
|
|
|
Script.scriptEnding.connect(cleanup); |