|
30 | 30 |
|
31 | 31 | // EDITOR |
32 | 32 | .editor = .{ .path = "modules/editor/editor", .lazy = true }, |
33 | | - .editor_asset = .{ .path = "modules/editor/asset", .lazy = true }, |
| 33 | + .editor_tabs = .{ .path = "modules/editor/tabs", .lazy = true }, |
| 34 | + .editor_assetdb = .{ .path = "modules/editor/assetdb", .lazy = true }, |
34 | 35 | .editor_asset_browser = .{ .path = "modules/editor/asset_browser", .lazy = true }, |
35 | 36 | .editor_explorer = .{ .path = "modules/editor/explorer", .lazy = true }, |
36 | 37 | .editor_fixtures = .{ .path = "modules/editor/fixtures", .lazy = true }, |
37 | 38 | .editor_inspector = .{ .path = "modules/editor/inspector", .lazy = true }, |
38 | 39 | .editor_obj_buffer = .{ .path = "modules/editor/obj_buffer", .lazy = true }, |
39 | | - .editor_tags = .{ .path = "modules/editor/tags", .lazy = true }, |
40 | 40 | .editor_tree = .{ .path = "modules/editor/tree", .lazy = true }, |
41 | 41 | .editor_log = .{ .path = "modules/editor/log", .lazy = true }, |
42 | 42 | .editor_graph = .{ .path = "modules/editor/graph", .lazy = true }, |
|
54 | 54 |
|
55 | 55 | // PHYSICS |
56 | 56 | .physics = .{ .path = "modules/physics/physics", .lazy = true }, |
| 57 | + .physics_jolt = .{ .path = "modules/physics/physics_jolt", .lazy = true }, |
57 | 58 |
|
58 | 59 | // INPUT |
59 | 60 | .actions = .{ .path = "modules/input/actions", .lazy = true }, |
60 | 61 |
|
61 | 62 | // SCRIPTING |
62 | 63 | .graphvm = .{ .path = "modules/scripting/graphvm", .lazy = true }, |
63 | | - .graphvm_logic_component = .{ .path = "modules/scripting/graphvm_logic_component", .lazy = true }, |
64 | | - .native_logic_component = .{ .path = "modules/scripting/native_logic_component", .lazy = true }, |
| 64 | + .graphvm_script_component = .{ .path = "modules/scripting/graphvm_script_component", .lazy = true }, |
| 65 | + .native_script_component = .{ .path = "modules/scripting/native_script_component", .lazy = true }, |
| 66 | + .renderer_nodes = .{ .path = "modules/scripting/renderer_nodes", .lazy = true }, |
| 67 | + |
| 68 | + // TRANSFORM |
| 69 | + .transform = .{ .path = "modules/transform", .lazy = true }, |
| 70 | + |
| 71 | + // CAMERA |
| 72 | + .camera = .{ .path = "modules/camera/camera", .lazy = true }, |
| 73 | + .camera_controller = .{ .path = "modules/camera/camera_controller", .lazy = true }, |
65 | 74 |
|
66 | 75 | // RENDERING |
67 | | - .default_render_pipeline = .{ .path = "modules/rendering/default_render_pipeline", .lazy = true }, |
68 | 76 | .render_pipeline = .{ .path = "modules/rendering/render_pipeline", .lazy = true }, |
69 | 77 | .render_viewport = .{ .path = "modules/rendering/render_viewport", .lazy = true }, |
70 | 78 | .render_graph = .{ .path = "modules/rendering/render_graph", .lazy = true }, |
71 | 79 | .shader_system = .{ .path = "modules/rendering/shader_system", .lazy = true }, |
72 | | - .transform = .{ .path = "modules/rendering/transform", .lazy = true }, |
73 | | - .camera = .{ .path = "modules/rendering/camera", .lazy = true }, |
74 | | - .camera_controller = .{ .path = "modules/rendering/camera_controller", .lazy = true }, |
75 | | - .render_component = .{ .path = "modules/rendering/render_component", .lazy = true }, |
76 | | - .vertex_system = .{ .path = "modules/rendering/vertex_system", .lazy = true }, |
77 | | - .instance_system = .{ .path = "modules/rendering/instance_system", .lazy = true }, |
78 | | - .renderer_nodes = .{ .path = "modules/rendering/renderer_nodes", .lazy = true }, |
79 | 80 | .visibility_flags = .{ .path = "modules/rendering/visibility_flags", .lazy = true }, |
80 | | - .light_component = .{ .path = "modules/rendering/light_component", .lazy = true }, |
81 | | - .light_system = .{ .path = "modules/rendering/light_system", .lazy = true }, |
82 | 81 | .gpu_bgfx = .{ .path = "modules/rendering/gpu_bgfx", .lazy = true }, |
83 | 82 |
|
| 83 | + // RENDERING PIPELINE |
| 84 | + .default_render_pipeline = .{ .path = "modules/render_pipeline/default_render_pipeline", .lazy = true }, |
| 85 | + .light_system = .{ .path = "modules/render_pipeline/light_system", .lazy = true }, |
| 86 | + .bloom = .{ .path = "modules/render_pipeline/bloom", .lazy = true }, |
| 87 | + .tonemap = .{ .path = "modules/render_pipeline/tonemap", .lazy = true }, |
| 88 | + .light_component = .{ .path = "modules/render_pipeline/light_component", .lazy = true }, |
| 89 | + .vertex_system = .{ .path = "modules/render_pipeline/vertex_system", .lazy = true }, |
| 90 | + .instance_system = .{ .path = "modules/render_pipeline/instance_system", .lazy = true }, |
| 91 | + .render_component = .{ .path = "modules/render_pipeline/render_component", .lazy = true }, |
| 92 | + |
84 | 93 | // Examples |
85 | 94 | .foo = .{ .path = "modules/examples/foo", .lazy = true }, |
86 | 95 | .editor_foo_tab = .{ .path = "modules/examples/editor_foo_tab", .lazy = true }, |
|
0 commit comments