Skip to content

Version 1.8.1, #27

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ public Quaternion GetEndBoneRotation(GameObject _RootGameObject)
{
if (!endBoneRotation.HasValue)
return default;
return endBoneRotation.Value * _RootGameObject.transform.rotation;
return _RootGameObject.transform.rotation * endBoneRotation.Value;
}

/// <remarks>
Expand Down
Binary file modified Runtime/Clip/Kinetix.Clip.dll
Binary file not shown.
2 changes: 1 addition & 1 deletion Runtime/Const/KinetixConstants.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ namespace Kinetix.Internal
{
public static class KinetixConstants
{
public const string version = "1.8.0";
public const string version = "1.8.1";
public static bool C_ShouldUGCBeAvailable = true;

#if STAGING_KINETIX
Expand Down
4 changes: 2 additions & 2 deletions Runtime/Retarget/CompilationLog.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Starting compiling Kinetix.Retarget.dll
D:\UnityInstall\2020.3.33f1\Editor\Data\Tools\RoslynScripts\unity_csc.bat /noconfig @Temp/UnityTempFile-11c7cc3f5ec7f534695b43269a793491
D:\UnityInstall\2020.3.33f1\Editor\Data\Tools\RoslynScripts\unity_csc.bat /noconfig @Temp/UnityTempFile-5a5cb80f919c71244ae1da21c3d8e3fd
# Starting IL post processing on Kinetix.Retarget.dll
D:/UnityInstall/2020.3.33f1/Editor/Data/MonoBleedingEdge/bin/mono.exe D:/UnityInstall/2020.3.33f1/Editor/Data/Tools/ILPostProcessorRunner/ILPostProcessorRunner.exe @D:/Kinetix/kinetix-emote-wheel/Temp/UnityTempFile-495fa8d13cdfcfb40af0fed8dd6be891
D:/UnityInstall/2020.3.33f1/Editor/Data/MonoBleedingEdge/bin/mono.exe D:/UnityInstall/2020.3.33f1/Editor/Data/Tools/ILPostProcessorRunner/ILPostProcessorRunner.exe @D:/Kinetix/kinetix-emote-wheel/Temp/UnityTempFile-6ff863ac9fd1758468cdf01356a5700a
Binary file modified Runtime/Retarget/Kinetix.Retarget.dll
Binary file not shown.
Binary file modified Runtime/Retarget/Webgl/Kinetix.Retarget.dll
Binary file not shown.
Binary file modified Runtime/Utils/Log/Kinetix.Internal.Utils.dll
Binary file not shown.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "com.kinetix.coreweb2",
"version": "1.8.0",
"version": "1.8.1",
"displayName": "Kinetix Core",
"description": "Kinetix Core SDK",
"samples": [
Expand Down
Loading