2025-10-23 20:58:19 +02:00
|
|
|
import { BaseService } from "./BaseService.js";
|
2025-10-12 18:03:20 +02:00
|
|
|
import { Instance } from "./Instance.js";
|
2025-10-23 20:58:19 +02:00
|
|
|
export class Workspace extends BaseService {
|
2025-10-12 18:03:20 +02:00
|
|
|
constructor() {
|
|
|
|
|
super("Workspace");
|
|
|
|
|
this.InstanceId = "WorkspaceRoot"; // Fixed ID for Workspace (Bad idea to replicate services over network?)
|
|
|
|
|
// Most likely: yes, but we can filter them out in ReplicatorService
|
|
|
|
|
}
|
|
|
|
|
} // Workspace is the root container for all 3D objects in the scene
|