Added ave and craig

This commit is contained in:
2023-08-01 23:06:47 -07:00
parent 440b753d2a
commit 5ea312bc34
83 changed files with 531 additions and 18 deletions

View File

@ -5,6 +5,8 @@
set(LIMINIAL_CHARACTER_SCALE 0.2)
include("${CMAKE_CURRENT_LIST_DIR}/ave/CMakeLists.txt")
include("${CMAKE_CURRENT_LIST_DIR}/craig/CMakeLists.txt")
include("${CMAKE_CURRENT_LIST_DIR}/eth/CMakeLists.txt")
include("${CMAKE_CURRENT_LIST_DIR}/ronin/CMakeLists.txt")

View 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")

View 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)

View 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}
)

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 MiB

View 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}
)

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 MiB

View 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)

View 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}
)

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.5 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.3 MiB

View 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}
)

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.4 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.4 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.1 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.2 MiB

View 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")

View 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)

View 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}
)

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 MiB

View 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_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}
)

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 MiB

View 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")

View 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}
)

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.3 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.9 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.7 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.7 MiB

View 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_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}
)

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.7 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.7 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.4 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.2 MiB

View File

@ -7,7 +7,7 @@ set(ETH_FACE_TEXTURE_OPTIONS
SCALE=${LIMINIAL_CHARACTER_SCALE}
FILTER_MIN=nearest
FILTER_MAG=nearest
CROP_END_Y=2833
CROP_END_Y=1431
)
include(${CMAKE_CURRENT_LIST_DIR}/day/CMakeLists.txt)

View File

@ -7,6 +7,7 @@ set(RONIN_FACE_TEXTURE_OPTIONS
SCALE=${LIMINIAL_CHARACTER_SCALE}
FILTER_MIN=nearest
FILTER_MAG=nearest
CROP_END_Y=1689
)
include(${CMAKE_CURRENT_LIST_DIR}/day/CMakeLists.txt)

View File

@ -10,12 +10,12 @@ tool_texture(texture_ronin_face_day_anger
tool_texture(texture_ronin_face_day_confused
FILE="${CMAKE_CURRENT_LIST_DIR}/confused.png"
${ETH_FACE_TEXTURE_OPTIONS}
${RONIN_FACE_TEXTURE_OPTIONS}
)
tool_texture(texture_ronin_face_day_furious
FILE="${CMAKE_CURRENT_LIST_DIR}/furious.png"
${ETH_FACE_TEXTURE_OPTIONS}
${RONIN_FACE_TEXTURE_OPTIONS}
)
tool_texture(texture_ronin_face_day_happy

View File

@ -10,12 +10,12 @@ tool_texture(texture_ronin_face_night_anger
tool_texture(texture_ronin_face_night_confused
FILE="${CMAKE_CURRENT_LIST_DIR}/confused.png"
${ETH_FACE_TEXTURE_OPTIONS}
${RONIN_FACE_TEXTURE_OPTIONS}
)
tool_texture(texture_ronin_face_night_furious
FILE="${CMAKE_CURRENT_LIST_DIR}/furious.png"
${ETH_FACE_TEXTURE_OPTIONS}
${RONIN_FACE_TEXTURE_OPTIONS}
)
tool_texture(texture_ronin_face_night_happy

View File

@ -9,5 +9,10 @@ set(RONIN_POSE_TEXTURE_OPTIONS
FILTER_MAG=nearest
)
set(RONIN_BODY_TEXTURE_OPTIONS
${RONIN_POSE_TEXTURE_OPTIONS}
CROP_START_Y=1689
)
include(${CMAKE_CURRENT_LIST_DIR}/day/CMakeLists.txt)
include(${CMAKE_CURRENT_LIST_DIR}/night/CMakeLists.txt)

View File

@ -5,7 +5,7 @@
tool_texture(texture_ronin_pose_day_body
FILE="${CMAKE_CURRENT_LIST_DIR}/body.png"
${RONIN_POSE_TEXTURE_OPTIONS}
${RONIN_BODY_TEXTURE_OPTIONS}
)
tool_texture(texture_ronin_pose_day_cross

View File

@ -5,7 +5,7 @@
tool_texture(texture_ronin_pose_night_body
FILE="${CMAKE_CURRENT_LIST_DIR}/body.png"
${RONIN_POSE_TEXTURE_OPTIONS}
${RONIN_BODY_TEXTURE_OPTIONS}
)
tool_texture(texture_ronin_pose_night_cross