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.
25 lines
No EOL
664 B
JavaScript
25 lines
No EOL
664 B
JavaScript
|
|
Agent.isAvatar = true;
|
|
|
|
var clipURL = "atp:1c7d6123b3ad7fa75809a5493af0ad2a5a184cb7993a774862aac754f9a4fbf9.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); |