Skip to content

Commit

Permalink
feat: change lod-generation output directory
Browse files Browse the repository at this point in the history
  • Loading branch information
aleortega committed Feb 16, 2024
1 parent f8e77dd commit d216978
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion consumer-server/src/logic/lod-generator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export function createLodGeneratorComponent({ logs }: Pick<AppComponents, 'logs'
const projectRoot = path.resolve(__dirname, '..', '..', '..') // project root according to Dockerfile bundling
const lodGeneratorProgram = path.join(projectRoot, 'api', 'DCL_PiXYZ.exe') // path to the lod generator program
const sceneLodEntitiesManifestBuilder = path.join(projectRoot, 'scene-lod') // path to the scene lod entities manifest builder
const outputPath = path.join(os.tmpdir(), 'built-lods')
const outputPath = path.join(projectRoot, 'built-lods')
const logger = logs.getLogger('lod-generator')

async function generate(basePointer: string): Promise<string[]> {
Expand Down

0 comments on commit d216978

Please sign in to comment.