spawn projectiles at firing pt marker instead of character centroid #78
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: GDExtension CMake | |
on: [push, pull_request] | |
jobs: | |
# build-windows: | |
# runs-on: windows-latest | |
# steps: | |
# - uses: actions/setup-python@v2 | |
# with: | |
# python-version: "3.x" | |
# architecture: "x64" | |
# - uses: ilammy/msvc-dev-cmd@v1 | |
# - name: build-windows-latest | |
# run: pip3 install --user scons | |
build-linux: | |
runs-on: self-hosted | |
steps: | |
- uses: actions/checkout@v3 | |
#- name: Install dependencies | |
# run: pip install --user scons | |
- name: cmake - delete cache (linux | debug | gcc) | |
run: rm -rf ${{ github.workspace }}/.out/* | |
- name: cmake - configure (linux | debug | gcc) | |
run: > | |
cmake -B ${{ github.workspace }}/.out | |
-DCMAKE_CXX_COMPILER=g++ | |
-DCMAKE_C_COMPILER=gcc | |
-DCMAKE_BUILD_TYPE=Debug | |
-S ${{ github.workspace }} | |
-G Ninja | |
- name: rebuild - clean (linux) | |
run: cmake --build ${{ github.workspace }}/.out --config Debug --target clean --parallel 48 | |
- name: rebuild - build (linux) | |
run: cmake --build ${{ github.workspace }}/.out --config Debug --target roguelite --parallel 48 |