Upgrade to Cubism 5 Release R4.1. master
authorAdrian Iain Lam <adrianiainlam@users.noreply.github.com>
Thu, 17 Jul 2025 19:44:39 +0000 (20:44 +0100)
committerAdrian Iain Lam <adrianiainlam@users.noreply.github.com>
Thu, 17 Jul 2025 19:44:39 +0000 (20:44 +0100)
README.md
example/build.sh
example/demo.patch
example/generate_patch.sh

index b919b3d..80b97ff 100644 (file)
--- a/README.md
+++ b/README.md
@@ -50,17 +50,17 @@ if you don't have C++17 support.
 
 To build the example program:
 
-4. Download "Cubism 5 SDK for Native R4" from the Live2D website:
-   <https://www.live2d.com/en/download/cubism-sdk/download-native/>.
+4. Download "Cubism 5 SDK for Native R4.1" from the Live2D website:
+   <https://www.live2d.com/en/sdk/download/native/>.
 
-   Extract the archive -- put the "CubismSdkForNative-5-r.4" folder under
+   Extract the archive -- put the "CubismSdkForNative-5-r.4.1" folder under
    the "example" folder of this repo.
 
    Note: The Cubism SDK is the property of Live2D and is not part of this
    project. You must agree to Live2D's license agreements to use it.
 
 5. Go into the
-   "example/CubismSdkForNative-5-r.4/Samples/OpenGL/thirdParty/scripts"
+   "example/CubismSdkForNative-5-r.4.1/Samples/OpenGL/thirdParty/scripts"
    directory and run
 
        ./setup_glew_glfw
index 109ced8..50bf9e2 100755 (executable)
@@ -1,6 +1,6 @@
 #!/bin/sh -e
 
 mkdir -p demo_build
-cp -r CubismSdkForNative-5-r.4/Samples/OpenGL/Demo/proj.linux.cmake/* ./demo_build/
+cp -r CubismSdkForNative-5-r.4.1/Samples/OpenGL/Demo/proj.linux.cmake/* ./demo_build/
 patch -d demo_build -p2 < demo.patch
 ./demo_build/scripts/make_gcc
index 3286429..98d95b7 100644 (file)
@@ -6,7 +6,7 @@ diff -pruN --exclude build ./demo_clean/CMakeLists.txt ./demo_dev/CMakeLists.txt
  set(APP_NAME Demo)
  # Set directory paths.
 -set(SDK_ROOT_PATH ${CMAKE_CURRENT_SOURCE_DIR}/../../../..)
-+set(SDK_ROOT_PATH ${CMAKE_CURRENT_SOURCE_DIR}/../CubismSdkForNative-5-r.4)
++set(SDK_ROOT_PATH ${CMAKE_CURRENT_SOURCE_DIR}/../CubismSdkForNative-5-r.4.1)
  set(CORE_PATH ${SDK_ROOT_PATH}/Core)
  set(FRAMEWORK_PATH ${SDK_ROOT_PATH}/Framework)
  set(THIRD_PARTY_PATH ${SDK_ROOT_PATH}/Samples/OpenGL/thirdParty)
index fe9e9e0..f358ff3 100755 (executable)
@@ -1,5 +1,5 @@
 #!/bin/sh
 
 mkdir -p demo_clean
-cp -p -r CubismSdkForNative-5-r.4/Samples/OpenGL/Demo/proj.linux.cmake/* ./demo_clean/
+cp -p -r CubismSdkForNative-5-r.4.1/Samples/OpenGL/Demo/proj.linux.cmake/* ./demo_clean/
 diff -pruN --exclude build ./demo_clean ./demo_dev > ./demo.patch