@@ -27,30 +27,30 @@ class EditorMeshHandles : IDisposable, IHasPreferences
2727 static readonly Color k_WireframeDefault = new Color ( 94.0f / 255.0f , 119.0f / 255.0f , 155.0f / 255.0f , 1f ) ;
2828
2929 [ UserSetting ]
30- static Pref < bool > s_UseUnityColors = new Pref < bool > ( "graphics.handlesUseUnityColors" , true , SettingsScopes . User ) ;
30+ static Pref < bool > s_UseUnityColors = new Pref < bool > ( "graphics.handlesUseUnityColors" , true , SettingsScope . User ) ;
3131 [ UserSetting ]
32- static Pref < bool > s_DitherFaceHandle = new Pref < bool > ( "graphics.ditherFaceHandles" , true , SettingsScopes . User ) ;
32+ static Pref < bool > s_DitherFaceHandle = new Pref < bool > ( "graphics.ditherFaceHandles" , true , SettingsScope . User ) ;
3333 [ UserSetting ]
34- static Pref < Color > s_SelectedFaceColorPref = new Pref < Color > ( "graphics.userSelectedFaceColor" , new Color ( 0f , 210f / 255f , 239f / 255f , 1f ) , SettingsScopes . User ) ;
34+ static Pref < Color > s_SelectedFaceColorPref = new Pref < Color > ( "graphics.userSelectedFaceColor" , new Color ( 0f , 210f / 255f , 239f / 255f , 1f ) , SettingsScope . User ) ;
3535 [ UserSetting ]
36- static Pref < Color > s_WireframeColorPref = new Pref < Color > ( "graphics.userWireframeColor" , new Color ( 125f / 255f , 155f / 255f , 185f / 255f , 1f ) , SettingsScopes . User ) ;
36+ static Pref < Color > s_WireframeColorPref = new Pref < Color > ( "graphics.userWireframeColor" , new Color ( 125f / 255f , 155f / 255f , 185f / 255f , 1f ) , SettingsScope . User ) ;
3737 [ UserSetting ]
38- static Pref < Color > s_UnselectedEdgeColorPref = new Pref < Color > ( "graphics.userUnselectedEdgeColor" , new Color ( 44f / 255f , 44f / 255f , 44f / 255f , 1f ) , SettingsScopes . User ) ;
38+ static Pref < Color > s_UnselectedEdgeColorPref = new Pref < Color > ( "graphics.userUnselectedEdgeColor" , new Color ( 44f / 255f , 44f / 255f , 44f / 255f , 1f ) , SettingsScope . User ) ;
3939 [ UserSetting ]
40- static Pref < Color > s_SelectedEdgeColorPref = new Pref < Color > ( "graphics.userSelectedEdgeColor" , new Color ( 0f , 210f / 255f , 239f / 255f , 1f ) , SettingsScopes . User ) ;
40+ static Pref < Color > s_SelectedEdgeColorPref = new Pref < Color > ( "graphics.userSelectedEdgeColor" , new Color ( 0f , 210f / 255f , 239f / 255f , 1f ) , SettingsScope . User ) ;
4141 [ UserSetting ]
42- static Pref < Color > s_UnselectedVertexColorPref = new Pref < Color > ( "graphics.userUnselectedVertexColor" , new Color ( 44f / 255f , 44f / 255f , 44f / 255f , 1f ) , SettingsScopes . User ) ;
42+ static Pref < Color > s_UnselectedVertexColorPref = new Pref < Color > ( "graphics.userUnselectedVertexColor" , new Color ( 44f / 255f , 44f / 255f , 44f / 255f , 1f ) , SettingsScope . User ) ;
4343 [ UserSetting ]
44- static Pref < Color > s_SelectedVertexColorPref = new Pref < Color > ( "graphics.userSelectedVertexColor" , new Color ( 0f , 210f / 255f , 239f / 255f , 1f ) , SettingsScopes . User ) ;
44+ static Pref < Color > s_SelectedVertexColorPref = new Pref < Color > ( "graphics.userSelectedVertexColor" , new Color ( 0f , 210f / 255f , 239f / 255f , 1f ) , SettingsScope . User ) ;
4545 [ UserSetting ]
46- static Pref < Color > s_PreselectionColorPref = new Pref < Color > ( "graphics.userPreselectionColor" , new Color ( 179f / 255f , 246f / 255f , 255f / 255f , 1f ) , SettingsScopes . User ) ;
46+ static Pref < Color > s_PreselectionColorPref = new Pref < Color > ( "graphics.userPreselectionColor" , new Color ( 179f / 255f , 246f / 255f , 255f / 255f , 1f ) , SettingsScope . User ) ;
4747
4848 [ UserSetting ]
49- static Pref < float > s_WireframeLineSize = new Pref < float > ( "graphics.wireframeLineSize" , .5f , SettingsScopes . User ) ;
49+ static Pref < float > s_WireframeLineSize = new Pref < float > ( "graphics.wireframeLineSize" , .5f , SettingsScope . User ) ;
5050 [ UserSetting ]
51- static Pref < float > s_EdgeLineSize = new Pref < float > ( "graphics.edgeLineSize" , 1f , SettingsScopes . User ) ;
51+ static Pref < float > s_EdgeLineSize = new Pref < float > ( "graphics.edgeLineSize" , 1f , SettingsScope . User ) ;
5252 [ UserSetting ]
53- static Pref < float > s_VertexPointSize = new Pref < float > ( "graphics.vertexPointSize" , 3f , SettingsScopes . User ) ;
53+ static Pref < float > s_VertexPointSize = new Pref < float > ( "graphics.vertexPointSize" , 3f , SettingsScope . User ) ;
5454
5555 [ UserSettingBlock ( "Graphics" ) ]
5656 static void HandleColorPreferences ( string searchContext )
0 commit comments