7 lines
No EOL
236 B
JavaScript
7 lines
No EOL
236 B
JavaScript
(function() {
|
|
var hipsIndex = MyAvatar.getJointIndex("Hips");
|
|
var hipsRot = MyAvatar.getJointRotation(hipsIndex);
|
|
Script.update.connect(function() {
|
|
MyAvatar.setJointRotation(hipsIndex, hipsRot);
|
|
});
|
|
}()); |