nodeMaterialBlockGroup.ts 430 B

123456789101112131415161718
  1. import { NodeMaterialBlock } from './nodeMaterialBlock';
  2. /**
  3. * Defines a class that will hold NodeMaterialBlocks
  4. */
  5. export class NodeMaterialBlockGroup {
  6. public blocks: NodeMaterialBlock[] = [];
  7. /**
  8. * Creates a new block group
  9. * @param name defines the name of the group
  10. */
  11. public constructor(
  12. /** Defines the name of the group */
  13. public name: string
  14. ) {
  15. }
  16. }