meisei4 / samuel-beckett

godot learning
0 stars 0 forks source link

godot investigation project

Godot using the CLI: https://docs.godotengine.org/en/stable/tutorials/editor/command_line_tutorial.html

Setup

  1. Generate Assets
    Run the following command to generate circle.png and background.png assets (or just any GDScript:

    godot --headless -s generate_assets.gd
  2. Import Assets
    After generating, import the assets and set up all the meta-data that godot needs to run:

    godot --headless --import
  3. Run the Main Scene
    Start the main scene by running:

    godot

Requirements