File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed
Assets/HTC.UnityPlugin/ViveInputUtility/Scripts Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -395,13 +395,18 @@ private static void InitializeSettins()
395395 {
396396 settingTitle = "Multithreaded Rendering" ,
397397 skipCheckFunc = ( ) => ! VIUSettingsEditor . supportWaveVR || VIUSettingsEditor . activeBuildTargetGroup != BuildTargetGroup . Android ,
398+ #if UNITY_2017_2_OR_NEWER
399+ currentValueFunc = ( ) => PlayerSettings . MTRendering ,
400+ setValueFunc = v => PlayerSettings . MTRendering = v ,
401+ #else
398402 currentValueFunc = ( ) => PlayerSettings . mobileMTRendering ,
399403 setValueFunc = v => PlayerSettings . mobileMTRendering = v ,
404+ #endif
400405 recommendedValue = true,
401406 } ) ;
402407
403408#if UNITY_5_4_OR_NEWER
404- s_settings . Add ( new RecommendedSetting < bool > ( )
409+ s_settings . Add ( new RecommendedSetting < bool > ( )
405410 {
406411 settingTitle = "Graphic Jobs" ,
407412 skipCheckFunc = ( ) => ! VIUSettingsEditor . supportWaveVR || VIUSettingsEditor . activeBuildTargetGroup != BuildTargetGroup . Android ,
Original file line number Diff line number Diff line change @@ -6,6 +6,6 @@ namespace HTC.UnityPlugin.Vive
66{
77 public static class VIUVersion
88 {
9- public static readonly Version current = new Version ( "1.8.0.7 " ) ;
9+ public static readonly Version current = new Version ( "1.8.0.8 " ) ;
1010 }
1111}
You can’t perform that action at this time.
0 commit comments