Skip to content

Commit

Permalink
#32 - Sorting scenograph objects into subfolders
Browse files Browse the repository at this point in the history
  • Loading branch information
paulbrzeski committed Jan 12, 2025
1 parent 5327f55 commit f78882d
Show file tree
Hide file tree
Showing 12 changed files with 15 additions and 13 deletions.
Empty file.
File renamed without changes.
File renamed without changes.
File renamed without changes.
28 changes: 15 additions & 13 deletions client/src/app/scenograph/scenes/overworld.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,18 +13,20 @@ import SceneBase from "@/scenograph/scenes/base";
* Objects
*/

// Scenery
import CargoShips from "@/scenograph/objects/cargo_ships";
import Extractors from "@/scenograph/objects/extractors";
import Ocean from "@/scenograph/objects/ocean";
import Platform from "@/scenograph/objects/platform";
import Refineries from "@/scenograph/objects/refineries";
import Sky from "@/scenograph/objects/sky";
import Sky2 from "@/scenograph/objects/sky2";

// Aircraft
import Raven from "@/scenograph/objects/aircraft/raven";
import Valiant from "@/scenograph/objects/aircraft/valiant";
// Environment
import Ocean from "@/scenograph/objects/environment/ocean";
import Sky from "@/scenograph/objects/environment/sky";
import Sky2 from "@/scenograph/objects/environment/sky2";

// Structures
import Extractors from "@/scenograph/objects/structures/extractors";
import Platform from "@/scenograph/objects/structures/platform";
import Refineries from "@/scenograph/objects/structures/refineries";

// Vehicles
import CargoShips from "@/scenograph/objects/vehicles/cargo_ships";
import Raven from "@/scenograph/objects/vehicles/raven";
import Valiant from "@/scenograph/objects/vehicles/valiant";

/**
* Preloader objects
Expand All @@ -34,7 +36,7 @@ import {
createOfficeRoom,
doorHeight,
doorWidth,
} from "@/scenograph/objects/office_room";
} from "@/scenograph/objects/structures/office_room";

/**
* Scene controllers
Expand Down

0 comments on commit f78882d

Please sign in to comment.