Needs a lot of cleanup. Data has been de-duplicated, and where identical copies existed, one of them has been replaced with a symlink. Some files have been excluded, such as binaries, installers and debug dumps. Some of that may still be present.
35 lines
1 KiB
JavaScript
35 lines
1 KiB
JavaScript
function findSurfaceBelowPosition(pos) {
|
|
var result = Entities.findRayIntersection({
|
|
origin: pos,
|
|
direction: { x: 0, y: -1, z: 0 }
|
|
});
|
|
if (result.intersects) {
|
|
return result.intersection;
|
|
}
|
|
return pos;
|
|
}
|
|
LAUNCHER_DIMENSIONS = {
|
|
x: 0.5,
|
|
y: 0.5,
|
|
z: 0.5
|
|
}
|
|
|
|
createLauncherAtMyAvatar = function() {
|
|
var launcherPos = Vec3.sum(MyAvatar.position, Vec3.multiply(10, Quat.getFront(MyAvatar.orientation)));
|
|
launcherPos = findSurfaceBelowPosition(launcherPos);
|
|
launcherPos.y += LAUNCHER_DIMENSIONS.y / 2;
|
|
createLaucnher(launcherPos);
|
|
}
|
|
|
|
createLauncher = function(position) {
|
|
Entities.addEntity({
|
|
position: position,
|
|
type: "Model",
|
|
type: "Box",
|
|
//modelURL: 'http://hifi-content.s3.amazonaws.com/alan/dev/EZ-Tube.fbx',
|
|
//compoundShapeURL: 'http://hifi-content.s3.amazonaws.com/alan/dev/EZ-Tube3.obj',
|
|
//shapeType: 'compound'
|
|
dimensions: LAUNCHER_DIMENSIONS,
|
|
script: Script.resolvePath("launch.js")
|
|
});
|
|
}
|