content/hifi-content/caitlyn/production/wearables/ahillakerHats/wearMe_flowerPot.js
2022-02-13 22:19:19 +01:00

24 lines
No EOL
668 B
JavaScript

(function () {
'use strict';
var main = function () {
var attachment = {
modelURL: "http://mpassets.highfidelity.com/3526d219-d669-4698-bba1-f5e6881f2aee-v1/flowerHat.fbx",
jointName: "HeadTop_End",
translation: {"x": 0, "y": 0.08, "z": 0},
rotation: {"x": 0, "y": 0, "z": 0, "w": 0},
scale: 1.05,
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();
})();