com.wallstop-studios.dxmessaging 3.2.0 → 3.2.1
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/CHANGELOG.md +40 -0
- package/Editor/Analyzers/DxMessagingConsoleHarvester.cs +8 -8
- package/Editor/CustomEditors/MessageAwareComponentFallbackEditor.cs +171 -13
- package/Editor/CustomEditors/MessageAwareComponentInspectorOverlay.cs +391 -96
- package/Editor/CustomEditors/MessageAwareComponentInspectorView.cs +279 -0
- package/Editor/CustomEditors/MessageAwareComponentInspectorView.cs.meta +11 -0
- package/Editor/DxMessagingEditorPalette.cs +66 -0
- package/Editor/DxMessagingEditorPalette.cs.meta +11 -0
- package/Editor/DxMessagingEditorTheme.cs +200 -0
- package/Editor/DxMessagingEditorTheme.cs.meta +11 -0
- package/Editor/Icons/dxmessaging-icon-256.png +0 -0
- package/Editor/Icons/dxmessaging-icon-256.png.meta +156 -0
- package/Editor/Icons/dxmessaging-icon-32.png +0 -0
- package/Editor/Icons/dxmessaging-icon-32.png.meta +156 -0
- package/Editor/Icons/dxmessaging-icon-48.png +0 -0
- package/Editor/Icons/dxmessaging-icon-48.png.meta +156 -0
- package/Editor/Icons.meta +8 -0
- package/Editor/Settings/DxMessagingSettingsProvider.cs +368 -33
- package/Editor/Testing/MessagingComponentEditorHarness.cs +11 -4
- package/Editor/Theme/DxMessagingTheme.uss +255 -0
- package/Editor/Theme/DxMessagingTheme.uss.meta +11 -0
- package/Editor/Theme/DxTokens.uss +90 -0
- package/Editor/Theme/DxTokens.uss.meta +11 -0
- package/Editor/Theme.meta +8 -0
- package/Editor/Windows/DxMessagingFlowGraphWindow.cs +5513 -0
- package/Editor/Windows/DxMessagingFlowGraphWindow.cs.meta +11 -0
- package/Editor/Windows/DxMessagingMessageMonitorWindow.cs +2288 -0
- package/Editor/Windows/DxMessagingMessageMonitorWindow.cs.meta +11 -0
- package/Editor/Windows.meta +8 -0
- package/README.md +84 -35
- package/Runtime/AssemblyInfo.cs +1 -0
- package/Runtime/Core/Diagnostics/MessageEmissionData.cs +29 -1
- package/Runtime/Core/Extensions/MessageExtensions.cs +4 -5
- package/Runtime/Core/Helper/MessageCache.cs +56 -23
- package/Runtime/Core/Internal/FlatDispatch.cs +32 -0
- package/Runtime/Core/Internal/TypedSlots.cs +3 -7
- package/Runtime/Core/MessageBus/MessageBus.cs +577 -142
- package/Runtime/Core/MessageBus/RegistrationLog.cs +25 -12
- package/Runtime/Core/MessageHandler.cs +774 -786
- package/Runtime/Core/MessageRegistrationHandle.cs +19 -5
- package/Runtime/Core/MessageRegistrationToken.cs +1080 -520
- package/Samples~/Diagnostics Tooling Exerciser/DiagnosticsToolingExerciser.cs +173 -0
- package/Samples~/Diagnostics Tooling Exerciser/DiagnosticsToolingExerciser.cs.meta +11 -0
- package/Samples~/Diagnostics Tooling Exerciser/DiagnosticsToolingExerciser.unity +424 -0
- package/Samples~/Diagnostics Tooling Exerciser/DiagnosticsToolingExerciser.unity.meta +7 -0
- package/Samples~/Diagnostics Tooling Exerciser/DiagnosticsToolingReceiver.cs +185 -0
- package/Samples~/Diagnostics Tooling Exerciser/DiagnosticsToolingReceiver.cs.meta +11 -0
- package/Samples~/Diagnostics Tooling Exerciser/Messages.cs +46 -0
- package/Samples~/Diagnostics Tooling Exerciser/Messages.cs.meta +11 -0
- package/Samples~/Diagnostics Tooling Exerciser/README.md +53 -0
- package/Samples~/Diagnostics Tooling Exerciser/README.md.meta +7 -0
- package/Samples~/Diagnostics Tooling Exerciser/WallstopStudios.DxMessaging.DiagnosticsToolingExerciser.Sample.asmdef +13 -0
- package/Samples~/Diagnostics Tooling Exerciser/WallstopStudios.DxMessaging.DiagnosticsToolingExerciser.Sample.asmdef.meta +7 -0
- package/Samples~/Diagnostics Tooling Exerciser.meta +8 -0
- package/Samples~/Mini Combat/README.md +1 -1
- package/Samples~/Mini Combat/Walkthrough.md +3 -3
- package/docs/images/DxMessaging-banner.svg +79 -0
- package/docs/images/DxMessaging-banner.svg.meta +53 -0
- package/docs/images.meta +8 -0
- package/docs.meta +8 -0
- package/package.json +13 -4
|
@@ -0,0 +1,156 @@
|
|
|
1
|
+
fileFormatVersion: 2
|
|
2
|
+
guid: 611151b081728005e53d1393edd536b4
|
|
3
|
+
TextureImporter:
|
|
4
|
+
internalIDToNameTable:
|
|
5
|
+
- first:
|
|
6
|
+
213: 5677320861152755079
|
|
7
|
+
second: dxmessaging-icon-256_0
|
|
8
|
+
externalObjects: {}
|
|
9
|
+
serializedVersion: 13
|
|
10
|
+
mipmaps:
|
|
11
|
+
mipMapMode: 0
|
|
12
|
+
enableMipMap: 0
|
|
13
|
+
sRGBTexture: 1
|
|
14
|
+
linearTexture: 0
|
|
15
|
+
fadeOut: 0
|
|
16
|
+
borderMipMap: 0
|
|
17
|
+
mipMapsPreserveCoverage: 0
|
|
18
|
+
alphaTestReferenceValue: 0.5
|
|
19
|
+
mipMapFadeDistanceStart: 1
|
|
20
|
+
mipMapFadeDistanceEnd: 3
|
|
21
|
+
bumpmap:
|
|
22
|
+
convertToNormalMap: 0
|
|
23
|
+
externalNormalMap: 0
|
|
24
|
+
heightScale: 0.25
|
|
25
|
+
normalMapFilter: 0
|
|
26
|
+
flipGreenChannel: 0
|
|
27
|
+
isReadable: 0
|
|
28
|
+
streamingMipmaps: 0
|
|
29
|
+
streamingMipmapsPriority: 0
|
|
30
|
+
vTOnly: 0
|
|
31
|
+
ignoreMipmapLimit: 0
|
|
32
|
+
grayScaleToAlpha: 0
|
|
33
|
+
generateCubemap: 6
|
|
34
|
+
cubemapConvolution: 0
|
|
35
|
+
seamlessCubemap: 0
|
|
36
|
+
textureFormat: 1
|
|
37
|
+
maxTextureSize: 2048
|
|
38
|
+
textureSettings:
|
|
39
|
+
serializedVersion: 2
|
|
40
|
+
filterMode: 1
|
|
41
|
+
aniso: 1
|
|
42
|
+
mipBias: 0
|
|
43
|
+
wrapU: 1
|
|
44
|
+
wrapV: 1
|
|
45
|
+
wrapW: 1
|
|
46
|
+
nPOTScale: 0
|
|
47
|
+
lightmap: 0
|
|
48
|
+
compressionQuality: 50
|
|
49
|
+
spriteMode: 2
|
|
50
|
+
spriteExtrude: 1
|
|
51
|
+
spriteMeshType: 1
|
|
52
|
+
alignment: 0
|
|
53
|
+
spritePivot: {x: 0.5, y: 0.5}
|
|
54
|
+
spritePixelsToUnits: 100
|
|
55
|
+
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
|
|
56
|
+
spriteGenerateFallbackPhysicsShape: 1
|
|
57
|
+
alphaUsage: 1
|
|
58
|
+
alphaIsTransparency: 1
|
|
59
|
+
spriteTessellationDetail: -1
|
|
60
|
+
textureType: 8
|
|
61
|
+
textureShape: 1
|
|
62
|
+
singleChannelComponent: 0
|
|
63
|
+
flipbookRows: 1
|
|
64
|
+
flipbookColumns: 1
|
|
65
|
+
maxTextureSizeSet: 0
|
|
66
|
+
compressionQualitySet: 0
|
|
67
|
+
textureFormatSet: 0
|
|
68
|
+
ignorePngGamma: 0
|
|
69
|
+
applyGammaDecoding: 0
|
|
70
|
+
swizzle: 50462976
|
|
71
|
+
cookieLightType: 0
|
|
72
|
+
platformSettings:
|
|
73
|
+
- serializedVersion: 4
|
|
74
|
+
buildTarget: DefaultTexturePlatform
|
|
75
|
+
maxTextureSize: 2048
|
|
76
|
+
resizeAlgorithm: 0
|
|
77
|
+
textureFormat: -1
|
|
78
|
+
textureCompression: 1
|
|
79
|
+
compressionQuality: 50
|
|
80
|
+
crunchedCompression: 0
|
|
81
|
+
allowsAlphaSplitting: 0
|
|
82
|
+
overridden: 0
|
|
83
|
+
ignorePlatformSupport: 0
|
|
84
|
+
androidETC2FallbackOverride: 0
|
|
85
|
+
forceMaximumCompressionQuality_BC6H_BC7: 0
|
|
86
|
+
- serializedVersion: 4
|
|
87
|
+
buildTarget: Standalone
|
|
88
|
+
maxTextureSize: 2048
|
|
89
|
+
resizeAlgorithm: 0
|
|
90
|
+
textureFormat: -1
|
|
91
|
+
textureCompression: 1
|
|
92
|
+
compressionQuality: 50
|
|
93
|
+
crunchedCompression: 0
|
|
94
|
+
allowsAlphaSplitting: 0
|
|
95
|
+
overridden: 0
|
|
96
|
+
ignorePlatformSupport: 0
|
|
97
|
+
androidETC2FallbackOverride: 0
|
|
98
|
+
forceMaximumCompressionQuality_BC6H_BC7: 0
|
|
99
|
+
- serializedVersion: 4
|
|
100
|
+
buildTarget: WebGL
|
|
101
|
+
maxTextureSize: 2048
|
|
102
|
+
resizeAlgorithm: 0
|
|
103
|
+
textureFormat: -1
|
|
104
|
+
textureCompression: 1
|
|
105
|
+
compressionQuality: 50
|
|
106
|
+
crunchedCompression: 0
|
|
107
|
+
allowsAlphaSplitting: 0
|
|
108
|
+
overridden: 0
|
|
109
|
+
ignorePlatformSupport: 0
|
|
110
|
+
androidETC2FallbackOverride: 0
|
|
111
|
+
forceMaximumCompressionQuality_BC6H_BC7: 0
|
|
112
|
+
spriteSheet:
|
|
113
|
+
serializedVersion: 2
|
|
114
|
+
sprites:
|
|
115
|
+
- serializedVersion: 2
|
|
116
|
+
name: dxmessaging-icon-256_0
|
|
117
|
+
rect:
|
|
118
|
+
serializedVersion: 2
|
|
119
|
+
x: 0
|
|
120
|
+
y: 0
|
|
121
|
+
width: 256
|
|
122
|
+
height: 256
|
|
123
|
+
alignment: 0
|
|
124
|
+
pivot: {x: 0, y: 0}
|
|
125
|
+
border: {x: 0, y: 0, z: 0, w: 0}
|
|
126
|
+
customData:
|
|
127
|
+
outline: []
|
|
128
|
+
physicsShape: []
|
|
129
|
+
tessellationDetail: -1
|
|
130
|
+
bones: []
|
|
131
|
+
spriteID: 78dbce45e35e9ce40800000000000000
|
|
132
|
+
internalID: 5677320861152755079
|
|
133
|
+
vertices: []
|
|
134
|
+
indices:
|
|
135
|
+
edges: []
|
|
136
|
+
weights: []
|
|
137
|
+
outline: []
|
|
138
|
+
customData:
|
|
139
|
+
physicsShape: []
|
|
140
|
+
bones: []
|
|
141
|
+
spriteID:
|
|
142
|
+
internalID: 0
|
|
143
|
+
vertices: []
|
|
144
|
+
indices:
|
|
145
|
+
edges: []
|
|
146
|
+
weights: []
|
|
147
|
+
secondaryTextures: []
|
|
148
|
+
spriteCustomMetadata:
|
|
149
|
+
entries: []
|
|
150
|
+
nameFileIdTable:
|
|
151
|
+
dxmessaging-icon-256_0: 5677320861152755079
|
|
152
|
+
mipmapLimitGroupName:
|
|
153
|
+
pSDRemoveMatte: 0
|
|
154
|
+
userData:
|
|
155
|
+
assetBundleName:
|
|
156
|
+
assetBundleVariant:
|
|
Binary file
|
|
@@ -0,0 +1,156 @@
|
|
|
1
|
+
fileFormatVersion: 2
|
|
2
|
+
guid: 46e92151f8e6c4687ef4fe0b516c8506
|
|
3
|
+
TextureImporter:
|
|
4
|
+
internalIDToNameTable:
|
|
5
|
+
- first:
|
|
6
|
+
213: -7623682940787038340
|
|
7
|
+
second: dxmessaging-icon-32_0
|
|
8
|
+
externalObjects: {}
|
|
9
|
+
serializedVersion: 13
|
|
10
|
+
mipmaps:
|
|
11
|
+
mipMapMode: 0
|
|
12
|
+
enableMipMap: 0
|
|
13
|
+
sRGBTexture: 1
|
|
14
|
+
linearTexture: 0
|
|
15
|
+
fadeOut: 0
|
|
16
|
+
borderMipMap: 0
|
|
17
|
+
mipMapsPreserveCoverage: 0
|
|
18
|
+
alphaTestReferenceValue: 0.5
|
|
19
|
+
mipMapFadeDistanceStart: 1
|
|
20
|
+
mipMapFadeDistanceEnd: 3
|
|
21
|
+
bumpmap:
|
|
22
|
+
convertToNormalMap: 0
|
|
23
|
+
externalNormalMap: 0
|
|
24
|
+
heightScale: 0.25
|
|
25
|
+
normalMapFilter: 0
|
|
26
|
+
flipGreenChannel: 0
|
|
27
|
+
isReadable: 0
|
|
28
|
+
streamingMipmaps: 0
|
|
29
|
+
streamingMipmapsPriority: 0
|
|
30
|
+
vTOnly: 0
|
|
31
|
+
ignoreMipmapLimit: 0
|
|
32
|
+
grayScaleToAlpha: 0
|
|
33
|
+
generateCubemap: 6
|
|
34
|
+
cubemapConvolution: 0
|
|
35
|
+
seamlessCubemap: 0
|
|
36
|
+
textureFormat: 1
|
|
37
|
+
maxTextureSize: 2048
|
|
38
|
+
textureSettings:
|
|
39
|
+
serializedVersion: 2
|
|
40
|
+
filterMode: 1
|
|
41
|
+
aniso: 1
|
|
42
|
+
mipBias: 0
|
|
43
|
+
wrapU: 1
|
|
44
|
+
wrapV: 1
|
|
45
|
+
wrapW: 1
|
|
46
|
+
nPOTScale: 0
|
|
47
|
+
lightmap: 0
|
|
48
|
+
compressionQuality: 50
|
|
49
|
+
spriteMode: 2
|
|
50
|
+
spriteExtrude: 1
|
|
51
|
+
spriteMeshType: 1
|
|
52
|
+
alignment: 0
|
|
53
|
+
spritePivot: {x: 0.5, y: 0.5}
|
|
54
|
+
spritePixelsToUnits: 100
|
|
55
|
+
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
|
|
56
|
+
spriteGenerateFallbackPhysicsShape: 1
|
|
57
|
+
alphaUsage: 1
|
|
58
|
+
alphaIsTransparency: 1
|
|
59
|
+
spriteTessellationDetail: -1
|
|
60
|
+
textureType: 8
|
|
61
|
+
textureShape: 1
|
|
62
|
+
singleChannelComponent: 0
|
|
63
|
+
flipbookRows: 1
|
|
64
|
+
flipbookColumns: 1
|
|
65
|
+
maxTextureSizeSet: 0
|
|
66
|
+
compressionQualitySet: 0
|
|
67
|
+
textureFormatSet: 0
|
|
68
|
+
ignorePngGamma: 0
|
|
69
|
+
applyGammaDecoding: 0
|
|
70
|
+
swizzle: 50462976
|
|
71
|
+
cookieLightType: 0
|
|
72
|
+
platformSettings:
|
|
73
|
+
- serializedVersion: 4
|
|
74
|
+
buildTarget: DefaultTexturePlatform
|
|
75
|
+
maxTextureSize: 2048
|
|
76
|
+
resizeAlgorithm: 0
|
|
77
|
+
textureFormat: -1
|
|
78
|
+
textureCompression: 1
|
|
79
|
+
compressionQuality: 50
|
|
80
|
+
crunchedCompression: 0
|
|
81
|
+
allowsAlphaSplitting: 0
|
|
82
|
+
overridden: 0
|
|
83
|
+
ignorePlatformSupport: 0
|
|
84
|
+
androidETC2FallbackOverride: 0
|
|
85
|
+
forceMaximumCompressionQuality_BC6H_BC7: 0
|
|
86
|
+
- serializedVersion: 4
|
|
87
|
+
buildTarget: Standalone
|
|
88
|
+
maxTextureSize: 2048
|
|
89
|
+
resizeAlgorithm: 0
|
|
90
|
+
textureFormat: -1
|
|
91
|
+
textureCompression: 1
|
|
92
|
+
compressionQuality: 50
|
|
93
|
+
crunchedCompression: 0
|
|
94
|
+
allowsAlphaSplitting: 0
|
|
95
|
+
overridden: 0
|
|
96
|
+
ignorePlatformSupport: 0
|
|
97
|
+
androidETC2FallbackOverride: 0
|
|
98
|
+
forceMaximumCompressionQuality_BC6H_BC7: 0
|
|
99
|
+
- serializedVersion: 4
|
|
100
|
+
buildTarget: WebGL
|
|
101
|
+
maxTextureSize: 2048
|
|
102
|
+
resizeAlgorithm: 0
|
|
103
|
+
textureFormat: -1
|
|
104
|
+
textureCompression: 1
|
|
105
|
+
compressionQuality: 50
|
|
106
|
+
crunchedCompression: 0
|
|
107
|
+
allowsAlphaSplitting: 0
|
|
108
|
+
overridden: 0
|
|
109
|
+
ignorePlatformSupport: 0
|
|
110
|
+
androidETC2FallbackOverride: 0
|
|
111
|
+
forceMaximumCompressionQuality_BC6H_BC7: 0
|
|
112
|
+
spriteSheet:
|
|
113
|
+
serializedVersion: 2
|
|
114
|
+
sprites:
|
|
115
|
+
- serializedVersion: 2
|
|
116
|
+
name: dxmessaging-icon-32_0
|
|
117
|
+
rect:
|
|
118
|
+
serializedVersion: 2
|
|
119
|
+
x: 0
|
|
120
|
+
y: 0
|
|
121
|
+
width: 32
|
|
122
|
+
height: 32
|
|
123
|
+
alignment: 0
|
|
124
|
+
pivot: {x: 0, y: 0}
|
|
125
|
+
border: {x: 0, y: 0, z: 0, w: 0}
|
|
126
|
+
customData:
|
|
127
|
+
outline: []
|
|
128
|
+
physicsShape: []
|
|
129
|
+
tessellationDetail: -1
|
|
130
|
+
bones: []
|
|
131
|
+
spriteID: c77ee22e1cc333690800000000000000
|
|
132
|
+
internalID: -7623682940787038340
|
|
133
|
+
vertices: []
|
|
134
|
+
indices:
|
|
135
|
+
edges: []
|
|
136
|
+
weights: []
|
|
137
|
+
outline: []
|
|
138
|
+
customData:
|
|
139
|
+
physicsShape: []
|
|
140
|
+
bones: []
|
|
141
|
+
spriteID:
|
|
142
|
+
internalID: 0
|
|
143
|
+
vertices: []
|
|
144
|
+
indices:
|
|
145
|
+
edges: []
|
|
146
|
+
weights: []
|
|
147
|
+
secondaryTextures: []
|
|
148
|
+
spriteCustomMetadata:
|
|
149
|
+
entries: []
|
|
150
|
+
nameFileIdTable:
|
|
151
|
+
dxmessaging-icon-32_0: -7623682940787038340
|
|
152
|
+
mipmapLimitGroupName:
|
|
153
|
+
pSDRemoveMatte: 0
|
|
154
|
+
userData:
|
|
155
|
+
assetBundleName:
|
|
156
|
+
assetBundleVariant:
|
|
Binary file
|
|
@@ -0,0 +1,156 @@
|
|
|
1
|
+
fileFormatVersion: 2
|
|
2
|
+
guid: 5dfe9723fd4efea0496d04a8297ed116
|
|
3
|
+
TextureImporter:
|
|
4
|
+
internalIDToNameTable:
|
|
5
|
+
- first:
|
|
6
|
+
213: 7992110653572513941
|
|
7
|
+
second: dxmessaging-icon-48_0
|
|
8
|
+
externalObjects: {}
|
|
9
|
+
serializedVersion: 13
|
|
10
|
+
mipmaps:
|
|
11
|
+
mipMapMode: 0
|
|
12
|
+
enableMipMap: 0
|
|
13
|
+
sRGBTexture: 1
|
|
14
|
+
linearTexture: 0
|
|
15
|
+
fadeOut: 0
|
|
16
|
+
borderMipMap: 0
|
|
17
|
+
mipMapsPreserveCoverage: 0
|
|
18
|
+
alphaTestReferenceValue: 0.5
|
|
19
|
+
mipMapFadeDistanceStart: 1
|
|
20
|
+
mipMapFadeDistanceEnd: 3
|
|
21
|
+
bumpmap:
|
|
22
|
+
convertToNormalMap: 0
|
|
23
|
+
externalNormalMap: 0
|
|
24
|
+
heightScale: 0.25
|
|
25
|
+
normalMapFilter: 0
|
|
26
|
+
flipGreenChannel: 0
|
|
27
|
+
isReadable: 0
|
|
28
|
+
streamingMipmaps: 0
|
|
29
|
+
streamingMipmapsPriority: 0
|
|
30
|
+
vTOnly: 0
|
|
31
|
+
ignoreMipmapLimit: 0
|
|
32
|
+
grayScaleToAlpha: 0
|
|
33
|
+
generateCubemap: 6
|
|
34
|
+
cubemapConvolution: 0
|
|
35
|
+
seamlessCubemap: 0
|
|
36
|
+
textureFormat: 1
|
|
37
|
+
maxTextureSize: 2048
|
|
38
|
+
textureSettings:
|
|
39
|
+
serializedVersion: 2
|
|
40
|
+
filterMode: 1
|
|
41
|
+
aniso: 1
|
|
42
|
+
mipBias: 0
|
|
43
|
+
wrapU: 1
|
|
44
|
+
wrapV: 1
|
|
45
|
+
wrapW: 1
|
|
46
|
+
nPOTScale: 0
|
|
47
|
+
lightmap: 0
|
|
48
|
+
compressionQuality: 50
|
|
49
|
+
spriteMode: 2
|
|
50
|
+
spriteExtrude: 1
|
|
51
|
+
spriteMeshType: 1
|
|
52
|
+
alignment: 0
|
|
53
|
+
spritePivot: {x: 0.5, y: 0.5}
|
|
54
|
+
spritePixelsToUnits: 100
|
|
55
|
+
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
|
|
56
|
+
spriteGenerateFallbackPhysicsShape: 1
|
|
57
|
+
alphaUsage: 1
|
|
58
|
+
alphaIsTransparency: 1
|
|
59
|
+
spriteTessellationDetail: -1
|
|
60
|
+
textureType: 8
|
|
61
|
+
textureShape: 1
|
|
62
|
+
singleChannelComponent: 0
|
|
63
|
+
flipbookRows: 1
|
|
64
|
+
flipbookColumns: 1
|
|
65
|
+
maxTextureSizeSet: 0
|
|
66
|
+
compressionQualitySet: 0
|
|
67
|
+
textureFormatSet: 0
|
|
68
|
+
ignorePngGamma: 0
|
|
69
|
+
applyGammaDecoding: 0
|
|
70
|
+
swizzle: 50462976
|
|
71
|
+
cookieLightType: 0
|
|
72
|
+
platformSettings:
|
|
73
|
+
- serializedVersion: 4
|
|
74
|
+
buildTarget: DefaultTexturePlatform
|
|
75
|
+
maxTextureSize: 2048
|
|
76
|
+
resizeAlgorithm: 0
|
|
77
|
+
textureFormat: -1
|
|
78
|
+
textureCompression: 1
|
|
79
|
+
compressionQuality: 50
|
|
80
|
+
crunchedCompression: 0
|
|
81
|
+
allowsAlphaSplitting: 0
|
|
82
|
+
overridden: 0
|
|
83
|
+
ignorePlatformSupport: 0
|
|
84
|
+
androidETC2FallbackOverride: 0
|
|
85
|
+
forceMaximumCompressionQuality_BC6H_BC7: 0
|
|
86
|
+
- serializedVersion: 4
|
|
87
|
+
buildTarget: Standalone
|
|
88
|
+
maxTextureSize: 2048
|
|
89
|
+
resizeAlgorithm: 0
|
|
90
|
+
textureFormat: -1
|
|
91
|
+
textureCompression: 1
|
|
92
|
+
compressionQuality: 50
|
|
93
|
+
crunchedCompression: 0
|
|
94
|
+
allowsAlphaSplitting: 0
|
|
95
|
+
overridden: 0
|
|
96
|
+
ignorePlatformSupport: 0
|
|
97
|
+
androidETC2FallbackOverride: 0
|
|
98
|
+
forceMaximumCompressionQuality_BC6H_BC7: 0
|
|
99
|
+
- serializedVersion: 4
|
|
100
|
+
buildTarget: WebGL
|
|
101
|
+
maxTextureSize: 2048
|
|
102
|
+
resizeAlgorithm: 0
|
|
103
|
+
textureFormat: -1
|
|
104
|
+
textureCompression: 1
|
|
105
|
+
compressionQuality: 50
|
|
106
|
+
crunchedCompression: 0
|
|
107
|
+
allowsAlphaSplitting: 0
|
|
108
|
+
overridden: 0
|
|
109
|
+
ignorePlatformSupport: 0
|
|
110
|
+
androidETC2FallbackOverride: 0
|
|
111
|
+
forceMaximumCompressionQuality_BC6H_BC7: 0
|
|
112
|
+
spriteSheet:
|
|
113
|
+
serializedVersion: 2
|
|
114
|
+
sprites:
|
|
115
|
+
- serializedVersion: 2
|
|
116
|
+
name: dxmessaging-icon-48_0
|
|
117
|
+
rect:
|
|
118
|
+
serializedVersion: 2
|
|
119
|
+
x: 0
|
|
120
|
+
y: 0
|
|
121
|
+
width: 48
|
|
122
|
+
height: 48
|
|
123
|
+
alignment: 0
|
|
124
|
+
pivot: {x: 0, y: 0}
|
|
125
|
+
border: {x: 0, y: 0, z: 0, w: 0}
|
|
126
|
+
customData:
|
|
127
|
+
outline: []
|
|
128
|
+
physicsShape: []
|
|
129
|
+
tessellationDetail: -1
|
|
130
|
+
bones: []
|
|
131
|
+
spriteID: 5900ecf9b4ea9ee60800000000000000
|
|
132
|
+
internalID: 7992110653572513941
|
|
133
|
+
vertices: []
|
|
134
|
+
indices:
|
|
135
|
+
edges: []
|
|
136
|
+
weights: []
|
|
137
|
+
outline: []
|
|
138
|
+
customData:
|
|
139
|
+
physicsShape: []
|
|
140
|
+
bones: []
|
|
141
|
+
spriteID:
|
|
142
|
+
internalID: 0
|
|
143
|
+
vertices: []
|
|
144
|
+
indices:
|
|
145
|
+
edges: []
|
|
146
|
+
weights: []
|
|
147
|
+
secondaryTextures: []
|
|
148
|
+
spriteCustomMetadata:
|
|
149
|
+
entries: []
|
|
150
|
+
nameFileIdTable:
|
|
151
|
+
dxmessaging-icon-48_0: 7992110653572513941
|
|
152
|
+
mipmapLimitGroupName:
|
|
153
|
+
pSDRemoveMatte: 0
|
|
154
|
+
userData:
|
|
155
|
+
assetBundleName:
|
|
156
|
+
assetBundleVariant:
|