- 모든 컨트롤러 에디터를 IMGUI → UI Toolkit(UXML/USS)으로 전환 (Camera, Item, Event, Avatar, System, StreamDeck, OptiTrack, Facial) - StreamingleCommon.uss 공통 테마 + 개별 에디터 USS 스타일시트 - SystemController 서브매니저 분리 (OptiTrack, Facial, Recording, Screenshot 등) - 런타임 컨트롤 패널 (ESC 토글, 좌측 오버레이, 150% 스케일) - 웹 대시보드 서버 (StreamingleDashboardServer) + 리타게팅 통합 - 설정 도구(StreamingleControllerSetupTool) UXML 재작성 + 원클릭 설정 - SimplePoseTransfer UXML 에디터 추가 - 전체 UXML 한글화 + NanumGothic 폰트 적용 - Streamingle.Debug → Streamingle.Debugging 네임스페이스 변경 (Debug.Log 충돌 해결) - 불필요 코드 제거 (rawkey.cs, RetargetingHTTPServer, OptitrackSkeletonAnimator 등) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
93 lines
1.5 KiB
Plaintext
93 lines
1.5 KiB
Plaintext
/* StreamDeckServerManager Editor Styles */
|
|
|
|
/* ---- Title Bar ---- */
|
|
|
|
.sdm-title-bar {
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
background-color: rgba(0, 0, 0, 0.35);
|
|
border-radius: 6px;
|
|
padding: 8px 12px;
|
|
margin-bottom: 4px;
|
|
min-height: 32px;
|
|
}
|
|
|
|
.sdm-title-left {
|
|
flex-direction: row;
|
|
align-items: center;
|
|
}
|
|
|
|
.sdm-title-text {
|
|
-unity-font-style: bold;
|
|
font-size: 14px;
|
|
color: #93c5fd;
|
|
}
|
|
|
|
.sdm-play-status {
|
|
flex-direction: row;
|
|
align-items: center;
|
|
margin-left: 12px;
|
|
display: none;
|
|
}
|
|
|
|
.sdm-play-status--visible {
|
|
display: flex;
|
|
}
|
|
|
|
.sdm-play-dot {
|
|
width: 8px;
|
|
height: 8px;
|
|
border-radius: 4px;
|
|
background-color: #22c55e;
|
|
margin-right: 4px;
|
|
}
|
|
|
|
.sdm-play-label {
|
|
font-size: 10px;
|
|
-unity-font-style: bold;
|
|
color: #22c55e;
|
|
}
|
|
|
|
.sdm-dashboard-btn {
|
|
background-color: #6366f1;
|
|
color: white;
|
|
border-radius: 4px;
|
|
border-width: 0;
|
|
padding: 4px 14px;
|
|
height: 26px;
|
|
-unity-font-style: bold;
|
|
font-size: 11px;
|
|
}
|
|
|
|
.sdm-dashboard-btn:hover {
|
|
background-color: #4f46e5;
|
|
}
|
|
|
|
.sdm-dashboard-btn:active {
|
|
background-color: #4338ca;
|
|
}
|
|
|
|
/* ---- LAN Info ---- */
|
|
|
|
.sdm-lan-box {
|
|
background-color: rgba(0, 0, 0, 0.15);
|
|
border-radius: 4px;
|
|
padding: 6px 10px;
|
|
margin-bottom: 6px;
|
|
border-width: 1px;
|
|
border-color: rgba(255, 255, 255, 0.06);
|
|
}
|
|
|
|
.sdm-lan-ip {
|
|
font-size: 12px;
|
|
-unity-font-style: bold;
|
|
color: #e2e8f0;
|
|
}
|
|
|
|
.sdm-lan-url {
|
|
font-size: 11px;
|
|
color: #94a3b8;
|
|
margin-top: 2px;
|
|
}
|