Interface Model

interface Model {
    clearAllParts(): void;
    getPart(partName: string): Render.ModelPart;
    hasPart(partName: string): boolean;
    reset(): void;
}

Methods

  • Clears all parts of the model.

    Returns void

  • Parameters

    • partName: string

      part name

    Returns boolean

    true if part with specified name exists in the model, false otherwise.

Copyright © 2024 Nernar. Copyright © 2020 #mineprogramming. Built with ❤ and TypeDoc.