Added ave and craig
7
assets/games/liminal/textures/craig/CMakeLists.txt
Normal file
@ -0,0 +1,7 @@
|
||||
# Copyright (c) 2023 Dominic Masters
|
||||
#
|
||||
# This software is released under the MIT License.
|
||||
# https://opensource.org/licenses/MIT
|
||||
|
||||
include("${CMAKE_CURRENT_LIST_DIR}/faces/CMakeLists.txt")
|
||||
include("${CMAKE_CURRENT_LIST_DIR}/poses/CMakeLists.txt")
|
14
assets/games/liminal/textures/craig/faces/CMakeLists.txt
Normal file
@ -0,0 +1,14 @@
|
||||
# Copyright (c) 2023 Dominic Masters
|
||||
#
|
||||
# This software is released under the MIT License.
|
||||
# https://opensource.org/licenses/MIT
|
||||
|
||||
set(CRAIG_FACE_TEXTURE_OPTIONS
|
||||
SCALE=${LIMINIAL_CHARACTER_SCALE}
|
||||
FILTER_MIN=nearest
|
||||
FILTER_MAG=nearest
|
||||
CROP_END_Y=1361
|
||||
)
|
||||
|
||||
include(${CMAKE_CURRENT_LIST_DIR}/day/CMakeLists.txt)
|
||||
include(${CMAKE_CURRENT_LIST_DIR}/night/CMakeLists.txt)
|
34
assets/games/liminal/textures/craig/faces/day/CMakeLists.txt
Normal file
@ -0,0 +1,34 @@
|
||||
# Copyright (c) 2023 Dominic Masters
|
||||
#
|
||||
# This software is released under the MIT License.
|
||||
# https://opensource.org/licenses/MIT
|
||||
|
||||
tool_texture(texture_craig_face_day_anger
|
||||
FILE="${CMAKE_CURRENT_LIST_DIR}/anger.png"
|
||||
${CRAIG_FACE_TEXTURE_OPTIONS}
|
||||
)
|
||||
|
||||
tool_texture(texture_craig_face_day_confused
|
||||
FILE="${CMAKE_CURRENT_LIST_DIR}/confused.png"
|
||||
${CRAIG_FACE_TEXTURE_OPTIONS}
|
||||
)
|
||||
|
||||
tool_texture(texture_craig_face_day_fear
|
||||
FILE="${CMAKE_CURRENT_LIST_DIR}/fear.png"
|
||||
${CRAIG_FACE_TEXTURE_OPTIONS}
|
||||
)
|
||||
|
||||
tool_texture(texture_craig_face_day_happy
|
||||
FILE="${CMAKE_CURRENT_LIST_DIR}/happy.png"
|
||||
${CRAIG_FACE_TEXTURE_OPTIONS}
|
||||
)
|
||||
|
||||
tool_texture(texture_craig_face_day_neutral
|
||||
FILE="${CMAKE_CURRENT_LIST_DIR}/neutral.png"
|
||||
${CRAIG_FACE_TEXTURE_OPTIONS}
|
||||
)
|
||||
|
||||
tool_texture(texture_craig_face_day_thinking
|
||||
FILE="${CMAKE_CURRENT_LIST_DIR}/thinking.png"
|
||||
${CRAIG_FACE_TEXTURE_OPTIONS}
|
||||
)
|
BIN
assets/games/liminal/textures/craig/faces/day/anger.png
Normal file
After Width: | Height: | Size: 3.4 MiB |
BIN
assets/games/liminal/textures/craig/faces/day/confused.png
Normal file
After Width: | Height: | Size: 3.4 MiB |
BIN
assets/games/liminal/textures/craig/faces/day/fear.png
Normal file
After Width: | Height: | Size: 3.3 MiB |
BIN
assets/games/liminal/textures/craig/faces/day/happy.png
Normal file
After Width: | Height: | Size: 3.4 MiB |
BIN
assets/games/liminal/textures/craig/faces/day/neutral.png
Normal file
After Width: | Height: | Size: 2.9 MiB |
BIN
assets/games/liminal/textures/craig/faces/day/thinking.png
Normal file
After Width: | Height: | Size: 3.3 MiB |
@ -0,0 +1,34 @@
|
||||
# Copyright (c) 2023 Dominic Masters
|
||||
#
|
||||
# This software is released under the MIT License.
|
||||
# https://opensource.org/licenses/MIT
|
||||
|
||||
tool_texture(texture_craig_face_night_anger
|
||||
FILE="${CMAKE_CURRENT_LIST_DIR}/anger.png"
|
||||
${CRAIG_FACE_TEXTURE_OPTIONS}
|
||||
)
|
||||
|
||||
tool_texture(texture_craig_face_night_confused
|
||||
FILE="${CMAKE_CURRENT_LIST_DIR}/confused.png"
|
||||
${CRAIG_FACE_TEXTURE_OPTIONS}
|
||||
)
|
||||
|
||||
tool_texture(texture_craig_face_night_fear
|
||||
FILE="${CMAKE_CURRENT_LIST_DIR}/fear.png"
|
||||
${CRAIG_FACE_TEXTURE_OPTIONS}
|
||||
)
|
||||
|
||||
tool_texture(texture_craig_face_night_happy
|
||||
FILE="${CMAKE_CURRENT_LIST_DIR}/happy.png"
|
||||
${CRAIG_FACE_TEXTURE_OPTIONS}
|
||||
)
|
||||
|
||||
tool_texture(texture_craig_face_night_neutral
|
||||
FILE="${CMAKE_CURRENT_LIST_DIR}/neutral.png"
|
||||
${CRAIG_FACE_TEXTURE_OPTIONS}
|
||||
)
|
||||
|
||||
tool_texture(texture_craig_face_night_thinking
|
||||
FILE="${CMAKE_CURRENT_LIST_DIR}/thinking.png"
|
||||
${CRAIG_FACE_TEXTURE_OPTIONS}
|
||||
)
|
BIN
assets/games/liminal/textures/craig/faces/night/anger.png
Normal file
After Width: | Height: | Size: 2.6 MiB |
BIN
assets/games/liminal/textures/craig/faces/night/confused.png
Normal file
After Width: | Height: | Size: 2.6 MiB |
BIN
assets/games/liminal/textures/craig/faces/night/fear.png
Normal file
After Width: | Height: | Size: 2.6 MiB |
BIN
assets/games/liminal/textures/craig/faces/night/happy.png
Normal file
After Width: | Height: | Size: 2.6 MiB |
BIN
assets/games/liminal/textures/craig/faces/night/neutral.png
Normal file
After Width: | Height: | Size: 2.7 MiB |
BIN
assets/games/liminal/textures/craig/faces/night/thinking.png
Normal file
After Width: | Height: | Size: 3.2 MiB |
18
assets/games/liminal/textures/craig/poses/CMakeLists.txt
Normal file
@ -0,0 +1,18 @@
|
||||
# Copyright (c) 2023 Dominic Masters
|
||||
#
|
||||
# This software is released under the MIT License.
|
||||
# https://opensource.org/licenses/MIT
|
||||
|
||||
set(CRAIG_POSE_TEXTURE_OPTIONS
|
||||
SCALE=${LIMINIAL_CHARACTER_SCALE}
|
||||
FILTER_MIN=nearest
|
||||
FILTER_MAG=nearest
|
||||
)
|
||||
|
||||
set(CRAIG_BODY_TEXTURE_OPTIONS
|
||||
${CRAIG_POSE_TEXTURE_OPTIONS}
|
||||
CROP_START_Y=1361
|
||||
)
|
||||
|
||||
include("${CMAKE_CURRENT_LIST_DIR}/day/CMakeLists.txt")
|
||||
include("${CMAKE_CURRENT_LIST_DIR}/night/CMakeLists.txt")
|
29
assets/games/liminal/textures/craig/poses/day/CMakeLists.txt
Normal file
@ -0,0 +1,29 @@
|
||||
# Copyright (c) 2023 Dominic Masters
|
||||
#
|
||||
# This software is released under the MIT License.
|
||||
# https://opensource.org/licenses/MIT
|
||||
|
||||
tool_texture(texture_craig_pose_day_body
|
||||
FILE="${CMAKE_CURRENT_LIST_DIR}/body.png"
|
||||
${CRAIG_BODY_TEXTURE_OPTIONS}
|
||||
)
|
||||
|
||||
tool_texture(texture_craig_pose_day_cross
|
||||
FILE="${CMAKE_CURRENT_LIST_DIR}/cross.png"
|
||||
${CRAIG_POSE_TEXTURE_OPTIONS}
|
||||
)
|
||||
|
||||
tool_texture(texture_craig_pose_day_gun
|
||||
FILE="${CMAKE_CURRENT_LIST_DIR}/fist.png"
|
||||
${CRAIG_POSE_TEXTURE_OPTIONS}
|
||||
)
|
||||
|
||||
tool_texture(texture_craig_pose_day_hair
|
||||
FILE="${CMAKE_CURRENT_LIST_DIR}/hair.png"
|
||||
${CRAIG_POSE_TEXTURE_OPTIONS}
|
||||
)
|
||||
|
||||
tool_texture(texture_craig_pose_day_neck
|
||||
FILE="${CMAKE_CURRENT_LIST_DIR}/pocket.png"
|
||||
${CRAIG_POSE_TEXTURE_OPTIONS}
|
||||
)
|
BIN
assets/games/liminal/textures/craig/poses/day/body.png
Normal file
After Width: | Height: | Size: 15 MiB |
BIN
assets/games/liminal/textures/craig/poses/day/cross.png
Normal file
After Width: | Height: | Size: 8.3 MiB |
BIN
assets/games/liminal/textures/craig/poses/day/fist.png
Normal file
After Width: | Height: | Size: 7.9 MiB |
BIN
assets/games/liminal/textures/craig/poses/day/hair.png
Normal file
After Width: | Height: | Size: 8.7 MiB |
BIN
assets/games/liminal/textures/craig/poses/day/pocket.png
Normal file
After Width: | Height: | Size: 6.7 MiB |
@ -0,0 +1,29 @@
|
||||
# Copyright (c) 2023 Dominic Masters
|
||||
#
|
||||
# This software is released under the MIT License.
|
||||
# https://opensource.org/licenses/MIT
|
||||
|
||||
tool_texture(texture_craig_pose_night_body
|
||||
FILE="${CMAKE_CURRENT_LIST_DIR}/body.png"
|
||||
${CRAIG_BODY_TEXTURE_OPTIONS}
|
||||
)
|
||||
|
||||
tool_texture(texture_craig_pose_night_cross
|
||||
FILE="${CMAKE_CURRENT_LIST_DIR}/cross.png"
|
||||
${CRAIG_POSE_TEXTURE_OPTIONS}
|
||||
)
|
||||
|
||||
tool_texture(texture_craig_pose_night_gun
|
||||
FILE="${CMAKE_CURRENT_LIST_DIR}/fist.png"
|
||||
${CRAIG_POSE_TEXTURE_OPTIONS}
|
||||
)
|
||||
|
||||
tool_texture(texture_craig_pose_night_hair
|
||||
FILE="${CMAKE_CURRENT_LIST_DIR}/hair.png"
|
||||
${CRAIG_POSE_TEXTURE_OPTIONS}
|
||||
)
|
||||
|
||||
tool_texture(texture_craig_pose_night_neck
|
||||
FILE="${CMAKE_CURRENT_LIST_DIR}/pocket.png"
|
||||
${CRAIG_POSE_TEXTURE_OPTIONS}
|
||||
)
|
BIN
assets/games/liminal/textures/craig/poses/night/body.png
Normal file
After Width: | Height: | Size: 14 MiB |
BIN
assets/games/liminal/textures/craig/poses/night/cross.png
Normal file
After Width: | Height: | Size: 7.7 MiB |
BIN
assets/games/liminal/textures/craig/poses/night/fist.png
Normal file
After Width: | Height: | Size: 7.7 MiB |
BIN
assets/games/liminal/textures/craig/poses/night/hair.png
Normal file
After Width: | Height: | Size: 8.4 MiB |
BIN
assets/games/liminal/textures/craig/poses/night/pocket.png
Normal file
After Width: | Height: | Size: 6.2 MiB |