24 lines
No EOL
670 B
JavaScript
24 lines
No EOL
670 B
JavaScript
|
|
(function () {
|
|
'use strict';
|
|
var main = function () {
|
|
var attachment = {
|
|
modelURL: "http://mpassets.highfidelity.com/22571aa2-d88c-46b6-9d1c-c21cdc5d3047-v1/tvhat.fbx",
|
|
jointName: "HeadTop_End",
|
|
translation: {"x": 0, "y": -0.08, "z": -0.03},
|
|
rotation: {"x": 0 , "y": 0, "z": 0, "w": 0},
|
|
scale: 1.10,
|
|
isSoft: false
|
|
};
|
|
|
|
Window.alert("Wearing item as an attachment.\nTo remove or make adjustments, please use Avatar > Attachment.");
|
|
|
|
MyAvatar.attach(attachment.modelURL,
|
|
attachment.jointName,
|
|
attachment.translation,
|
|
attachment.rotation,
|
|
attachment.scale,
|
|
attachment.isSoft);
|
|
};
|
|
main();
|
|
})(); |