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.
31 lines
No EOL
803 B
JavaScript
31 lines
No EOL
803 B
JavaScript
//would you like to play a game
|
|
|
|
Agent.isAvatar = true;
|
|
// Avatar.position = {x: 551.673, y: 495.047, z: 502.903 } ;
|
|
//Avatar.orientation = { x: 0, y: 0.656725, z: 0, w: 0.75413 } ;
|
|
|
|
|
|
|
|
|
|
var clipURL = "atp:1c8cf4f8aad18bc57ed6a1146681817056debb0b03d0fd07def8e178c8814ec7.hfr";
|
|
|
|
var playFromCurrentLocation = true;
|
|
var useDisplayName = true;
|
|
var useAttachments = true;
|
|
var useAvatarModel = true;
|
|
|
|
Recording.setPlayFromCurrentLocation(playFromCurrentLocation);
|
|
Recording.setPlayerUseDisplayName(useDisplayName);
|
|
Recording.setPlayerUseAttachments(useAttachments);
|
|
Recording.setPlayerUseHeadModel(false);
|
|
Recording.setPlayerUseSkeletonModel(true);
|
|
|
|
|
|
Recording.setPlayerLoop(true);
|
|
Recording.loadRecording(clipURL);
|
|
Recording.startPlaying();
|
|
|
|
function update(deltaTime) {
|
|
}
|
|
|
|
Script.update.connect(update);
|