1234567891011121314151617 |
- import { BaseNodeEditor } from '../BaseNodeEditor.js';
- export class MaterialEditor extends BaseNodeEditor {
- constructor( name, material, width = 300 ) {
- super( name, material, width );
- }
- get material() {
- return this.value;
- }
- }
|