jp.keijiro.klutter-tools 2.1.0 → 2.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Editor/InspectorNoteEditor.cs +41 -0
- package/Editor/InspectorNoteEditor.cs.meta +2 -0
- package/Editor/InspectorNoteEditor.uxml +18 -0
- package/Editor/InspectorNoteEditor.uxml.meta +10 -0
- package/Editor/InspectorNoteIcon.png +0 -0
- package/Editor/InspectorNoteIcon.png.meta +156 -0
- package/Editor/KlutterTools.Editor.asmdef +3 -1
- package/Runtime/InspectorNote.cs +28 -0
- package/Runtime/InspectorNote.cs.meta +11 -0
- package/Runtime/KlutterTools.Runtime.asmdef +3 -0
- package/Runtime/KlutterTools.Runtime.asmdef.meta +7 -0
- package/Runtime.meta +8 -0
- package/package.json +1 -1
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
using UnityEditor;
|
|
2
|
+
using UnityEngine;
|
|
3
|
+
using UnityEngine.UIElements;
|
|
4
|
+
using UnityEditor.UIElements;
|
|
5
|
+
|
|
6
|
+
namespace KlutterTools {
|
|
7
|
+
|
|
8
|
+
[CustomEditor(typeof(InspectorNote))]
|
|
9
|
+
sealed class InspectorNoteEditor : Editor
|
|
10
|
+
{
|
|
11
|
+
const string AssetPath = "Packages/jp.keijiro.klutter-tools/Editor/InspectorNoteEditor.uxml";
|
|
12
|
+
|
|
13
|
+
public override VisualElement CreateInspectorGUI()
|
|
14
|
+
{
|
|
15
|
+
var uxml = AssetDatabase.LoadAssetAtPath<VisualTreeAsset>(AssetPath);
|
|
16
|
+
|
|
17
|
+
var doc = uxml.Instantiate();
|
|
18
|
+
doc.dataSource = target;
|
|
19
|
+
|
|
20
|
+
var showEditorProp = serializedObject.FindProperty("_showEditor");
|
|
21
|
+
var noteEditor = doc.Q("note-editor");
|
|
22
|
+
var doneButton = doc.Q<Button>("done-button");
|
|
23
|
+
|
|
24
|
+
if (!showEditorProp.boolValue)
|
|
25
|
+
noteEditor.style.display = DisplayStyle.None;
|
|
26
|
+
|
|
27
|
+
noteEditor.TrackPropertyValue(showEditorProp, prop => {
|
|
28
|
+
noteEditor.style.display =
|
|
29
|
+
prop.boolValue ? DisplayStyle.Flex : DisplayStyle.None;
|
|
30
|
+
});
|
|
31
|
+
|
|
32
|
+
doneButton.clicked += () => {
|
|
33
|
+
showEditorProp.boolValue = false;
|
|
34
|
+
serializedObject.ApplyModifiedProperties();
|
|
35
|
+
};
|
|
36
|
+
|
|
37
|
+
return doc;
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
} // namespace KlutterTools
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
<ui:UXML xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:ui="UnityEngine.UIElements" xmlns:uie="UnityEditor.UIElements" noNamespaceSchemaLocation="../UIElementsSchema/UIElements.xsd" editor-extension-mode="True">
|
|
2
|
+
<ui:VisualElement data-source-type="KlutterTools.InspectorNote, KlutterTools.Runtime" name="note" style="margin-top: 7px; margin-right: 9px; margin-bottom: 2px; margin-left: 0; padding-top: 6px; padding-right: 6px; padding-bottom: 6px; padding-left: 6px; border-top-left-radius: 4px; border-top-right-radius: 4px; border-bottom-right-radius: 4px; border-bottom-left-radius: 4px;">
|
|
3
|
+
<ui:Label text="Note Body" binding-path="_noteText" style="white-space: normal;">
|
|
4
|
+
<Bindings>
|
|
5
|
+
<ui:DataBinding property="style.color" data-source-path="_textColor" binding-mode="ToTarget" />
|
|
6
|
+
</Bindings>
|
|
7
|
+
</ui:Label>
|
|
8
|
+
<Bindings>
|
|
9
|
+
<ui:DataBinding property="style.backgroundColor" data-source-path="_backgroundColor" binding-mode="ToTarget" />
|
|
10
|
+
</Bindings>
|
|
11
|
+
</ui:VisualElement>
|
|
12
|
+
<ui:VisualElement name="note-editor">
|
|
13
|
+
<ui:TextField binding-path="_noteText" multiline="true" style="white-space: normal; margin-top: 10px; margin-bottom: 8px;" />
|
|
14
|
+
<uie:ColorField label="Text" binding-path="_textColor" />
|
|
15
|
+
<uie:ColorField label="Background" binding-path="_backgroundColor" style="margin-top: 4px; margin-bottom: 4px;" />
|
|
16
|
+
<ui:Button text="Done" name="done-button" />
|
|
17
|
+
</ui:VisualElement>
|
|
18
|
+
</ui:UXML>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
fileFormatVersion: 2
|
|
2
|
+
guid: c8294822f0f064673868d67ecdf56c88
|
|
3
|
+
ScriptedImporter:
|
|
4
|
+
internalIDToNameTable: []
|
|
5
|
+
externalObjects: {}
|
|
6
|
+
serializedVersion: 2
|
|
7
|
+
userData:
|
|
8
|
+
assetBundleName:
|
|
9
|
+
assetBundleVariant:
|
|
10
|
+
script: {fileID: 13804, guid: 0000000000000000e000000000000000, type: 0}
|
|
Binary file
|
|
@@ -0,0 +1,156 @@
|
|
|
1
|
+
fileFormatVersion: 2
|
|
2
|
+
guid: 30c8908d55ef34874b50013fd7e60446
|
|
3
|
+
TextureImporter:
|
|
4
|
+
internalIDToNameTable: []
|
|
5
|
+
externalObjects: {}
|
|
6
|
+
serializedVersion: 13
|
|
7
|
+
mipmaps:
|
|
8
|
+
mipMapMode: 0
|
|
9
|
+
enableMipMap: 0
|
|
10
|
+
sRGBTexture: 1
|
|
11
|
+
linearTexture: 0
|
|
12
|
+
fadeOut: 0
|
|
13
|
+
borderMipMap: 0
|
|
14
|
+
mipMapsPreserveCoverage: 0
|
|
15
|
+
alphaTestReferenceValue: 0.5
|
|
16
|
+
mipMapFadeDistanceStart: 1
|
|
17
|
+
mipMapFadeDistanceEnd: 3
|
|
18
|
+
bumpmap:
|
|
19
|
+
convertToNormalMap: 0
|
|
20
|
+
externalNormalMap: 0
|
|
21
|
+
heightScale: 0.25
|
|
22
|
+
normalMapFilter: 0
|
|
23
|
+
flipGreenChannel: 0
|
|
24
|
+
isReadable: 0
|
|
25
|
+
streamingMipmaps: 0
|
|
26
|
+
streamingMipmapsPriority: 0
|
|
27
|
+
vTOnly: 0
|
|
28
|
+
ignoreMipmapLimit: 0
|
|
29
|
+
grayScaleToAlpha: 0
|
|
30
|
+
generateCubemap: 6
|
|
31
|
+
cubemapConvolution: 0
|
|
32
|
+
seamlessCubemap: 0
|
|
33
|
+
textureFormat: 1
|
|
34
|
+
maxTextureSize: 2048
|
|
35
|
+
textureSettings:
|
|
36
|
+
serializedVersion: 2
|
|
37
|
+
filterMode: 1
|
|
38
|
+
aniso: 1
|
|
39
|
+
mipBias: 0
|
|
40
|
+
wrapU: 1
|
|
41
|
+
wrapV: 1
|
|
42
|
+
wrapW: 0
|
|
43
|
+
nPOTScale: 0
|
|
44
|
+
lightmap: 0
|
|
45
|
+
compressionQuality: 50
|
|
46
|
+
spriteMode: 0
|
|
47
|
+
spriteExtrude: 1
|
|
48
|
+
spriteMeshType: 1
|
|
49
|
+
alignment: 0
|
|
50
|
+
spritePivot: {x: 0.5, y: 0.5}
|
|
51
|
+
spritePixelsToUnits: 100
|
|
52
|
+
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
|
|
53
|
+
spriteGenerateFallbackPhysicsShape: 1
|
|
54
|
+
alphaUsage: 1
|
|
55
|
+
alphaIsTransparency: 1
|
|
56
|
+
spriteTessellationDetail: -1
|
|
57
|
+
textureType: 2
|
|
58
|
+
textureShape: 1
|
|
59
|
+
singleChannelComponent: 0
|
|
60
|
+
flipbookRows: 1
|
|
61
|
+
flipbookColumns: 1
|
|
62
|
+
maxTextureSizeSet: 0
|
|
63
|
+
compressionQualitySet: 0
|
|
64
|
+
textureFormatSet: 0
|
|
65
|
+
ignorePngGamma: 0
|
|
66
|
+
applyGammaDecoding: 0
|
|
67
|
+
swizzle: 50462976
|
|
68
|
+
cookieLightType: 0
|
|
69
|
+
platformSettings:
|
|
70
|
+
- serializedVersion: 4
|
|
71
|
+
buildTarget: DefaultTexturePlatform
|
|
72
|
+
maxTextureSize: 2048
|
|
73
|
+
resizeAlgorithm: 0
|
|
74
|
+
textureFormat: -1
|
|
75
|
+
textureCompression: 0
|
|
76
|
+
compressionQuality: 50
|
|
77
|
+
crunchedCompression: 0
|
|
78
|
+
allowsAlphaSplitting: 0
|
|
79
|
+
overridden: 0
|
|
80
|
+
ignorePlatformSupport: 0
|
|
81
|
+
androidETC2FallbackOverride: 0
|
|
82
|
+
forceMaximumCompressionQuality_BC6H_BC7: 0
|
|
83
|
+
- serializedVersion: 4
|
|
84
|
+
buildTarget: Standalone
|
|
85
|
+
maxTextureSize: 2048
|
|
86
|
+
resizeAlgorithm: 0
|
|
87
|
+
textureFormat: -1
|
|
88
|
+
textureCompression: 1
|
|
89
|
+
compressionQuality: 50
|
|
90
|
+
crunchedCompression: 0
|
|
91
|
+
allowsAlphaSplitting: 0
|
|
92
|
+
overridden: 0
|
|
93
|
+
ignorePlatformSupport: 0
|
|
94
|
+
androidETC2FallbackOverride: 0
|
|
95
|
+
forceMaximumCompressionQuality_BC6H_BC7: 0
|
|
96
|
+
- serializedVersion: 4
|
|
97
|
+
buildTarget: Android
|
|
98
|
+
maxTextureSize: 2048
|
|
99
|
+
resizeAlgorithm: 0
|
|
100
|
+
textureFormat: -1
|
|
101
|
+
textureCompression: 1
|
|
102
|
+
compressionQuality: 50
|
|
103
|
+
crunchedCompression: 0
|
|
104
|
+
allowsAlphaSplitting: 0
|
|
105
|
+
overridden: 0
|
|
106
|
+
ignorePlatformSupport: 0
|
|
107
|
+
androidETC2FallbackOverride: 0
|
|
108
|
+
forceMaximumCompressionQuality_BC6H_BC7: 0
|
|
109
|
+
- serializedVersion: 4
|
|
110
|
+
buildTarget: WebGL
|
|
111
|
+
maxTextureSize: 2048
|
|
112
|
+
resizeAlgorithm: 0
|
|
113
|
+
textureFormat: -1
|
|
114
|
+
textureCompression: 1
|
|
115
|
+
compressionQuality: 50
|
|
116
|
+
crunchedCompression: 0
|
|
117
|
+
allowsAlphaSplitting: 0
|
|
118
|
+
overridden: 0
|
|
119
|
+
ignorePlatformSupport: 0
|
|
120
|
+
androidETC2FallbackOverride: 0
|
|
121
|
+
forceMaximumCompressionQuality_BC6H_BC7: 0
|
|
122
|
+
- serializedVersion: 4
|
|
123
|
+
buildTarget: iOS
|
|
124
|
+
maxTextureSize: 2048
|
|
125
|
+
resizeAlgorithm: 0
|
|
126
|
+
textureFormat: -1
|
|
127
|
+
textureCompression: 1
|
|
128
|
+
compressionQuality: 50
|
|
129
|
+
crunchedCompression: 0
|
|
130
|
+
allowsAlphaSplitting: 0
|
|
131
|
+
overridden: 0
|
|
132
|
+
ignorePlatformSupport: 0
|
|
133
|
+
androidETC2FallbackOverride: 0
|
|
134
|
+
forceMaximumCompressionQuality_BC6H_BC7: 0
|
|
135
|
+
spriteSheet:
|
|
136
|
+
serializedVersion: 2
|
|
137
|
+
sprites: []
|
|
138
|
+
outline: []
|
|
139
|
+
customData:
|
|
140
|
+
physicsShape: []
|
|
141
|
+
bones: []
|
|
142
|
+
spriteID:
|
|
143
|
+
internalID: 0
|
|
144
|
+
vertices: []
|
|
145
|
+
indices:
|
|
146
|
+
edges: []
|
|
147
|
+
weights: []
|
|
148
|
+
secondaryTextures: []
|
|
149
|
+
spriteCustomMetadata:
|
|
150
|
+
entries: []
|
|
151
|
+
nameFileIdTable: {}
|
|
152
|
+
mipmapLimitGroupName:
|
|
153
|
+
pSDRemoveMatte: 0
|
|
154
|
+
userData:
|
|
155
|
+
assetBundleName:
|
|
156
|
+
assetBundleVariant:
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
using UnityEngine;
|
|
2
|
+
|
|
3
|
+
namespace KlutterTools {
|
|
4
|
+
|
|
5
|
+
[AddComponentMenu("Miscellaneous/Note")]
|
|
6
|
+
public sealed class InspectorNote : MonoBehaviour
|
|
7
|
+
{
|
|
8
|
+
#if UNITY_EDITOR
|
|
9
|
+
|
|
10
|
+
#pragma warning disable CS0414
|
|
11
|
+
|
|
12
|
+
[SerializeField] string _noteText =
|
|
13
|
+
"To edit the note, select \"Edit Note\" from the context menu.";
|
|
14
|
+
|
|
15
|
+
[SerializeField] bool _showEditor = false;
|
|
16
|
+
|
|
17
|
+
[SerializeField] Color _textColor = new Color32(210, 210, 210, 255);
|
|
18
|
+
[SerializeField] Color _backgroundColor = new Color32(38, 38, 38, 255);
|
|
19
|
+
|
|
20
|
+
#pragma warning restore CS0414
|
|
21
|
+
|
|
22
|
+
[ContextMenu("Edit Note")]
|
|
23
|
+
void ShowNoteEditor() => _showEditor = true;
|
|
24
|
+
|
|
25
|
+
#endif
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
} // namespace KlutterTools
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
fileFormatVersion: 2
|
|
2
|
+
guid: 21721932ed30c48dba1da51b0969cfe9
|
|
3
|
+
MonoImporter:
|
|
4
|
+
externalObjects: {}
|
|
5
|
+
serializedVersion: 2
|
|
6
|
+
defaultReferences: []
|
|
7
|
+
executionOrder: 0
|
|
8
|
+
icon: {fileID: 2800000, guid: 30c8908d55ef34874b50013fd7e60446, type: 3}
|
|
9
|
+
userData:
|
|
10
|
+
assetBundleName:
|
|
11
|
+
assetBundleVariant:
|
package/Runtime.meta
ADDED