Skip to content

Commit e2df77a

Browse files
committed
2.2.3
Fix to iClone 8.7 accessory Skeleton Component bug. Fix to Sync view frame calculation at fps other than 60.
1 parent c70d602 commit e2df77a

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,10 @@ Links
4444
Changelog
4545
=========
4646

47+
### 2.2.3
48+
- Fix to iClone 8.7 accessory Skeleton Component bug.
49+
- Fix to Sync view frame calculation at fps other than 60.
50+
4751
### 2.2.2
4852
- Send buttons disabled when waiting for remote response.
4953
- Relink will sync selected characters Link ID back to CC/iC.

utp/link.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2942,7 +2942,8 @@ def receive_camera_sync(self, data):
29422942

29432943
def send_frame_sync(self):
29442944
self.update_link_status(f"Sending Frame Sync")
2945-
link_fps = self.get_link_fps()
2945+
# Unity Timeline frame is based on 60fps
2946+
link_fps = RFps.Fps60 #self.get_link_fps()
29462947
start_time = RGlobal.GetStartTime()
29472948
end_time = RGlobal.GetEndTime()
29482949
current_time = RGlobal.GetTime()

0 commit comments

Comments
 (0)