first commit
This commit is contained in:
@@ -0,0 +1,43 @@
|
||||
// Copyright (C) 2014-2024 Gleechi Technology AB. All rights reserved.
|
||||
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
|
||||
#if UNITY_EDITOR
|
||||
using UnityEditor;
|
||||
|
||||
/*
|
||||
namespace VirtualGrasp.Scripts
|
||||
{
|
||||
[CustomEditor(typeof(VG_Recorder))]
|
||||
[CanEditMultipleObjects]
|
||||
public class VG_RecorderEditor : UnityEditor.Editor
|
||||
{
|
||||
|
||||
public override void OnInspectorGUI()
|
||||
{
|
||||
serializedObject.Update();
|
||||
|
||||
EditorGUILayout.PropertyField(serializedObject.FindProperty("m_Script"));
|
||||
|
||||
SerializedProperty replay = serializedObject.FindProperty("m_replayFromMemory");
|
||||
EditorGUILayout.PropertyField(replay);
|
||||
|
||||
EditorGUI.BeginDisabledGroup(replay.boolValue);
|
||||
|
||||
EditorGUILayout.PropertyField(serializedObject.FindProperty("m_newRecordingPath"));
|
||||
|
||||
EditorGUILayout.PropertyField(serializedObject.FindProperty("m_replayRecording"));
|
||||
|
||||
EditorGUI.EndDisabledGroup();
|
||||
|
||||
DrawPropertiesExcluding(serializedObject, new string[] { "m_Script", "m_replayFromMemory", "m_newRecordingPath", "m_replayRecording" });
|
||||
|
||||
serializedObject.ApplyModifiedProperties();
|
||||
}
|
||||
}
|
||||
}
|
||||
*/
|
||||
|
||||
#endif
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 79e21df2224b51d49bef41e810e7436e
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
Reference in New Issue
Block a user