Added ave and craig
7
assets/games/liminal/textures/ave/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/ave/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(AVE_FACE_TEXTURE_OPTIONS
|
||||
SCALE=${LIMINIAL_CHARACTER_SCALE}
|
||||
FILTER_MIN=nearest
|
||||
FILTER_MAG=nearest
|
||||
CROP_END_Y=2294
|
||||
)
|
||||
|
||||
include(${CMAKE_CURRENT_LIST_DIR}/day/CMakeLists.txt)
|
||||
include(${CMAKE_CURRENT_LIST_DIR}/night/CMakeLists.txt)
|
35
assets/games/liminal/textures/ave/faces/day/CMakeLists.txt
Normal file
@ -0,0 +1,35 @@
|
||||
# Copyright (c) 2023 Dominic Masters
|
||||
#
|
||||
# This software is released under the MIT License.
|
||||
# https://opensource.org/licenses/MIT
|
||||
|
||||
|
||||
tool_texture(texture_ave_face_day_anger
|
||||
FILE="${CMAKE_CURRENT_LIST_DIR}/anger.png"
|
||||
${AVE_FACE_TEXTURE_OPTIONS}
|
||||
)
|
||||
|
||||
tool_texture(texture_ave_face_day_confused
|
||||
FILE="${CMAKE_CURRENT_LIST_DIR}/confused.png"
|
||||
${AVE_FACE_TEXTURE_OPTIONS}
|
||||
)
|
||||
|
||||
tool_texture(texture_ave_face_day_fear
|
||||
FILE="${CMAKE_CURRENT_LIST_DIR}/fear.png"
|
||||
${AVE_FACE_TEXTURE_OPTIONS}
|
||||
)
|
||||
|
||||
tool_texture(texture_ave_face_day_happy
|
||||
FILE="${CMAKE_CURRENT_LIST_DIR}/happy.png"
|
||||
${AVE_FACE_TEXTURE_OPTIONS}
|
||||
)
|
||||
|
||||
tool_texture(texture_ave_face_day_neutral
|
||||
FILE="${CMAKE_CURRENT_LIST_DIR}/neutral.png"
|
||||
${AVE_FACE_TEXTURE_OPTIONS}
|
||||
)
|
||||
|
||||
tool_texture(texture_ave_face_day_pensive
|
||||
FILE="${CMAKE_CURRENT_LIST_DIR}/pensive.png"
|
||||
${AVE_FACE_TEXTURE_OPTIONS}
|
||||
)
|
BIN
assets/games/liminal/textures/ave/faces/day/anger.png
Normal file
After Width: | Height: | Size: 3.2 MiB |
BIN
assets/games/liminal/textures/ave/faces/day/confused.png
Normal file
After Width: | Height: | Size: 3.2 MiB |
BIN
assets/games/liminal/textures/ave/faces/day/fear.png
Normal file
After Width: | Height: | Size: 3.2 MiB |
BIN
assets/games/liminal/textures/ave/faces/day/happy.png
Normal file
After Width: | Height: | Size: 3.3 MiB |
BIN
assets/games/liminal/textures/ave/faces/day/neutral.png
Normal file
After Width: | Height: | Size: 3.3 MiB |
BIN
assets/games/liminal/textures/ave/faces/day/pensive.png
Normal file
After Width: | Height: | Size: 3.2 MiB |
34
assets/games/liminal/textures/ave/faces/night/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_ave_face_night_anger
|
||||
FILE="${CMAKE_CURRENT_LIST_DIR}/anger.png"
|
||||
${AVE_FACE_TEXTURE_OPTIONS}
|
||||
)
|
||||
|
||||
tool_texture(texture_ave_face_night_confused
|
||||
FILE="${CMAKE_CURRENT_LIST_DIR}/confused.png"
|
||||
${AVE_FACE_TEXTURE_OPTIONS}
|
||||
)
|
||||
|
||||
tool_texture(texture_ave_face_night_fear
|
||||
FILE="${CMAKE_CURRENT_LIST_DIR}/fear.png"
|
||||
${AVE_FACE_TEXTURE_OPTIONS}
|
||||
)
|
||||
|
||||
tool_texture(texture_ave_face_night_happy
|
||||
FILE="${CMAKE_CURRENT_LIST_DIR}/happy.png"
|
||||
${AVE_FACE_TEXTURE_OPTIONS}
|
||||
)
|
||||
|
||||
tool_texture(texture_ave_face_night_neutral
|
||||
FILE="${CMAKE_CURRENT_LIST_DIR}/neutral.png"
|
||||
${AVE_FACE_TEXTURE_OPTIONS}
|
||||
)
|
||||
|
||||
tool_texture(texture_ave_face_night_pensive
|
||||
FILE="${CMAKE_CURRENT_LIST_DIR}/pensive.png"
|
||||
${AVE_FACE_TEXTURE_OPTIONS}
|
||||
)
|
BIN
assets/games/liminal/textures/ave/faces/night/anger.png
Normal file
After Width: | Height: | Size: 2.8 MiB |
BIN
assets/games/liminal/textures/ave/faces/night/confused.png
Normal file
After Width: | Height: | Size: 2.8 MiB |
BIN
assets/games/liminal/textures/ave/faces/night/fear.png
Normal file
After Width: | Height: | Size: 2.9 MiB |
BIN
assets/games/liminal/textures/ave/faces/night/happy.png
Normal file
After Width: | Height: | Size: 2.9 MiB |
BIN
assets/games/liminal/textures/ave/faces/night/neutral.png
Normal file
After Width: | Height: | Size: 2.9 MiB |
BIN
assets/games/liminal/textures/ave/faces/night/pensive.png
Normal file
After Width: | Height: | Size: 2.9 MiB |
14
assets/games/liminal/textures/ave/poses/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(AVE_POSE_TEXTURE_OPTIONS
|
||||
SCALE=${LIMINIAL_CHARACTER_SCALE}
|
||||
FILTER_MIN=nearest
|
||||
FILTER_MAG=nearest
|
||||
CROP_START_Y=2294
|
||||
)
|
||||
|
||||
include(${CMAKE_CURRENT_LIST_DIR}/day/CMakeLists.txt)
|
||||
include(${CMAKE_CURRENT_LIST_DIR}/night/CMakeLists.txt)
|
24
assets/games/liminal/textures/ave/poses/day/CMakeLists.txt
Normal file
@ -0,0 +1,24 @@
|
||||
# Copyright (c) 2023 Dominic Masters
|
||||
#
|
||||
# This software is released under the MIT License.
|
||||
# https://opensource.org/licenses/MIT
|
||||
|
||||
tool_texture(texture_ave_pose_day_cross
|
||||
FILE="${CMAKE_CURRENT_LIST_DIR}/cross.png"
|
||||
${AVE_POSE_TEXTURE_OPTIONS}
|
||||
)
|
||||
|
||||
tool_texture(texture_ave_pose_day_front
|
||||
FILE="${CMAKE_CURRENT_LIST_DIR}/pocket.png"
|
||||
${AVE_POSE_TEXTURE_OPTIONS}
|
||||
)
|
||||
|
||||
tool_texture(texture_ave_pose_day_hips
|
||||
FILE="${CMAKE_CURRENT_LIST_DIR}/wrist.png"
|
||||
${AVE_POSE_TEXTURE_OPTIONS}
|
||||
)
|
||||
|
||||
tool_texture(texture_ave_pose_day_neutral
|
||||
FILE="${CMAKE_CURRENT_LIST_DIR}/neutral.png"
|
||||
${AVE_POSE_TEXTURE_OPTIONS}
|
||||
)
|
BIN
assets/games/liminal/textures/ave/poses/day/cross.png
Normal file
After Width: | Height: | Size: 9.5 MiB |
BIN
assets/games/liminal/textures/ave/poses/day/neutral.png
Normal file
After Width: | Height: | Size: 11 MiB |
BIN
assets/games/liminal/textures/ave/poses/day/pocket.png
Normal file
After Width: | Height: | Size: 10 MiB |
BIN
assets/games/liminal/textures/ave/poses/day/wrist.png
Normal file
After Width: | Height: | Size: 9.3 MiB |
24
assets/games/liminal/textures/ave/poses/night/CMakeLists.txt
Normal file
@ -0,0 +1,24 @@
|
||||
# Copyright (c) 2023 Dominic Masters
|
||||
#
|
||||
# This software is released under the MIT License.
|
||||
# https://opensource.org/licenses/MIT
|
||||
|
||||
tool_texture(texture_ave_pose_night_cross
|
||||
FILE="${CMAKE_CURRENT_LIST_DIR}/cross.png"
|
||||
${AVE_POSE_TEXTURE_OPTIONS}
|
||||
)
|
||||
|
||||
tool_texture(texture_ave_pose_night_front
|
||||
FILE="${CMAKE_CURRENT_LIST_DIR}/pocket.png"
|
||||
${AVE_POSE_TEXTURE_OPTIONS}
|
||||
)
|
||||
|
||||
tool_texture(texture_ave_pose_night_hips
|
||||
FILE="${CMAKE_CURRENT_LIST_DIR}/wrist.png"
|
||||
${AVE_POSE_TEXTURE_OPTIONS}
|
||||
)
|
||||
|
||||
tool_texture(texture_ave_pose_night_neutral
|
||||
FILE="${CMAKE_CURRENT_LIST_DIR}/neutral.png"
|
||||
${AVE_POSE_TEXTURE_OPTIONS}
|
||||
)
|
BIN
assets/games/liminal/textures/ave/poses/night/cross.png
Normal file
After Width: | Height: | Size: 8.4 MiB |
BIN
assets/games/liminal/textures/ave/poses/night/neutral.png
Normal file
After Width: | Height: | Size: 9.4 MiB |
BIN
assets/games/liminal/textures/ave/poses/night/pocket.png
Normal file
After Width: | Height: | Size: 9.1 MiB |
BIN
assets/games/liminal/textures/ave/poses/night/wrist.png
Normal file
After Width: | Height: | Size: 8.2 MiB |