We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 89e14d0 commit 44b0953Copy full SHA for 44b0953
1 file changed
scripts/init-project.ts
@@ -1,3 +1,4 @@
1
+import { Entity } from "@dreamlab/engine";
2
import * as cli from "jsr:@std/cli";
3
import * as fs from "jsr:@std/fs";
4
import * as path from "jsr:@std/path";
@@ -8,7 +9,20 @@ const projectTemplate = {
8
9
engine_revision: "2024-08.001",
10
},
11
scenes: {
- main: {},
12
+ main: {
13
+ registration: [],
14
+ world: [],
15
+ local: [
16
+ {
17
+ ref: Entity.createRef(),
18
+ type: "@core/Camera",
19
+ name: "Camera",
20
+ values: { active: true },
21
+ },
22
+ ],
23
+ server: [],
24
+ prefabs: [],
25
26
27
};
28
0 commit comments