-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of https://github.com/BoomingTech/Piccolo
- Loading branch information
Showing
280 changed files
with
12,634 additions
and
691 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
.job_rules_template: &job_rules | ||
stage: build | ||
rules: | ||
- if: '$CI_PIPELINE_SOURCE == "merge_request_event" | ||
&& $CI_MERGE_REQUEST_TARGET_BRANCH_NAME == "main"' | ||
- if: '$CI_PIPELINE_SOURCE == "merge_request_event" | ||
&& $CI_MERGE_REQUEST_TARGET_BRANCH_NAME == "upstream"' | ||
|
||
build_in_mac: | ||
tags: | ||
- mac | ||
- shell | ||
<<: *job_rules | ||
script: | ||
- ./build_macos.sh release | ||
|
||
build_in_ubuntu: | ||
image: cmake:3.23 # you can build it with Dockerfile offered in this project | ||
tags: | ||
- ubuntu | ||
- docker | ||
<<: *job_rules | ||
script: | ||
- ./build_linux.sh release | ||
|
||
build_in_windows: | ||
tags: | ||
- windows | ||
- shell | ||
<<: *job_rules | ||
script: | ||
- ./build_windows.bat | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
FROM ubuntu:20.04 | ||
RUN apt update | ||
RUN DEBIAN_FRONTEND=noninteractive TZ=Asia/Shanghai apt install -y \ | ||
libxrandr-dev libxrender-dev libxinerama-dev libxcursor-dev \ | ||
libxi-dev libglvnd-dev libvulkan-dev clang libc++-dev libglew-dev \ | ||
libglfw3-dev vulkan-validationlayers mesa-vulkan-drivers wget \ | ||
build-essential libssl-dev | ||
RUN cd && wget https://cmake.org/files/v3.23/cmake-3.23.1.tar.gz \ | ||
&& tar xf cmake-3.23.1.tar.gz \ | ||
&& cd cmake-3.23.1 \ | ||
&& ./bootstrap \ | ||
&& make \ | ||
&& make install \ | ||
&& ln -s /usr/local/bin/cmake /usr/bin/cmake | ||
|
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
generated/ | ||
!bin/ | ||
bin/ |
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,9 @@ | ||
{ | ||
"gravity": 15, | ||
"gravity": { | ||
"x": 0, | ||
"y": 0, | ||
"z": -15 | ||
}, | ||
"character_name": "Player", | ||
"objects": [ | ||
{ | ||
|
Binary file modified
BIN
+0 Bytes
(100%)
engine/asset/objects/character/player/components/mesh/_textures/xiaobairen1k_BaseColor.tga
Binary file not shown.
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
Oops, something went wrong.