interface Project {
    assetManager: AssetManager;
    assetsDirectory: Path;
    cacheDirectory: Path;
    history: ChangesStream;
    metaInfo: MetaInfo;
    projectDirectory: Path;
    projectFile: Path;
    scene: Scene;
    getTypeName(): string;
    isOfType(type: string): boolean;
    isSame(other: ScriptObject): boolean;
    save(): void;
    saveTo(absoluteFilePath: Path): void;
}

Hierarchy (view full)

Properties

assetManager: AssetManager
assetsDirectory: Path
cacheDirectory: Path
history: ChangesStream
metaInfo: MetaInfo
projectDirectory: Path
projectFile: Path
scene: Scene

Methods

  • Returns void

  • Parameters

    • absoluteFilePath: Path

    Returns void