init commit

This commit is contained in:
usernames122
2025-10-12 18:03:20 +02:00
commit 88d231e367
20 changed files with 2528 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
import { Instance } from "./Instance.js";
export class Workspace extends Instance {
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