mirror of
https://github.com/JannisX11/blockbench.git
synced 2024-11-21 01:13:37 +08:00
121 lines
3.2 KiB
JavaScript
121 lines
3.2 KiB
JavaScript
|
|
class NullObject extends OutlinerElement {
|
|
constructor(data, uuid) {
|
|
super(data, uuid);
|
|
this.ik_enabled = false;
|
|
this.ik_chain_length = 0;
|
|
|
|
for (var key in NullObject.properties) {
|
|
NullObject.properties[key].reset(this);
|
|
}
|
|
|
|
if (data) {
|
|
this.extend(data);
|
|
}
|
|
}
|
|
extend(object) {
|
|
for (var key in NullObject.properties) {
|
|
NullObject.properties[key].merge(this, object)
|
|
}
|
|
this.sanitizeName();
|
|
Merge.boolean(this, object, 'locked')
|
|
//Merge.boolean(this, object, 'export');
|
|
return this;
|
|
}
|
|
getUndoCopy() {
|
|
var copy = new NullObject(this)
|
|
copy.uuid = this.uuid
|
|
copy.type = this.type;
|
|
delete copy.parent;
|
|
return copy;
|
|
}
|
|
getSaveCopy() {
|
|
let save = {};
|
|
for (var key in NullObject.properties) {
|
|
NullObject.properties[key].copy(this, save)
|
|
}
|
|
//save.export = this.export ? undefined : false;
|
|
save.locked = this.locked;
|
|
save.uuid = this.uuid;
|
|
save.type = 'null_object';
|
|
return save;
|
|
}
|
|
init() {
|
|
if (this.parent instanceof Group == false) {
|
|
this.addTo(Group.selected)
|
|
}
|
|
super.init();
|
|
return this;
|
|
}
|
|
flip(axis, center) {
|
|
var offset = this.from[axis] - center
|
|
this.from[axis] = center - offset;
|
|
// Name
|
|
if (axis == 0 && this.name.includes('right')) {
|
|
this.name = this.name.replace(/right/g, 'left').replace(/2$/, '');
|
|
} else if (axis == 0 && this.name.includes('left')) {
|
|
this.name = this.name.replace(/left/g, 'right').replace(/2$/, '');
|
|
}
|
|
this.createUniqueName();
|
|
return this;
|
|
}
|
|
getWorldCenter() {
|
|
var pos = new THREE.Vector3();
|
|
var q = new THREE.Quaternion();
|
|
if (this.parent instanceof Group) {
|
|
THREE.fastWorldPosition(this.parent.mesh, pos);
|
|
this.parent.mesh.getWorldQuaternion(q);
|
|
var offset2 = new THREE.Vector3().fromArray(this.parent.origin).applyQuaternion(q);
|
|
pos.sub(offset2);
|
|
}
|
|
var offset = new THREE.Vector3().fromArray(this.from).applyQuaternion(q);
|
|
pos.add(offset);
|
|
|
|
return pos;
|
|
}
|
|
}
|
|
NullObject.prototype.title = tl('data.null_object');
|
|
NullObject.prototype.type = 'null_object';
|
|
NullObject.prototype.icon = 'fa far fa-circle';
|
|
//NullObject.prototype.name_regex = 'a-z0-9_'
|
|
NullObject.prototype.movable = true;
|
|
NullObject.prototype.visibility = true;
|
|
NullObject.prototype.buttons = [
|
|
//Outliner.buttons.export,
|
|
Outliner.buttons.locked,
|
|
];
|
|
//NullObject.prototype.needsUniqueName = true;
|
|
NullObject.prototype.menu = new Menu([
|
|
'copy',
|
|
'rename',
|
|
'delete'
|
|
])
|
|
NullObject.selected = [];
|
|
NullObject.all = [];
|
|
|
|
new Property(NullObject, 'string', 'name', {default: 'null_object'})
|
|
new Property(NullObject, 'vector', 'from')
|
|
new Property(NullObject, 'boolean', 'ik_enabled', {condition: () => Format.animation_mode});
|
|
new Property(NullObject, 'number', 'ik_chain_length', {condition: () => Format.animation_mode});
|
|
|
|
BARS.defineActions(function() {
|
|
new Action('add_null_object', {
|
|
icon: 'far.fa-circle',
|
|
category: 'edit',
|
|
condition: () => Format.animation_mode,
|
|
click: function () {
|
|
var objs = []
|
|
Undo.initEdit({elements: objs, outliner: true});
|
|
var null_object = new NullObject().addTo(Group.selected||selected[0]).init();
|
|
null_object.select();
|
|
objs.push(null_object);
|
|
Undo.finishEdit('add null_object');
|
|
Vue.nextTick(function() {
|
|
if (settings.create_rename.value) {
|
|
null_object.rename();
|
|
}
|
|
})
|
|
}
|
|
})
|
|
})
|