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.
21 lines
No EOL
593 B
JavaScript
21 lines
No EOL
593 B
JavaScript
var rotation = Quat.safeEulerAngles(Camera.getOrientation());
|
|
rotation = Quat.fromPitchYawRollDegrees(0, rotation.y, 0);
|
|
var center = Vec3.sum(MyAvatar.position, Vec3.multiply(6, Quat.getFront(rotation)));
|
|
|
|
var recordAreaEntity = Entities.addEntity({
|
|
name: 'recorderEntity',
|
|
dimensions: {
|
|
x: 10,
|
|
y: 10,
|
|
z: 10
|
|
},
|
|
type: 'Box',
|
|
position: center,
|
|
color: {
|
|
red: 255,
|
|
green: 255,
|
|
blue: 255
|
|
},
|
|
visible: true,
|
|
script: "https://hifi-public.s3.amazonaws.com/sam/record/recordingEntityScript.js",
|
|
}); |