chore: initial commit
This commit is contained in:
23
Packages/com.opsive.shared/Editor/Import/ImportStatus.cs
Normal file
23
Packages/com.opsive.shared/Editor/Import/ImportStatus.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
/// ---------------------------------------------
|
||||
/// Opsive Shared
|
||||
/// Copyright (c) Opsive. All Rights Reserved.
|
||||
/// https://www.opsive.com
|
||||
/// ---------------------------------------------
|
||||
namespace Opsive.Shared.Editor.Import
|
||||
{
|
||||
using UnityEngine;
|
||||
|
||||
/// <summary>
|
||||
/// Small ScriptableObject which shows the import window if it has not been shown.
|
||||
/// </summary>
|
||||
public class ImportStatus : ScriptableObject
|
||||
{
|
||||
[Tooltip("Has the Character Controller Update Project Settings window been shown?")]
|
||||
[SerializeField] protected bool m_CharacterProjectSettingsShown;
|
||||
[Tooltip("Has the Behavior Designer Welcome window been shown?")]
|
||||
[SerializeField] protected bool m_BehaviorWindowShown;
|
||||
|
||||
public bool CharacterProjectSettingsShown { get { return m_CharacterProjectSettingsShown; } set { m_CharacterProjectSettingsShown = value; } }
|
||||
public bool BehaviorWindowShown { get { return m_BehaviorWindowShown; } set { m_BehaviorWindowShown = value; } }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: f9a6fcaab71877649a4598d315010679
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,16 @@
|
||||
{
|
||||
"name": "Opsive.Shared.Editor.Import",
|
||||
"rootNamespace": "",
|
||||
"references": [],
|
||||
"includePlatforms": [
|
||||
"Editor"
|
||||
],
|
||||
"excludePlatforms": [],
|
||||
"allowUnsafeCode": false,
|
||||
"overrideReferences": false,
|
||||
"precompiledReferences": [],
|
||||
"autoReferenced": true,
|
||||
"defineConstraints": [],
|
||||
"versionDefines": [],
|
||||
"noEngineReferences": false
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 27cb7fd045e5bb44f8c617ce69325b1d
|
||||
AssemblyDefinitionImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
Reference in New Issue
Block a user