forked from Unity-Technologies/UnityCsReference
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGraphicsSettingsEditors.cs
632 lines (514 loc) · 31.2 KB
/
GraphicsSettingsEditors.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
// Unity C# reference source
// Copyright (c) Unity Technologies. For terms of use, see
// https://unity3d.com/legal/licenses/Unity_Reference_Only_License
using System;
using UnityEngine;
using UnityEditor.Build;
using UnityEngine.Rendering;
using EditorGraphicsSettings = UnityEditor.Rendering.EditorGraphicsSettings;
using TierSettings = UnityEditor.Rendering.TierSettings;
using GraphicsTier = UnityEngine.Rendering.GraphicsTier;
using ShaderQuality = UnityEditor.Rendering.ShaderQuality;
// these are smallish editor's we use for GraphicsSettings editing
namespace UnityEditor
{
//
// builtin shaders
//
internal partial class GraphicsSettingsWindow
{
internal class BuiltinShaderSettings
{
internal enum BuiltinShaderMode
{
None = 0,
Builtin,
Custom
}
readonly SerializedProperty m_Mode;
readonly SerializedProperty m_Shader;
readonly GUIContent m_Label;
internal BuiltinShaderSettings(GUIContent label, string name, SerializedObject serializedObject)
{
m_Mode = serializedObject.FindProperty(name + ".m_Mode");
m_Shader = serializedObject.FindProperty(name + ".m_Shader");
m_Label = label;
}
internal void DoGUI()
{
EditorGUILayout.PropertyField(m_Mode, m_Label);
if (m_Mode.intValue == (int)BuiltinShaderMode.Custom)
EditorGUILayout.PropertyField(m_Shader);
}
}
internal class BuiltinShadersEditor : Editor
{
BuiltinShaderSettings m_Deferred;
BuiltinShaderSettings m_DeferredReflections;
BuiltinShaderSettings m_LegacyDeferred;
BuiltinShaderSettings m_ScreenSpaceShadows;
BuiltinShaderSettings m_DepthNormals;
BuiltinShaderSettings m_MotionVectors;
BuiltinShaderSettings m_LightHalo;
BuiltinShaderSettings m_LensFlare;
internal class Styles
{
public static GUIContent deferredString = EditorGUIUtility.TrTextContent("Deferred", "Shader used for Deferred Shading.");
public static GUIContent deferredReflString = EditorGUIUtility.TrTextContent("Deferred Reflections", "Shader used for Deferred reflection probes.");
public static GUIContent legacyDeferredString = EditorGUIUtility.TrTextContent("Legacy Deferred", "Shader used for Legacy (light prepass) Deferred Lighting.");
public static GUIContent screenShadowsString = EditorGUIUtility.TrTextContent("Screen Space Shadows", "Shader used for screen-space cascaded shadows.");
public static GUIContent depthNormalsString = EditorGUIUtility.TrTextContent("Depth Normals", "Shader used for depth and normals texture when enabled on a Camera.");
public static GUIContent motionVectorsString = EditorGUIUtility.TrTextContent("Motion Vectors", "Shader for generation of Motion Vectors when the rendering camera has renderMotionVectors set to true.");
public static GUIContent lightHaloString = EditorGUIUtility.TrTextContent("Light Halo", "Default Shader used for light halos.");
public static GUIContent lensFlareString = EditorGUIUtility.TrTextContent("Lens Flare", "Default Shader used for lens flares.");
}
public void OnEnable()
{
m_Deferred = new BuiltinShaderSettings(Styles.deferredString, "m_Deferred", serializedObject);
m_DeferredReflections = new BuiltinShaderSettings(Styles.deferredReflString, "m_DeferredReflections", serializedObject);
m_LegacyDeferred = new BuiltinShaderSettings(Styles.legacyDeferredString, "m_LegacyDeferred", serializedObject);
m_ScreenSpaceShadows = new BuiltinShaderSettings(Styles.screenShadowsString, "m_ScreenSpaceShadows", serializedObject);
m_DepthNormals = new BuiltinShaderSettings(Styles.depthNormalsString, "m_DepthNormals", serializedObject);
m_MotionVectors = new BuiltinShaderSettings(Styles.motionVectorsString, "m_MotionVectors", serializedObject);
m_LightHalo = new BuiltinShaderSettings(Styles.lightHaloString, "m_LightHalo", serializedObject);
m_LensFlare = new BuiltinShaderSettings(Styles.lensFlareString, "m_LensFlare", serializedObject);
}
public override void OnInspectorGUI()
{
serializedObject.Update();
m_Deferred.DoGUI();
// deferred reflections being off affects forward vs deferred style probe rendering;
// need to reload shaders for new platform macro to live update
EditorGUI.BeginChangeCheck();
m_DeferredReflections.DoGUI();
if (EditorGUI.EndChangeCheck())
ShaderUtil.ReloadAllShaders();
m_LegacyDeferred.DoGUI();
m_ScreenSpaceShadows.DoGUI();
m_DepthNormals.DoGUI();
m_MotionVectors.DoGUI();
m_LightHalo.DoGUI();
m_LensFlare.DoGUI();
serializedObject.ApplyModifiedProperties();
}
}
}
//
// video shaders
//
internal partial class GraphicsSettingsWindow
{
internal class VideoShadersEditor : Editor
{
SerializedProperty m_VideoShadersIncludeMode;
internal class Styles
{
public static GUIContent modeString = EditorGUIUtility.TrTextContent("Video", "Shaders used by the VideoPlayer decoding and compositing.");
}
public void OnEnable()
{
m_VideoShadersIncludeMode = serializedObject.FindProperty("m_VideoShadersIncludeMode");
}
public override void OnInspectorGUI()
{
serializedObject.Update();
EditorGUILayout.PropertyField(m_VideoShadersIncludeMode, Styles.modeString);
serializedObject.ApplyModifiedProperties();
}
}
}
//
// always included shaders
//
internal partial class GraphicsSettingsWindow
{
internal class AlwaysIncludedShadersEditor : Editor
{
SerializedProperty m_AlwaysIncludedShaders;
public void OnEnable()
{
m_AlwaysIncludedShaders = serializedObject.FindProperty("m_AlwaysIncludedShaders");
m_AlwaysIncludedShaders.isExpanded = true;
}
public override void OnInspectorGUI()
{
serializedObject.Update();
EditorGUILayout.PropertyField(m_AlwaysIncludedShaders, true);
serializedObject.ApplyModifiedProperties();
}
}
}
//
// shader stripping
//
internal partial class GraphicsSettingsWindow
{
internal class ShaderStrippingEditor : Editor
{
SerializedProperty m_LightmapStripping;
SerializedProperty m_LightmapKeepPlain;
SerializedProperty m_LightmapKeepDirCombined;
SerializedProperty m_LightmapKeepDynamicPlain;
SerializedProperty m_LightmapKeepDynamicDirCombined;
SerializedProperty m_LightmapKeepShadowMask;
SerializedProperty m_LightmapKeepSubtractive;
SerializedProperty m_FogStripping;
SerializedProperty m_FogKeepLinear;
SerializedProperty m_FogKeepExp;
SerializedProperty m_FogKeepExp2;
SerializedProperty m_InstancingStripping;
public void OnEnable()
{
m_LightmapStripping = serializedObject.FindProperty("m_LightmapStripping");
m_LightmapKeepPlain = serializedObject.FindProperty("m_LightmapKeepPlain");
m_LightmapKeepDirCombined = serializedObject.FindProperty("m_LightmapKeepDirCombined");
m_LightmapKeepDynamicPlain = serializedObject.FindProperty("m_LightmapKeepDynamicPlain");
m_LightmapKeepDynamicDirCombined = serializedObject.FindProperty("m_LightmapKeepDynamicDirCombined");
m_LightmapKeepShadowMask = serializedObject.FindProperty("m_LightmapKeepShadowMask");
m_LightmapKeepSubtractive = serializedObject.FindProperty("m_LightmapKeepSubtractive");
m_FogStripping = serializedObject.FindProperty("m_FogStripping");
m_FogKeepLinear = serializedObject.FindProperty("m_FogKeepLinear");
m_FogKeepExp = serializedObject.FindProperty("m_FogKeepExp");
m_FogKeepExp2 = serializedObject.FindProperty("m_FogKeepExp2");
m_InstancingStripping = serializedObject.FindProperty("m_InstancingStripping");
}
public override void OnInspectorGUI()
{
serializedObject.Update();
bool calcLightmapStripping = false, calcFogStripping = false;
EditorGUILayout.PropertyField(m_LightmapStripping, Styles.lightmapModes);
if (m_LightmapStripping.intValue != 0)
{
EditorGUI.indentLevel++;
EditorGUILayout.PropertyField(m_LightmapKeepPlain, Styles.lightmapPlain);
EditorGUILayout.PropertyField(m_LightmapKeepDirCombined, Styles.lightmapDirCombined);
EditorGUILayout.PropertyField(m_LightmapKeepDynamicPlain, Styles.lightmapDynamicPlain);
EditorGUILayout.PropertyField(m_LightmapKeepDynamicDirCombined, Styles.lightmapDynamicDirCombined);
EditorGUILayout.PropertyField(m_LightmapKeepShadowMask, Styles.lightmapKeepShadowMask);
EditorGUILayout.PropertyField(m_LightmapKeepSubtractive, Styles.lightmapKeepSubtractive);
EditorGUILayout.Space();
EditorGUILayout.BeginHorizontal();
EditorGUILayout.PrefixLabel(GUIContent.Temp(" "), EditorStyles.miniButton);
if (GUILayout.Button(Styles.lightmapFromScene, EditorStyles.miniButton, GUILayout.ExpandWidth(false)))
calcLightmapStripping = true;
EditorGUILayout.EndHorizontal();
EditorGUI.indentLevel--;
EditorGUILayout.Space();
}
EditorGUILayout.PropertyField(m_FogStripping, Styles.fogModes);
if (m_FogStripping.intValue != 0)
{
EditorGUI.indentLevel++;
EditorGUILayout.PropertyField(m_FogKeepLinear, Styles.fogLinear);
EditorGUILayout.PropertyField(m_FogKeepExp, Styles.fogExp);
EditorGUILayout.PropertyField(m_FogKeepExp2, Styles.fogExp2);
EditorGUILayout.Space();
EditorGUILayout.BeginHorizontal();
EditorGUILayout.PrefixLabel(GUIContent.Temp(" "), EditorStyles.miniButton);
if (GUILayout.Button(Styles.fogFromScene, EditorStyles.miniButton, GUILayout.ExpandWidth(false)))
calcFogStripping = true;
EditorGUILayout.EndHorizontal();
EditorGUI.indentLevel--;
EditorGUILayout.Space();
}
EditorGUILayout.PropertyField(m_InstancingStripping, Styles.instancingVariants);
serializedObject.ApplyModifiedProperties();
// need to do these after ApplyModifiedProperties, since it changes their values from native code
if (calcLightmapStripping)
ShaderUtil.CalculateLightmapStrippingFromCurrentScene();
if (calcFogStripping)
ShaderUtil.CalculateFogStrippingFromCurrentScene();
}
internal partial class Styles
{
public static readonly GUIContent shaderSettings = EditorGUIUtility.TrTextContent("Platform shader settings");
public static readonly GUIContent builtinSettings = EditorGUIUtility.TrTextContent("Built-in shader settings");
public static readonly GUIContent shaderPreloadSettings = EditorGUIUtility.TrTextContent("Shader preloading");
public static readonly GUIContent lightmapModes = EditorGUIUtility.TrTextContent("Lightmap Modes");
public static readonly GUIContent lightmapPlain = EditorGUIUtility.TrTextContent("Baked Non-Directional", "Include support for baked non-directional lightmaps.");
public static readonly GUIContent lightmapDirCombined = EditorGUIUtility.TrTextContent("Baked Directional", "Include support for baked directional lightmaps.");
public static readonly GUIContent lightmapKeepShadowMask = EditorGUIUtility.TrTextContent("Baked Shadowmask", "Include support for baked shadow occlusion.");
public static readonly GUIContent lightmapKeepSubtractive = EditorGUIUtility.TrTextContent("Baked Subtractive", "Include support for baked subtractive lightmaps.");
public static readonly GUIContent lightmapDynamicPlain = EditorGUIUtility.TrTextContent("Realtime Non-Directional", "Include support for realtime non-directional lightmaps.");
public static readonly GUIContent lightmapDynamicDirCombined = EditorGUIUtility.TrTextContent("Realtime Directional", "Include support for realtime directional lightmaps.");
public static readonly GUIContent lightmapFromScene = EditorGUIUtility.TrTextContent("Import From Current Scene", "Calculate lightmap modes used by the current scene.");
public static readonly GUIContent fogModes = EditorGUIUtility.TrTextContent("Fog Modes");
public static readonly GUIContent fogLinear = EditorGUIUtility.TrTextContent("Linear", "Include support for Linear fog.");
public static readonly GUIContent fogExp = EditorGUIUtility.TrTextContent("Exponential", "Include support for Exponential fog.");
public static readonly GUIContent fogExp2 = EditorGUIUtility.TrTextContent("Exponential Squared", "Include support for Exponential Squared fog.");
public static readonly GUIContent fogFromScene = EditorGUIUtility.TrTextContent("Import From Current Scene", "Calculate fog modes used by the current scene.");
public static readonly GUIContent instancingVariants = EditorGUIUtility.TrTextContent("Instancing Variants");
public static readonly GUIContent shaderPreloadSave = EditorGUIUtility.TrTextContent("Save to asset...", "Save currently tracked shaders into a Shader Variant Manifest asset.");
public static readonly GUIContent shaderPreloadClear = EditorGUIUtility.TrTextContent("Clear", "Clear currently tracked shader variant information.");
}
}
}
//
// preloaded shaders
//
internal partial class GraphicsSettingsWindow
{
internal class ShaderPreloadEditor : Editor
{
SerializedProperty m_PreloadedShaders;
public void OnEnable()
{
m_PreloadedShaders = serializedObject.FindProperty("m_PreloadedShaders");
m_PreloadedShaders.isExpanded = true;
}
public override void OnInspectorGUI()
{
serializedObject.Update();
serializedObject.ApplyModifiedProperties();
EditorGUILayout.PropertyField(m_PreloadedShaders, true);
EditorGUILayout.Space();
GUILayout.Label(
string.Format("Currently tracked: {0} shaders {1} total variants",
ShaderUtil.GetCurrentShaderVariantCollectionShaderCount(), ShaderUtil.GetCurrentShaderVariantCollectionVariantCount()
)
);
EditorGUILayout.BeginHorizontal();
GUILayout.FlexibleSpace();
if (GUILayout.Button(Styles.shaderPreloadSave, EditorStyles.miniButton))
{
string message = "Save shader variant collection";
string assetPath = EditorUtility.SaveFilePanelInProject("Save Shader Variant Collection", "NewShaderVariants", "shadervariants", message, ProjectWindowUtil.GetActiveFolderPath());
if (!string.IsNullOrEmpty(assetPath))
ShaderUtil.SaveCurrentShaderVariantCollection(assetPath);
GUIUtility.ExitGUI();
}
if (GUILayout.Button(Styles.shaderPreloadClear, EditorStyles.miniButton))
ShaderUtil.ClearCurrentShaderVariantCollection();
EditorGUILayout.EndHorizontal();
serializedObject.ApplyModifiedProperties();
}
internal partial class Styles
{
public static readonly GUIContent shaderPreloadSave = EditorGUIUtility.TrTextContent("Save to asset...", "Save currently tracked shaders into a Shader Variant Manifest asset.");
public static readonly GUIContent shaderPreloadClear = EditorGUIUtility.TrTextContent("Clear", "Clear currently tracked shader variant information.");
}
}
}
//
// tier settings
//
internal partial class GraphicsSettingsWindow
{
internal class TierSettingsEditor : Editor
{
public bool verticalLayout = false;
internal void OnFieldLabelsGUI(bool vertical)
{
if (!vertical)
EditorGUILayout.LabelField(Styles.standardShaderSettings, EditorStyles.boldLabel);
bool usingSRP = GraphicsSettings.currentRenderPipeline != null;
if (!usingSRP)
{
EditorGUILayout.LabelField(Styles.standardShaderQuality);
EditorGUILayout.LabelField(Styles.reflectionProbeBoxProjection);
EditorGUILayout.LabelField(Styles.reflectionProbeBlending);
EditorGUILayout.LabelField(Styles.detailNormalMap);
EditorGUILayout.LabelField(Styles.semitransparentShadows);
}
if (SupportedRenderingFeatures.active.lightProbeProxyVolumes)
EditorGUILayout.LabelField(Styles.enableLPPV);
if (!vertical)
{
EditorGUILayout.LabelField(Styles.empty, EditorStyles.boldLabel);
EditorGUILayout.LabelField(Styles.renderingSettings, EditorStyles.boldLabel);
}
if (!usingSRP)
{
EditorGUILayout.LabelField(Styles.cascadedShadowMaps);
EditorGUILayout.LabelField(Styles.prefer32BitShadowMaps);
EditorGUILayout.LabelField(Styles.useHDR);
}
EditorGUILayout.LabelField(Styles.hdrMode);
if (!usingSRP)
{
EditorGUILayout.LabelField(Styles.renderingPath);
}
if (SupportedRenderingFeatures.IsLightmapBakeTypeSupported(LightmapBakeType.Realtime))
EditorGUILayout.LabelField(Styles.realtimeGICPUUsage);
}
// custom enum handling
internal partial class Styles
{
public static readonly GUIContent[] shaderQualityName =
{ EditorGUIUtility.TrTextContent("Low"), EditorGUIUtility.TrTextContent("Medium"), EditorGUIUtility.TrTextContent("High") };
public static readonly int[] shaderQualityValue =
{ (int)ShaderQuality.Low, (int)ShaderQuality.Medium, (int)ShaderQuality.High };
public static readonly GUIContent[] renderingPathName =
{ EditorGUIUtility.TrTextContent("Forward"), EditorGUIUtility.TrTextContent("Deferred"), EditorGUIUtility.TrTextContent("Legacy Vertex Lit"), EditorGUIUtility.TrTextContent("Legacy Deferred (light prepass)") };
public static readonly int[] renderingPathValue =
{ (int)RenderingPath.Forward, (int)RenderingPath.DeferredShading, (int)RenderingPath.VertexLit, (int)RenderingPath.DeferredLighting };
public static readonly GUIContent[] hdrModeName =
{ EditorGUIUtility.TrTextContent("FP16"), EditorGUIUtility.TrTextContent("R11G11B10") };
public static readonly int[] hdrModeValue =
{ (int)CameraHDRMode.FP16, (int)CameraHDRMode.R11G11B10};
public static readonly GUIContent[] realtimeGICPUUsageName =
{ EditorGUIUtility.TrTextContent("Low"), EditorGUIUtility.TrTextContent("Medium"), EditorGUIUtility.TrTextContent("High"), EditorGUIUtility.TrTextContent("Unlimited")};
public static readonly int[] realtimeGICPUUsageValue =
{ (int)RealtimeGICPUUsage.Low, (int)RealtimeGICPUUsage.Medium, (int)RealtimeGICPUUsage.High, (int)RealtimeGICPUUsage.Unlimited };
}
internal ShaderQuality ShaderQualityPopup(ShaderQuality sq)
{
return (ShaderQuality)EditorGUILayout.IntPopup((int)sq, Styles.shaderQualityName, Styles.shaderQualityValue);
}
internal RenderingPath RenderingPathPopup(RenderingPath rp)
{
return (RenderingPath)EditorGUILayout.IntPopup((int)rp, Styles.renderingPathName, Styles.renderingPathValue);
}
internal CameraHDRMode HDRModePopup(CameraHDRMode mode)
{
return (CameraHDRMode)EditorGUILayout.IntPopup((int)mode, Styles.hdrModeName, Styles.hdrModeValue);
}
internal RealtimeGICPUUsage RealtimeGICPUUsagePopup(RealtimeGICPUUsage usage)
{
return (RealtimeGICPUUsage)EditorGUILayout.IntPopup((int)usage, Styles.realtimeGICPUUsageName, Styles.realtimeGICPUUsageValue);
}
internal void OnTierGUI(BuildTargetGroup platform, GraphicsTier tier, bool vertical)
{
TierSettings ts = EditorGraphicsSettings.GetTierSettings(platform, tier);
EditorGUI.BeginChangeCheck();
if (!vertical)
EditorGUILayout.LabelField(Styles.empty, EditorStyles.boldLabel);
bool usingSRP = GraphicsSettings.currentRenderPipeline != null;
if (!usingSRP)
{
ts.standardShaderQuality = ShaderQualityPopup(ts.standardShaderQuality);
ts.reflectionProbeBoxProjection = EditorGUILayout.Toggle(ts.reflectionProbeBoxProjection);
ts.reflectionProbeBlending = EditorGUILayout.Toggle(ts.reflectionProbeBlending);
ts.detailNormalMap = EditorGUILayout.Toggle(ts.detailNormalMap);
ts.semitransparentShadows = EditorGUILayout.Toggle(ts.semitransparentShadows);
}
if (SupportedRenderingFeatures.active.lightProbeProxyVolumes)
ts.enableLPPV = EditorGUILayout.Toggle(ts.enableLPPV);
if (!vertical)
{
EditorGUILayout.LabelField(Styles.empty, EditorStyles.boldLabel);
EditorGUILayout.LabelField(Styles.empty, EditorStyles.boldLabel);
}
if (!usingSRP)
{
ts.cascadedShadowMaps = EditorGUILayout.Toggle(ts.cascadedShadowMaps);
ts.prefer32BitShadowMaps = EditorGUILayout.Toggle(ts.prefer32BitShadowMaps);
ts.hdr = EditorGUILayout.Toggle(ts.hdr);
}
ts.hdrMode = HDRModePopup(ts.hdrMode);
if (!usingSRP)
ts.renderingPath = RenderingPathPopup(ts.renderingPath);
if (SupportedRenderingFeatures.IsLightmapBakeTypeSupported(LightmapBakeType.Realtime))
ts.realtimeGICPUUsage = RealtimeGICPUUsagePopup(ts.realtimeGICPUUsage);
if (EditorGUI.EndChangeCheck())
{
// TODO: it should be doable in c# now as we "expose" GraphicsSettings anyway
EditorGraphicsSettings.RegisterUndo();
EditorGraphicsSettings.SetTierSettings(platform, tier, ts);
}
}
internal void OnGuiHorizontal(BuildTargetGroup platform)
{
EditorGUILayout.BeginHorizontal();
EditorGUILayout.BeginVertical();
EditorGUIUtility.labelWidth = 140;
EditorGUILayout.LabelField(Styles.empty, EditorStyles.boldLabel);
OnFieldLabelsGUI(false);
EditorGUILayout.LabelField(Styles.empty, EditorStyles.boldLabel);
EditorGUILayout.LabelField(Styles.autoSettings, EditorStyles.boldLabel);
EditorGUILayout.EndVertical();
EditorGUIUtility.labelWidth = 50;
foreach (GraphicsTier tier in Enum.GetValues(typeof(GraphicsTier)))
{
bool autoSettings = EditorGraphicsSettings.AreTierSettingsAutomatic(platform, tier);
EditorGUILayout.BeginVertical();
EditorGUILayout.LabelField(Styles.tierName[(int)tier], EditorStyles.boldLabel);
using (new EditorGUI.DisabledScope(autoSettings))
OnTierGUI(platform, tier, false);
EditorGUILayout.LabelField(Styles.empty, EditorStyles.boldLabel);
EditorGUI.BeginChangeCheck();
autoSettings = EditorGUILayout.Toggle(autoSettings);
if (EditorGUI.EndChangeCheck())
{
EditorGraphicsSettings.RegisterUndo();
EditorGraphicsSettings.MakeTierSettingsAutomatic(platform, tier, autoSettings);
EditorGraphicsSettings.OnUpdateTierSettings(platform, true);
}
EditorGUILayout.EndVertical();
}
EditorGUIUtility.labelWidth = 0;
EditorGUILayout.EndHorizontal();
}
internal void OnGuiVertical(BuildTargetGroup platform)
{
EditorGUILayout.BeginVertical();
foreach (GraphicsTier tier in Enum.GetValues(typeof(GraphicsTier)))
{
bool autoSettings = EditorGraphicsSettings.AreTierSettingsAutomatic(platform, tier);
EditorGUI.BeginChangeCheck();
{
GUILayout.BeginHorizontal();
EditorGUIUtility.labelWidth = 80;
EditorGUILayout.LabelField(Styles.tierName[(int)tier], EditorStyles.boldLabel);
GUILayout.FlexibleSpace();
EditorGUIUtility.labelWidth = 80;
autoSettings = EditorGUILayout.Toggle(Styles.autoSettings, autoSettings);
GUILayout.EndHorizontal();
}
if (EditorGUI.EndChangeCheck())
{
EditorGraphicsSettings.RegisterUndo();
EditorGraphicsSettings.MakeTierSettingsAutomatic(platform, tier, autoSettings);
EditorGraphicsSettings.OnUpdateTierSettings(platform, true);
}
using (new EditorGUI.DisabledScope(autoSettings))
{
EditorGUI.indentLevel++;
EditorGUILayout.BeginHorizontal();
EditorGUILayout.BeginVertical();
EditorGUIUtility.labelWidth = 140;
OnFieldLabelsGUI(true);
EditorGUILayout.EndVertical();
EditorGUILayout.BeginVertical();
EditorGUIUtility.labelWidth = 50;
OnTierGUI(platform, tier, true);
EditorGUILayout.EndVertical();
GUILayout.EndHorizontal();
EditorGUI.indentLevel--;
}
}
GUILayout.EndVertical();
EditorGUIUtility.labelWidth = 0;
}
public override void OnInspectorGUI()
{
BuildPlatform[] validPlatforms = BuildPlatforms.instance.GetValidPlatforms().ToArray();
BuildTargetGroup platform = validPlatforms[EditorGUILayout.BeginPlatformGrouping(validPlatforms, null, EditorStyles.frameBox)].targetGroup;
if (verticalLayout) OnGuiVertical(platform);
else OnGuiHorizontal(platform);
EditorGUILayout.EndPlatformGrouping();
}
internal partial class Styles
{
public static readonly GUIContent[] tierName =
{ EditorGUIUtility.TrTextContent("Low (Tier1)"), EditorGUIUtility.TrTextContent("Medium (Tier 2)"), EditorGUIUtility.TrTextContent("High (Tier 3)") };
public static readonly GUIContent empty = EditorGUIUtility.TextContent("");
public static readonly GUIContent autoSettings = EditorGUIUtility.TrTextContent("Use Defaults");
public static readonly GUIContent standardShaderSettings = EditorGUIUtility.TrTextContent("Standard Shader");
public static readonly GUIContent renderingSettings = EditorGUIUtility.TrTextContent("Rendering");
public static readonly GUIContent standardShaderQuality = EditorGUIUtility.TrTextContent("Standard Shader Quality");
public static readonly GUIContent reflectionProbeBoxProjection = EditorGUIUtility.TrTextContent("Reflection Probes Box Projection");
public static readonly GUIContent reflectionProbeBlending = EditorGUIUtility.TrTextContent("Reflection Probes Blending");
public static readonly GUIContent detailNormalMap = EditorGUIUtility.TrTextContent("Detail Normal Map");
public static readonly GUIContent cascadedShadowMaps = EditorGUIUtility.TrTextContent("Cascaded Shadows");
public static readonly GUIContent prefer32BitShadowMaps = EditorGUIUtility.TrTextContent("Prefer 32-bit shadow maps");
public static readonly GUIContent semitransparentShadows = EditorGUIUtility.TrTextContent("Enable Semitransparent Shadows");
public static readonly GUIContent enableLPPV = EditorGUIUtility.TrTextContent("Enable Light Probe Proxy Volume");
public static readonly GUIContent renderingPath = EditorGUIUtility.TrTextContent("Rendering Path");
public static readonly GUIContent useHDR = EditorGUIUtility.TrTextContent("Use HDR");
public static readonly GUIContent hdrMode = EditorGUIUtility.TrTextContent("HDR Mode");
public static readonly GUIContent realtimeGICPUUsage = EditorGUIUtility.TrTextContent("Realtime Global Illumination CPU Usage", "How many CPU worker threads to create for Realtime Global Illumination lighting calculations in the Player. Increasing this makes the system react faster to changes in lighting at a cost of using more CPU time. The higher the CPU Usage value, the more worker threads are created for solving Realtime GI.");
}
}
}
}