Closed borismassesa closed 3 weeks ago
Main (Root node) ├── Camera3D (For viewing the scene) ├── DirectionalLight3D (For lighting) ├── PendulumSystem (Main physics system) │ ├── Pivot (Rotation point) │ │ ├── Arm1 (First pendulum rod) │ │ │ ├── Mass1 (First bob) │ │ │ └── Arm2 (Second pendulum rod) │ │ │ └── Mass2 (Second bob) │ └── Debug (For debugging purposes)
res:// ├── scripts/ │ ├── pendulum_system.gd (Physics and movement logic) │ └── setup_scene.gd (Initial scene setup and configuration) ├── assets/ ├── scenes/ └── tests/
Provide documentation on the folder and file structure of the Godot project, helping team members understand where to add code, assets, and scenes.