2026-04-23 클리어 효과
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
{
|
||||
"name": "TextMeshProEffect.Editor",
|
||||
"references": [
|
||||
"GUID:7d8e9e122924faa4bb27c57e77d13ce7"
|
||||
],
|
||||
"includePlatforms": [
|
||||
"Editor"
|
||||
],
|
||||
"excludePlatforms": [],
|
||||
"allowUnsafeCode": false,
|
||||
"overrideReferences": false,
|
||||
"precompiledReferences": [],
|
||||
"autoReferenced": true,
|
||||
"defineConstraints": [],
|
||||
"versionDefines": [],
|
||||
"noEngineReferences": false
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
fileFormatVersion: 2
|
||||
guid: f60cd03d3d4d02042aeeb7482062c973
|
||||
AssemblyDefinitionImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 156234
|
||||
packageName: TextMesh Pro Effect
|
||||
packageVersion: 1.63
|
||||
assetPath: Assets/TextMesh Pro Effect/Editor/TextMeshProEffect.Editor.asmdef
|
||||
uploadId: 755994
|
||||
27
Assets/TextMesh Pro Effect/Editor/TextMeshProEffectEditor.cs
Normal file
27
Assets/TextMesh Pro Effect/Editor/TextMeshProEffectEditor.cs
Normal file
@@ -0,0 +1,27 @@
|
||||
// ReSharper disable InconsistentNaming
|
||||
// ReSharper disable CheckNamespace
|
||||
#pragma warning disable 0649
|
||||
using UnityEditor;
|
||||
using UnityEngine;
|
||||
|
||||
namespace TMPro.Editor
|
||||
{
|
||||
[CustomEditor(typeof(TextMeshProEffect))]
|
||||
public class TextMeshProEffectEditor : UnityEditor.Editor
|
||||
{
|
||||
public override bool RequiresConstantRepaint()
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
public override void OnInspectorGUI()
|
||||
{
|
||||
if (!Application.isPlaying)
|
||||
{
|
||||
EditorApplication.QueuePlayerLoopUpdate();
|
||||
SceneView.RepaintAll();
|
||||
}
|
||||
base.OnInspectorGUI();
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 1df4a663e3074434940d6a419e9e0016
|
||||
timeCreated: 1597000388
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 156234
|
||||
packageName: TextMesh Pro Effect
|
||||
packageVersion: 1.63
|
||||
assetPath: Assets/TextMesh Pro Effect/Editor/TextMeshProEffectEditor.cs
|
||||
uploadId: 755994
|
||||
Reference in New Issue
Block a user