Merge branch 'master' into master
commit
8542ba636b
|
@ -54,7 +54,7 @@ jobs:
|
||||||
- name: Cache DX SDK
|
- name: Cache DX SDK
|
||||||
id: dxcache
|
id: dxcache
|
||||||
if: contains(matrix.name, 'windows')
|
if: contains(matrix.name, 'windows')
|
||||||
uses: actions/cache@v3
|
uses: actions/cache@v4
|
||||||
with:
|
with:
|
||||||
path: '${{ github.workspace }}/DX_SDK'
|
path: '${{ github.workspace }}/DX_SDK'
|
||||||
key: ${{ runner.os }}-DX_SDK
|
key: ${{ runner.os }}-DX_SDK
|
||||||
|
|
|
@ -49,8 +49,8 @@ option(ASSIMP_HUNTER_ENABLED "Enable Hunter package manager support" OFF)
|
||||||
IF(ASSIMP_HUNTER_ENABLED)
|
IF(ASSIMP_HUNTER_ENABLED)
|
||||||
include("cmake-modules/HunterGate.cmake")
|
include("cmake-modules/HunterGate.cmake")
|
||||||
HunterGate(
|
HunterGate(
|
||||||
URL "https://github.com/cpp-pm/hunter/archive/v0.24.18.tar.gz"
|
URL "https://github.com/cpp-pm/hunter/archive/v0.25.3.tar.gz"
|
||||||
SHA1 "1292e4d661e1770d6d6ca08c12c07cf34a0bf718"
|
SHA1 "3319fe6a3b08090df7df98dee75134d68e2ef5a3"
|
||||||
)
|
)
|
||||||
add_definitions(-DASSIMP_USE_HUNTER)
|
add_definitions(-DASSIMP_USE_HUNTER)
|
||||||
ENDIF()
|
ENDIF()
|
||||||
|
|
|
@ -1748,7 +1748,7 @@ void FBXExporter::WriteObjects ()
|
||||||
int64_t blendshape_uid = generate_uid();
|
int64_t blendshape_uid = generate_uid();
|
||||||
mesh_uids.push_back(blendshape_uid);
|
mesh_uids.push_back(blendshape_uid);
|
||||||
bsnode.AddProperty(blendshape_uid);
|
bsnode.AddProperty(blendshape_uid);
|
||||||
bsnode.AddProperty(blendshape_name + FBX::SEPARATOR + "Blendshape");
|
bsnode.AddProperty(blendshape_name + FBX::SEPARATOR + "Geometry");
|
||||||
bsnode.AddProperty("Shape");
|
bsnode.AddProperty("Shape");
|
||||||
bsnode.AddChild("Version", int32_t(100));
|
bsnode.AddChild("Version", int32_t(100));
|
||||||
bsnode.Begin(outstream, binary, indent);
|
bsnode.Begin(outstream, binary, indent);
|
||||||
|
|
Loading…
Reference in New Issue