@@ -44,36 +44,40 @@ protected override void OnDrawScrollableWindow()
4444 DrawItem ( "Master Texture Limit:" , QualitySettings . masterTextureLimit . ToString ( ) ) ;
4545 DrawItem ( "Anisotropic Filtering:" , QualitySettings . anisotropicFiltering . ToString ( ) ) ;
4646 DrawItem ( "Anti Aliasing:" , QualitySettings . antiAliasing . ToString ( ) ) ;
47+ #if UNITY_5_5_OR_NEWER
48+ DrawItem ( "Soft Particles:" , QualitySettings . softParticles . ToString ( ) ) ;
49+ #endif
50+ DrawItem ( "Soft Vegetation:" , QualitySettings . softVegetation . ToString ( ) ) ;
4751 DrawItem ( "Realtime Reflection Probes:" , QualitySettings . realtimeReflectionProbes . ToString ( ) ) ;
4852 DrawItem ( "Billboards Face Camera Position:" , QualitySettings . billboardsFaceCameraPosition . ToString ( ) ) ;
4953#if UNITY_2017_1_OR_NEWER
5054 DrawItem ( "Resolution Scaling Fixed DPI Factor:" , QualitySettings . resolutionScalingFixedDPIFactor . ToString ( ) ) ;
5155#endif
5256#if UNITY_2018_2_OR_NEWER
53- DrawItem ( "Streaming Mipmaps Active " , QualitySettings . streamingMipmapsActive . ToString ( ) ) ;
54- DrawItem ( "Streaming Mipmaps Add All Cameras" , QualitySettings . streamingMipmapsAddAllCameras . ToString ( ) ) ;
55- DrawItem ( "Streaming Mipmaps Memory Budget" , QualitySettings . streamingMipmapsMemoryBudget . ToString ( ) ) ;
56- DrawItem ( "Streaming Mipmaps Renderers Per Frame" , QualitySettings . streamingMipmapsRenderersPerFrame . ToString ( ) ) ;
57- DrawItem ( "Streaming Mipmaps Max Level Reduction" , QualitySettings . streamingMipmapsMaxLevelReduction . ToString ( ) ) ;
58- DrawItem ( "Streaming Mipmaps Max File IO Requests" , QualitySettings . streamingMipmapsMaxFileIORequests . ToString ( ) ) ;
57+ DrawItem ( "Texture Streaming Enabled " , QualitySettings . streamingMipmapsActive . ToString ( ) ) ;
58+ DrawItem ( "Texture Streaming Add All Cameras" , QualitySettings . streamingMipmapsAddAllCameras . ToString ( ) ) ;
59+ DrawItem ( "Texture Streaming Memory Budget" , QualitySettings . streamingMipmapsMemoryBudget . ToString ( ) ) ;
60+ DrawItem ( "Texture Streaming Renderers Per Frame" , QualitySettings . streamingMipmapsRenderersPerFrame . ToString ( ) ) ;
61+ DrawItem ( "Texture Streaming Max Level Reduction" , QualitySettings . streamingMipmapsMaxLevelReduction . ToString ( ) ) ;
62+ DrawItem ( "Texture Streaming Max File IO Requests" , QualitySettings . streamingMipmapsMaxFileIORequests . ToString ( ) ) ;
5963#endif
6064 }
6165 GUILayout . EndVertical ( ) ;
6266
6367 GUILayout . Label ( "<b>Shadows Information</b>" ) ;
6468 GUILayout . BeginVertical ( "box" ) ;
6569 {
66- #if UNITY_5_4_OR_NEWER
67- DrawItem ( "Shadow Resolution :" , QualitySettings . shadowResolution . ToString ( ) ) ;
70+ #if UNITY_2017_1_OR_NEWER
71+ DrawItem ( "Shadowmask Mode :" , QualitySettings . shadowmaskMode . ToString ( ) ) ;
6872#endif
6973#if UNITY_5_5_OR_NEWER
7074 DrawItem ( "Shadow Quality:" , QualitySettings . shadows . ToString ( ) ) ;
75+ #endif
76+ #if UNITY_5_4_OR_NEWER
77+ DrawItem ( "Shadow Resolution:" , QualitySettings . shadowResolution . ToString ( ) ) ;
7178#endif
7279 DrawItem ( "Shadow Projection:" , QualitySettings . shadowProjection . ToString ( ) ) ;
7380 DrawItem ( "Shadow Distance:" , QualitySettings . shadowDistance . ToString ( ) ) ;
74- #if UNITY_2017_1_OR_NEWER
75- DrawItem ( "Shadowmask Mode:" , QualitySettings . shadowmaskMode . ToString ( ) ) ;
76- #endif
7781 DrawItem ( "Shadow Near Plane Offset:" , QualitySettings . shadowNearPlaneOffset . ToString ( ) ) ;
7882 DrawItem ( "Shadow Cascades:" , QualitySettings . shadowCascades . ToString ( ) ) ;
7983 DrawItem ( "Shadow Cascade 2 Split:" , QualitySettings . shadowCascade2Split . ToString ( ) ) ;
@@ -91,10 +95,9 @@ protected override void OnDrawScrollableWindow()
9195 DrawItem ( "Particle Raycast Budget:" , QualitySettings . particleRaycastBudget . ToString ( ) ) ;
9296 DrawItem ( "Async Upload Time Slice:" , Utility . Text . Format ( "{0} ms" , QualitySettings . asyncUploadTimeSlice . ToString ( ) ) ) ;
9397 DrawItem ( "Async Upload Buffer Size:" , Utility . Text . Format ( "{0} MB" , QualitySettings . asyncUploadBufferSize . ToString ( ) ) ) ;
94- #if UNITY_5_5_OR_NEWER
95- DrawItem ( "Soft Particles :" , QualitySettings . softParticles . ToString ( ) ) ;
98+ #if UNITY_2018_3_OR_NEWER
99+ DrawItem ( "Async Upload Persistent Buffer :" , QualitySettings . asyncUploadPersistentBuffer . ToString ( ) ) ;
96100#endif
97- DrawItem ( "Soft Vegetation:" , QualitySettings . softVegetation . ToString ( ) ) ;
98101 }
99102 GUILayout . EndVertical ( ) ;
100103 }
0 commit comments