71 lines
2.4 KiB
C#
Executable File
71 lines
2.4 KiB
C#
Executable File
//
|
|
// Copyright 2017-2023 Valve Corporation.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
//
|
|
|
|
using UnityEngine;
|
|
using UnityEditor;
|
|
|
|
namespace SteamAudio
|
|
{
|
|
[CustomEditor(typeof(SteamAudioGeometry))]
|
|
[CanEditMultipleObjects]
|
|
public class SteamAudioGeometryInspector : Editor
|
|
{
|
|
#if STEAMAUDIO_ENABLED
|
|
SerializedProperty mMaterial;
|
|
SerializedProperty mExportAllChildren;
|
|
SerializedProperty mTerrainSimplificationLevel;
|
|
|
|
private void OnEnable()
|
|
{
|
|
mMaterial = serializedObject.FindProperty("material");
|
|
mExportAllChildren = serializedObject.FindProperty("exportAllChildren");
|
|
mTerrainSimplificationLevel = serializedObject.FindProperty("terrainSimplificationLevel");
|
|
}
|
|
|
|
public override void OnInspectorGUI()
|
|
{
|
|
serializedObject.Update();
|
|
|
|
var tgt = target as SteamAudioGeometry;
|
|
|
|
EditorGUILayout.PropertyField(mMaterial);
|
|
|
|
if (tgt.transform.childCount != 0)
|
|
{
|
|
EditorGUILayout.PropertyField(mExportAllChildren);
|
|
}
|
|
|
|
if (tgt.gameObject.GetComponent<Terrain>() != null)
|
|
{
|
|
EditorGUILayout.PropertyField(mTerrainSimplificationLevel);
|
|
}
|
|
|
|
EditorGUILayout.Space();
|
|
EditorGUILayout.LabelField("Geometry Statistics", EditorStyles.boldLabel);
|
|
EditorGUILayout.LabelField("Vertices", tgt.GetNumVertices().ToString());
|
|
EditorGUILayout.LabelField("Triangles", tgt.GetNumTriangles().ToString());
|
|
|
|
serializedObject.ApplyModifiedProperties();
|
|
}
|
|
#else
|
|
public override void OnInspectorGUI()
|
|
{
|
|
EditorGUILayout.HelpBox("Steam Audio is not supported for the target platform or STEAMAUDIO_ENABLED define symbol is missing.", MessageType.Warning);
|
|
}
|
|
#endif
|
|
}
|
|
}
|