content/hifi-public/ryan/video_gamer.js
Dale Glass 0d14e5a379 Initial data.
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.
2022-02-13 18:59:11 +01:00

29 lines
No EOL
724 B
JavaScript

//would you like to play a game
Agent.isAvatar = true;
Avatar.position = {x: 541, y: 495.2, z: 505 } ;
var clipURL = "atp:1624f203aa0f7aa9ea9647232f338f723f91c88ff4bc5a736d4cad9c7e9edd66.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);