You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
import { BaseNodeEditor } from '../BaseNodeEditor.js';
|
|
|
|
export class MaterialEditor extends BaseNodeEditor {
|
|
|
|
constructor( name, material, width = 300 ) {
|
|
|
|
super( name, material, width );
|
|
|
|
}
|
|
|
|
get material() {
|
|
|
|
return this.value;
|
|
|
|
}
|
|
|
|
}
|