borismassesa / double_pendulum-simulation

0 stars 1 forks source link

Document Project Structure #6

Closed borismassesa closed 3 weeks ago

borismassesa commented 4 weeks ago

Provide documentation on the folder and file structure of the Godot project, helping team members understand where to add code, assets, and scenes.

Marwa-Alsalameh commented 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/