mirror of
https://github.com/game-ci/unity-builder.git
synced 2025-07-07 20:35:33 -04:00
24 lines
444 B
JavaScript
24 lines
444 B
JavaScript
import Input from './input';
|
|
import Unity from './unity';
|
|
import Action from './action';
|
|
|
|
class Project {
|
|
static get relativePath() {
|
|
const { projectPath } = Input;
|
|
|
|
return `${projectPath}`;
|
|
}
|
|
|
|
static get absolutePath() {
|
|
const { workspace } = Action;
|
|
|
|
return `${workspace}/${this.relativePath}`;
|
|
}
|
|
|
|
static get libraryFolder() {
|
|
return `${this.relativePath}/${Unity.libraryFolder}`;
|
|
}
|
|
}
|
|
|
|
export default Project;
|