content/hifi-public/ryan/craps_player.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

30 lines
No EOL
735 B
JavaScript

//would you like to play a game
Agent.isAvatar = true;
Avatar.position = {x: 538.465, y: 495.121, z: 510.638 } ;
var clipURL = "atp:383918392d5322f7e171d6f697f450631c746210accf408bdfb4fc66d98028b2.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);