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:033c7c671e4dd03e8785e7aeeb9268a2d0d4aac5d094276b762800596b5ba264.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);
|