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.
30 lines
No EOL
735 B
JavaScript
30 lines
No EOL
735 B
JavaScript
//would you like to play a game
|
|
|
|
Agent.isAvatar = true;
|
|
Avatar.position = {x: 544.272, y: 494.915, z: 502.951 } ;
|
|
|
|
|
|
|
|
|
|
var clipURL = "atp:60c63aa500ecf929f7e97cbde304b648ac6952b103e86283ab5d8e50de7da3b9.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);
|