Skip to content

realdream-ai/gdspx

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

godot for spx

Quick start

Prerequisite Environment Setup

  • Install Go (version >= 1.22.3)
  • Install Python (version >= 3.8)
  • Add the Go environment's bin directory to the system PATH.
    export PATH=$PATH:$GOPATH/bin

install and run demo

    git clone git@github.com:realdream-ai/gdspx.git
    cd gdspx/cmd/gdspx/
    go install .
    cd ../../
    gdspx run tutorial/01_aircraft

how to use

Usage:

gdspx <command> [path]      

The commands are:

- help            # Show help info
- init            # Create a gdspx project in the current directory
- run             # Run the current project
- editor          # Open the current project in editor mode
- build           # Build the dynamic library
- export          # Export the PC package (macOS, Windows, Linux) (TODO)
- buildweb        # Build for WebAssembly (WASM)
- exportweb       # Export the web package

eg:

gdspx init                      # create a project in current path
gdspx init ./test/demo01        # create a project at path ./test/demo01