well its colliding now... smooth movement is now gone though... #31
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: build ubuntu | |
on: | |
push: | |
branches: [ next, master ] | |
pull_request: | |
branches: [ next, master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
- name: install x11-dev | |
run: sudo apt install libsdl2-dev libsdl2-image-dev libsdl2-ttf-dev libz-dev libxml2-dev libopengl-dev | |
- name: install libtmx | |
run: git clone https://github.com/baylej/tmx && cd tmx && mkdir build && cd build && cmake .. && make -j4 && sudo make install | |
- name: Compile | |
run: mkdir build && cd build && cmake .. && make; |