com.wallstop-studios.dxmessaging 2.2.0 → 3.1.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/CHANGELOG.md +315 -67
- package/CHANGELOG.md.meta +7 -7
- package/Editor/Analyzers/BaseCallIlInspector.cs +277 -0
- package/Editor/Analyzers/BaseCallIlInspector.cs.meta +11 -0
- package/Editor/Analyzers/BaseCallLogMessageParser.cs +295 -0
- package/Editor/Analyzers/BaseCallLogMessageParser.cs.meta +11 -0
- package/Editor/Analyzers/BaseCallReportAggregator.cs +308 -0
- package/Editor/Analyzers/BaseCallReportAggregator.cs.meta +11 -0
- package/Editor/Analyzers/BaseCallTypeScanner.cs +110 -0
- package/Editor/Analyzers/BaseCallTypeScanner.cs.meta +11 -0
- package/Editor/Analyzers/BaseCallTypeScannerCore.cs +562 -0
- package/Editor/Analyzers/BaseCallTypeScannerCore.cs.meta +11 -0
- package/Editor/Analyzers/DxMessagingConsoleHarvester.cs +1129 -0
- package/Editor/Analyzers/DxMessagingConsoleHarvester.cs.meta +11 -0
- package/Editor/Analyzers/Microsoft.CodeAnalysis.CSharp.dll.meta +44 -44
- package/Editor/Analyzers/Microsoft.CodeAnalysis.dll.meta +44 -44
- package/Editor/Analyzers/System.Collections.Immutable.dll.meta +44 -44
- package/Editor/Analyzers/System.Reflection.Metadata.dll.meta +44 -44
- package/Editor/Analyzers/System.Runtime.CompilerServices.Unsafe.dll.meta +44 -44
- package/Editor/Analyzers/WallstopStudios.DxMessaging.Analyzer.dll +0 -0
- package/Editor/Analyzers/WallstopStudios.DxMessaging.Analyzer.dll.meta +46 -0
- package/Editor/Analyzers/WallstopStudios.DxMessaging.SourceGenerators.dll +0 -0
- package/Editor/Analyzers/WallstopStudios.DxMessaging.SourceGenerators.dll.meta +72 -72
- package/Editor/Analyzers.meta +8 -8
- package/Editor/AssemblyInfo.cs.meta +11 -3
- package/Editor/CustomEditors/MessageAwareComponentFallbackEditor.cs +81 -0
- package/Editor/CustomEditors/MessageAwareComponentFallbackEditor.cs.meta +11 -0
- package/Editor/CustomEditors/MessageAwareComponentInspectorOverlay.cs +429 -0
- package/Editor/CustomEditors/MessageAwareComponentInspectorOverlay.cs.meta +11 -0
- package/Editor/CustomEditors/MessagingComponentEditor.cs +1 -1
- package/Editor/CustomEditors/MessagingComponentEditor.cs.meta +11 -3
- package/Editor/CustomEditors.meta +2 -2
- package/Editor/DxMessagingEditorIdle.cs +62 -0
- package/Editor/DxMessagingEditorIdle.cs.meta +11 -0
- package/Editor/DxMessagingEditorInitializer.cs +112 -15
- package/Editor/DxMessagingEditorInitializer.cs.meta +11 -3
- package/Editor/DxMessagingEditorLog.cs +32 -0
- package/Editor/DxMessagingEditorLog.cs.meta +11 -0
- package/Editor/DxMessagingMenu.cs.meta +11 -11
- package/Editor/DxMessagingSceneBuildProcessor.cs.meta +11 -11
- package/Editor/Settings/DxMessagingBaseCallIgnoreSync.cs +313 -0
- package/Editor/Settings/DxMessagingBaseCallIgnoreSync.cs.meta +11 -0
- package/Editor/Settings/DxMessagingSettings.cs +261 -11
- package/Editor/Settings/DxMessagingSettings.cs.meta +11 -3
- package/Editor/Settings/DxMessagingSettingsProvider.cs +50 -33
- package/Editor/Settings/DxMessagingSettingsProvider.cs.meta +11 -3
- package/Editor/Settings.meta +2 -2
- package/Editor/SetupCscRsp.cs +406 -39
- package/Editor/SetupCscRsp.cs.meta +11 -3
- package/Editor/Testing/MessagingComponentEditorHarness.cs +2 -2
- package/Editor/Testing/MessagingComponentEditorHarness.cs.meta +11 -3
- package/Editor/Testing.meta +3 -3
- package/Editor/WallstopStudios.DxMessaging.Editor.asmdef +14 -14
- package/Editor/WallstopStudios.DxMessaging.Editor.asmdef.meta +7 -7
- package/Editor.meta +8 -8
- package/LICENSE.md +9 -9
- package/LICENSE.md.meta +7 -7
- package/README.md +940 -900
- package/README.md.meta +7 -7
- package/Runtime/AssemblyInfo.cs +4 -0
- package/Runtime/AssemblyInfo.cs.meta +11 -3
- package/Runtime/Core/Attributes/DxAutoConstructorAttribute.cs.meta +11 -3
- package/Runtime/Core/Attributes/DxBroadcastMessageAttribute.cs.meta +11 -3
- package/Runtime/Core/Attributes/DxIgnoreMissingBaseCallAttribute.cs +26 -0
- package/Runtime/Core/Attributes/DxIgnoreMissingBaseCallAttribute.cs.meta +11 -0
- package/Runtime/Core/Attributes/DxOptionalParameterAttribute.cs +2 -4
- package/Runtime/Core/Attributes/DxOptionalParameterAttribute.cs.meta +11 -3
- package/Runtime/Core/Attributes/DxTargetedMessageAttribute.cs.meta +11 -3
- package/Runtime/Core/Attributes/DxUntargetedMessageAttribute.cs.meta +11 -3
- package/Runtime/Core/Attributes/Il2CppSetOptionAttribute.cs +56 -0
- package/Runtime/Core/Attributes/Il2CppSetOptionAttribute.cs.meta +11 -0
- package/Runtime/Core/Attributes.meta +2 -2
- package/Runtime/Core/Configuration/DxMessagingRuntimeSettings.cs +195 -0
- package/Runtime/Core/Configuration/DxMessagingRuntimeSettings.cs.meta +11 -0
- package/Runtime/Core/Configuration/DxMessagingRuntimeSettingsProvider.cs +179 -0
- package/Runtime/Core/Configuration/DxMessagingRuntimeSettingsProvider.cs.meta +11 -0
- package/Runtime/Core/Configuration.meta +9 -0
- package/Runtime/Core/DataStructure/CyclicBuffer.cs +46 -28
- package/Runtime/Core/DataStructure/CyclicBuffer.cs.meta +11 -3
- package/Runtime/Core/DataStructure.meta +2 -2
- package/Runtime/Core/Diagnostics/MessageEmissionData.cs.meta +11 -3
- package/Runtime/Core/Diagnostics/MessageRegistrationData.cs.meta +11 -3
- package/Runtime/Core/Diagnostics/MessageRegistrationType.cs.meta +11 -3
- package/Runtime/Core/Diagnostics.meta +2 -2
- package/Runtime/Core/DxMessagingStaticState.cs +19 -0
- package/Runtime/Core/DxMessagingStaticState.cs.meta +11 -11
- package/Runtime/Core/Extensions/EnumExtensions.cs +6 -5
- package/Runtime/Core/Extensions/EnumExtensions.cs.meta +11 -3
- package/Runtime/Core/Extensions/IListExtensions.cs.meta +11 -3
- package/Runtime/Core/Extensions/MessageBusExtensions.cs.meta +12 -12
- package/Runtime/Core/Extensions/MessageExtensions.cs +0 -60
- package/Runtime/Core/Extensions/MessageExtensions.cs.meta +11 -11
- package/Runtime/Core/Extensions.meta +8 -8
- package/Runtime/Core/Helper/MessageCache.cs +32 -0
- package/Runtime/Core/Helper/MessageCache.cs.meta +11 -3
- package/Runtime/Core/Helper/MessageHelperIndexer.cs.meta +11 -3
- package/Runtime/Core/Helper.meta +2 -2
- package/Runtime/Core/IMessage.cs +3 -3
- package/Runtime/Core/IMessage.cs.meta +11 -11
- package/Runtime/Core/InstanceId.cs +25 -1
- package/Runtime/Core/InstanceId.cs.meta +11 -11
- package/Runtime/Core/Internal/DxUnsafe.cs +60 -0
- package/Runtime/Core/Internal/DxUnsafe.cs.meta +11 -0
- package/Runtime/Core/Internal/FlatDispatch.cs +198 -0
- package/Runtime/Core/Internal/FlatDispatch.cs.meta +11 -0
- package/Runtime/Core/Internal/TypedGlobalSlotIndex.cs +38 -0
- package/Runtime/Core/Internal/TypedGlobalSlotIndex.cs.meta +11 -0
- package/Runtime/Core/Internal/TypedSlotIndex.cs +81 -0
- package/Runtime/Core/Internal/TypedSlotIndex.cs.meta +11 -0
- package/Runtime/Core/Internal/TypedSlots.cs +597 -0
- package/Runtime/Core/Internal/TypedSlots.cs.meta +11 -0
- package/Runtime/Core/Internal.meta +9 -0
- package/Runtime/Core/MessageBus/DiagnosticsTarget.cs.meta +11 -11
- package/Runtime/Core/MessageBus/GlobalMessageBusProvider.cs.meta +11 -11
- package/Runtime/Core/MessageBus/IMessageBus.cs +189 -15
- package/Runtime/Core/MessageBus/IMessageBus.cs.meta +11 -11
- package/Runtime/Core/MessageBus/IMessageBusProvider.cs.meta +11 -11
- package/Runtime/Core/MessageBus/IMessageRegistrationBuilder.cs +1 -0
- package/Runtime/Core/MessageBus/IMessageRegistrationBuilder.cs.meta +11 -11
- package/Runtime/Core/MessageBus/Internal/BusContextIndex.cs +16 -0
- package/Runtime/Core/MessageBus/Internal/BusContextIndex.cs.meta +11 -0
- package/Runtime/Core/MessageBus/Internal/BusSinkIndex.cs +40 -0
- package/Runtime/Core/MessageBus/Internal/BusSinkIndex.cs.meta +11 -0
- package/Runtime/Core/MessageBus/Internal/BusSlots.cs +719 -0
- package/Runtime/Core/MessageBus/Internal/BusSlots.cs.meta +11 -0
- package/Runtime/Core/MessageBus/Internal/DispatchKind.cs +38 -0
- package/Runtime/Core/MessageBus/Internal/DispatchKind.cs.meta +11 -0
- package/Runtime/Core/MessageBus/Internal/DispatchPhase.cs +20 -0
- package/Runtime/Core/MessageBus/Internal/DispatchPhase.cs.meta +11 -0
- package/Runtime/Core/MessageBus/Internal/DispatchVariant.cs +28 -0
- package/Runtime/Core/MessageBus/Internal/DispatchVariant.cs.meta +11 -0
- package/Runtime/Core/MessageBus/Internal/IEvictableSlot.cs +48 -0
- package/Runtime/Core/MessageBus/Internal/IEvictableSlot.cs.meta +11 -0
- package/Runtime/Core/MessageBus/Internal/ISweepable.cs +15 -0
- package/Runtime/Core/MessageBus/Internal/ISweepable.cs.meta +11 -0
- package/Runtime/Core/MessageBus/Internal/RegistrationMethodAxes.cs +222 -0
- package/Runtime/Core/MessageBus/Internal/RegistrationMethodAxes.cs.meta +11 -0
- package/Runtime/Core/MessageBus/Internal/SlotKey.cs +192 -0
- package/Runtime/Core/MessageBus/Internal/SlotKey.cs.meta +11 -0
- package/Runtime/Core/MessageBus/Internal.meta +9 -0
- package/Runtime/Core/MessageBus/MessageBus.cs +5366 -3838
- package/Runtime/Core/MessageBus/MessageBus.cs.meta +11 -11
- package/Runtime/Core/MessageBus/MessageBusRebindMode.cs.meta +11 -11
- package/Runtime/Core/MessageBus/MessageRegistrationBuilder.cs +187 -14
- package/Runtime/Core/MessageBus/MessageRegistrationBuilder.cs.meta +11 -11
- package/Runtime/Core/MessageBus/MessagingRegistration.cs.meta +11 -11
- package/Runtime/Core/MessageBus/RegistrationLog.cs.meta +11 -11
- package/Runtime/Core/MessageBus.meta +8 -8
- package/Runtime/Core/MessageHandler.cs +2399 -1042
- package/Runtime/Core/MessageHandler.cs.meta +11 -11
- package/Runtime/Core/MessageRegistrationHandle.cs.meta +11 -11
- package/Runtime/Core/MessageRegistrationToken.cs +429 -44
- package/Runtime/Core/MessageRegistrationToken.cs.meta +11 -11
- package/Runtime/Core/Messages/GlobalStringMessage.cs.meta +11 -3
- package/Runtime/Core/Messages/IBroadcastMessage.cs.meta +11 -11
- package/Runtime/Core/Messages/ITargetedMessage.cs.meta +11 -11
- package/Runtime/Core/Messages/IUntargetedMessage.cs.meta +11 -11
- package/Runtime/Core/Messages/ReflexiveMessage.cs.meta +11 -3
- package/Runtime/Core/Messages/SourcedStringMessage.cs.meta +11 -11
- package/Runtime/Core/Messages/StringMessage.cs.meta +11 -3
- package/Runtime/Core/Messages.meta +8 -8
- package/Runtime/Core/MessagingDebug.cs.meta +11 -11
- package/Runtime/Core/Pooling/CollectionPool.cs +266 -0
- package/Runtime/Core/Pooling/CollectionPool.cs.meta +11 -0
- package/Runtime/Core/Pooling/CollectionPoolDiagnostics.cs +30 -0
- package/Runtime/Core/Pooling/CollectionPoolDiagnostics.cs.meta +11 -0
- package/Runtime/Core/Pooling/DxPools.cs +157 -0
- package/Runtime/Core/Pooling/DxPools.cs.meta +11 -0
- package/Runtime/Core/Pooling/EvictionPlayerLoopHook.cs +106 -0
- package/Runtime/Core/Pooling/EvictionPlayerLoopHook.cs.meta +11 -0
- package/Runtime/Core/Pooling/IDxMessagingClock.cs +18 -0
- package/Runtime/Core/Pooling/IDxMessagingClock.cs.meta +11 -0
- package/Runtime/Core/Pooling/PoolDiagnosticsSnapshot.cs +55 -0
- package/Runtime/Core/Pooling/PoolDiagnosticsSnapshot.cs.meta +11 -0
- package/Runtime/Core/Pooling/StopwatchClock.cs +27 -0
- package/Runtime/Core/Pooling/StopwatchClock.cs.meta +11 -0
- package/Runtime/Core/Pooling/UnityRealtimeClock.cs +31 -0
- package/Runtime/Core/Pooling/UnityRealtimeClock.cs.meta +11 -0
- package/Runtime/Core/Pooling.meta +9 -0
- package/Runtime/Core.meta +8 -8
- package/Runtime/Unity/CurrentGlobalMessageBusProvider.cs.meta +12 -12
- package/Runtime/Unity/DxMessagingRuntimeInitializer.cs.meta +11 -11
- package/Runtime/Unity/InitialGlobalMessageBusProvider.cs.meta +12 -12
- package/Runtime/Unity/Integrations/Reflex/AssemblyInfo.cs.meta +11 -3
- package/Runtime/Unity/Integrations/Reflex/ReflexRegistrationInstaller.cs +73 -0
- package/Runtime/Unity/Integrations/Reflex/ReflexRegistrationInstaller.cs.meta +11 -11
- package/Runtime/Unity/Integrations/Reflex/WallstopStudios.DxMessaging.Reflex.asmdef +20 -20
- package/Runtime/Unity/Integrations/Reflex/WallstopStudios.DxMessaging.Reflex.asmdef.meta +7 -7
- package/Runtime/Unity/Integrations/Reflex.meta +8 -8
- package/Runtime/Unity/Integrations/VContainer/AssemblyInfo.cs.meta +11 -3
- package/Runtime/Unity/Integrations/VContainer/VContainerRegistrationExtensions.cs +109 -1
- package/Runtime/Unity/Integrations/VContainer/VContainerRegistrationExtensions.cs.meta +11 -11
- package/Runtime/Unity/Integrations/VContainer/WallstopStudios.DxMessaging.VContainer.asmdef +30 -30
- package/Runtime/Unity/Integrations/VContainer/WallstopStudios.DxMessaging.VContainer.asmdef.meta +7 -7
- package/Runtime/Unity/Integrations/VContainer.meta +8 -8
- package/Runtime/Unity/Integrations/Zenject/AssemblyInfo.cs.meta +11 -3
- package/Runtime/Unity/Integrations/Zenject/WallstopStudios.DxMessaging.Zenject.asmdef +30 -30
- package/Runtime/Unity/Integrations/Zenject/WallstopStudios.DxMessaging.Zenject.asmdef.meta +7 -7
- package/Runtime/Unity/Integrations/Zenject/ZenjectRegistrationInstaller.cs +79 -1
- package/Runtime/Unity/Integrations/Zenject/ZenjectRegistrationInstaller.cs.meta +11 -11
- package/Runtime/Unity/Integrations/Zenject.meta +8 -8
- package/Runtime/Unity/Integrations.meta +8 -8
- package/Runtime/Unity/MessageAwareComponent.cs +74 -0
- package/Runtime/Unity/MessageAwareComponent.cs.meta +11 -11
- package/Runtime/Unity/MessageBusProviderHandle.cs.meta +12 -12
- package/Runtime/Unity/MessagingComponent.cs +43 -10
- package/Runtime/Unity/MessagingComponent.cs.meta +11 -11
- package/Runtime/Unity/MessagingComponentInstaller.cs.meta +12 -12
- package/Runtime/Unity/ScriptableMessageBusProvider.cs.meta +12 -12
- package/Runtime/Unity.meta +8 -8
- package/Runtime/WallstopStudios.DxMessaging.asmdef +14 -14
- package/Runtime/WallstopStudios.DxMessaging.asmdef.meta +7 -7
- package/Runtime.meta +8 -8
- package/Samples~/DI/Prefabs/MessagingInstallerSample.prefab +98 -98
- package/Samples~/DI/Prefabs/MessagingInstallerSample.prefab.meta +7 -7
- package/Samples~/DI/Prefabs.meta +8 -8
- package/Samples~/DI/Providers/GlobalMessageBusProvider.asset +14 -14
- package/Samples~/DI/Providers/GlobalMessageBusProvider.asset.meta +8 -8
- package/Samples~/DI/Providers/InitialGlobalMessageBusProvider.asset +14 -14
- package/Samples~/DI/Providers/InitialGlobalMessageBusProvider.asset.meta +8 -8
- package/Samples~/DI/Providers.meta +8 -8
- package/Samples~/DI/README.md +51 -51
- package/Samples~/DI/README.md.meta +7 -7
- package/Samples~/DI/Reflex/SampleInstaller.cs +7 -0
- package/Samples~/DI/Reflex/SampleInstaller.cs.meta +11 -11
- package/Samples~/DI/Reflex.meta +8 -8
- package/Samples~/DI/VContainer/SampleLifetimeScope.cs +6 -1
- package/Samples~/DI/VContainer/SampleLifetimeScope.cs.meta +11 -11
- package/Samples~/DI/VContainer.meta +8 -8
- package/Samples~/DI/Zenject/SampleInstaller.cs +8 -0
- package/Samples~/DI/Zenject/SampleInstaller.cs.meta +11 -11
- package/Samples~/DI/Zenject.meta +8 -8
- package/Samples~/DI.meta +8 -8
- package/Samples~/Mini Combat/Boot.cs.meta +11 -11
- package/Samples~/Mini Combat/Enemy.cs.meta +11 -11
- package/Samples~/Mini Combat/Messages.cs.meta +11 -11
- package/Samples~/Mini Combat/Player.cs.meta +11 -11
- package/Samples~/Mini Combat/README.md +324 -323
- package/Samples~/Mini Combat/README.md.meta +7 -7
- package/Samples~/Mini Combat/UIOverlay.cs.meta +11 -11
- package/Samples~/Mini Combat/Walkthrough.md +430 -430
- package/Samples~/Mini Combat/Walkthrough.md.meta +7 -7
- package/Samples~/Mini Combat/WallstopStudios.DxMessaging.MiniCombat.Sample.asmdef +13 -13
- package/Samples~/Mini Combat/WallstopStudios.DxMessaging.MiniCombat.Sample.asmdef.meta +7 -7
- package/Samples~/Mini Combat.meta +8 -8
- package/Samples~/UI Buttons + Inspector/DiagnosticsEnabler.cs.meta +11 -11
- package/Samples~/UI Buttons + Inspector/Messages.cs.meta +11 -11
- package/Samples~/UI Buttons + Inspector/MessagingObserver.cs.meta +11 -11
- package/Samples~/UI Buttons + Inspector/README.md +210 -209
- package/Samples~/UI Buttons + Inspector/README.md.meta +7 -7
- package/Samples~/UI Buttons + Inspector/UIButtonEmitter.cs.meta +11 -11
- package/Samples~/UI Buttons + Inspector/WallstopStudios.DxMessaging.UIButtons.Sample.asmdef +13 -13
- package/Samples~/UI Buttons + Inspector/WallstopStudios.DxMessaging.UIButtons.Sample.asmdef.meta +7 -7
- package/Samples~/UI Buttons + Inspector.meta +8 -8
- package/SourceGenerators/Directory.Build.props +50 -3
- package/SourceGenerators/Directory.Build.props.meta +7 -7
- package/SourceGenerators/WallstopStudios.DxMessaging.SourceGenerators/DxAutoConstructorGenerator.cs +96 -63
- package/SourceGenerators/WallstopStudios.DxMessaging.SourceGenerators/DxAutoConstructorGenerator.cs.meta +11 -11
- package/SourceGenerators/WallstopStudios.DxMessaging.SourceGenerators/DxMessageIdGenerator.cs +745 -87
- package/SourceGenerators/WallstopStudios.DxMessaging.SourceGenerators/DxMessageIdGenerator.cs.meta +11 -3
- package/SourceGenerators/WallstopStudios.DxMessaging.SourceGenerators/WallstopStudios.DxMessaging.SourceGenerators.csproj +39 -46
- package/SourceGenerators/WallstopStudios.DxMessaging.SourceGenerators/WallstopStudios.DxMessaging.SourceGenerators.csproj.meta +7 -7
- package/SourceGenerators/WallstopStudios.DxMessaging.SourceGenerators.meta +8 -8
- package/SourceGenerators/global.json +7 -0
- package/SourceGenerators/global.json.meta +7 -0
- package/SourceGenerators.meta +8 -8
- package/Third Party Notices.md +3 -3
- package/Third Party Notices.md.meta +7 -7
- package/package.json +102 -92
- package/package.json.meta +7 -7
package/SourceGenerators/WallstopStudios.DxMessaging.SourceGenerators/DxMessageIdGenerator.cs.meta
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
-
fileFormatVersion: 2
|
|
2
|
-
guid: 8525b467bd2c430a90ccee97f321a845
|
|
3
|
-
|
|
1
|
+
fileFormatVersion: 2
|
|
2
|
+
guid: 8525b467bd2c430a90ccee97f321a845
|
|
3
|
+
MonoImporter:
|
|
4
|
+
externalObjects: {}
|
|
5
|
+
serializedVersion: 2
|
|
6
|
+
defaultReferences: []
|
|
7
|
+
executionOrder: 0
|
|
8
|
+
icon: {instanceID: 0}
|
|
9
|
+
userData:
|
|
10
|
+
assetBundleName:
|
|
11
|
+
assetBundleVariant:
|
|
@@ -1,79 +1,72 @@
|
|
|
1
1
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
2
2
|
<PropertyGroup>
|
|
3
3
|
<TargetFramework>netstandard2.0</TargetFramework>
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
<
|
|
4
|
+
<!-- DO NOT bump this without verifying Unity 2021 still loads the source
|
|
5
|
+
generators. Unity 2021's analyzer/source-generator loader runs on
|
|
6
|
+
Roslyn 3.8.x and fails to instantiate generators compiled against
|
|
7
|
+
Roslyn 4.x. No automated test pins this anymore; verify in Unity
|
|
8
|
+
before changing it. -->
|
|
9
|
+
<MicrosoftCodeAnalysisVersion>3.8.0</MicrosoftCodeAnalysisVersion>
|
|
10
|
+
<AssemblyInformationalVersion>$(Version)</AssemblyInformationalVersion>
|
|
10
11
|
</PropertyGroup>
|
|
11
12
|
<ItemGroup>
|
|
12
13
|
<PackageReference Include="Microsoft.CodeAnalysis.Analyzers" Version="3.3.3">
|
|
13
14
|
<PrivateAssets>all</PrivateAssets>
|
|
14
15
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
15
16
|
</PackageReference>
|
|
16
|
-
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="
|
|
17
|
+
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="3.8.0">
|
|
17
18
|
<PrivateAssets>all</PrivateAssets>
|
|
18
19
|
</PackageReference>
|
|
19
20
|
<PackageReference Include="System.Collections.Immutable" Version="5.0.0">
|
|
20
21
|
<PrivateAssets>all</PrivateAssets>
|
|
21
22
|
</PackageReference>
|
|
22
23
|
</ItemGroup>
|
|
23
|
-
<!-- Post-build copy of
|
|
24
|
-
|
|
24
|
+
<!-- Post-build copy of the source-generator DLL into the analyzer payload
|
|
25
|
+
directory selected by AnalyzerPayloadOutputDir.
|
|
26
|
+
|
|
27
|
+
This target copies ONLY the freshly-built source-generator DLL.
|
|
28
|
+
The Roslyn runtime deps that this package ships alongside it
|
|
29
|
+
(Microsoft.CodeAnalysis[.CSharp], System.Collections.Immutable,
|
|
30
|
+
System.Reflection.Metadata, System.Runtime.CompilerServices.Unsafe)
|
|
31
|
+
are committed in Editor/Analyzers/ as fixed bytes and are NOT
|
|
32
|
+
re-copied by this build: a normal (non-clean) rebuild therefore
|
|
33
|
+
leaves those committed dep DLLs untouched. Do NOT wipe
|
|
34
|
+
Editor/Analyzers/ wholesale; the committed dep bytes are the proven,
|
|
35
|
+
Unity-validated set and are not reproduced by this 3.8.0-pinned build
|
|
36
|
+
(the committed deps were built against Roslyn 4.2.0).
|
|
37
|
+
|
|
38
|
+
AnalyzerPayloadOutputDir defaults to Editor/Analyzers for local refresh
|
|
39
|
+
builds. CI freshness checks pass a temp directory so builds do not dirty
|
|
40
|
+
the worktree. CopyAnalyzerPayload=false disables this target for tests
|
|
41
|
+
that reference this project but do not validate the shipped payload.
|
|
42
|
+
|
|
43
|
+
The shipped Editor/Analyzers/*.dll.meta files for the two analyzer
|
|
44
|
+
assemblies carry the analyzer configuration directly, and SetupCscRsp
|
|
45
|
+
copies the analyzer DLLs into Assets/Plugins/Editor/ so the source
|
|
46
|
+
generator applies project-wide. -->
|
|
47
|
+
<Target
|
|
48
|
+
Name="PostBuildCopyAnalyzers"
|
|
49
|
+
AfterTargets="Build"
|
|
50
|
+
Condition="'$(CopyAnalyzerPayload)' == 'true'"
|
|
51
|
+
>
|
|
25
52
|
<!-- Compute paths relative to this project directory -->
|
|
26
53
|
<PropertyGroup>
|
|
27
54
|
<!-- Repo/package root: two levels up from this project directory -->
|
|
28
55
|
<PackageRootDir>$([System.IO.Path]::GetFullPath('$(MSBuildProjectDirectory)/../../'))</PackageRootDir>
|
|
29
|
-
<EditorAnalyzersDir>$([System.IO.Path]::Combine('$(PackageRootDir)', 'Editor', 'Analyzers'))</EditorAnalyzersDir>
|
|
30
|
-
<!-- Unity project root candidate when this package is inside Unity's Packages folder (4 levels up) -->
|
|
31
|
-
<UnityRootCandidate1>$([System.IO.Path]::GetFullPath('$(MSBuildProjectDirectory)/../../../../'))</UnityRootCandidate1>
|
|
32
|
-
<UnityAssetsDir>$([System.IO.Path]::Combine('$(UnityRootCandidate1)', 'Assets'))</UnityAssetsDir>
|
|
33
|
-
<UnityAssetsEditorDir>$([System.IO.Path]::Combine('$(UnityAssetsDir)', 'Editor'))</UnityAssetsEditorDir>
|
|
34
|
-
<UnityAssetsEditorWallstopStudiosDir>$([System.IO.Path]::Combine('$(UnityAssetsEditorDir)', 'Wallstop Studios'))</UnityAssetsEditorWallstopStudiosDir>
|
|
35
|
-
<UnityAssetsPluginsEditorWallstopDir>$([System.IO.Path]::Combine('$(UnityAssetsDir)', 'Plugins', 'Editor', 'WallstopStudios.DxMessaging'))</UnityAssetsPluginsEditorWallstopDir>
|
|
36
56
|
<AnalyzerDll>$(TargetPath)</AnalyzerDll>
|
|
37
57
|
</PropertyGroup>
|
|
38
58
|
<ItemGroup>
|
|
39
59
|
<AnalyzerOutput Include="$(AnalyzerDll)" />
|
|
40
|
-
<AnalyzerDependency Include="$(NuGetPackageRoot)microsoft.codeanalysis.common\$(MicrosoftCodeAnalysisVersion)\lib\netstandard2.0\Microsoft.CodeAnalysis.dll" />
|
|
41
|
-
<AnalyzerDependency Include="$(NuGetPackageRoot)microsoft.codeanalysis.csharp\$(MicrosoftCodeAnalysisVersion)\lib\netstandard2.0\Microsoft.CodeAnalysis.CSharp.dll" />
|
|
42
|
-
<AnalyzerDependency Include="$(NuGetPackageRoot)system.collections.immutable\$(SystemCollectionsImmutableVersion)\lib\netstandard2.0\System.Collections.Immutable.dll" />
|
|
43
|
-
<AnalyzerDependency
|
|
44
|
-
Include="$(NuGetPackageRoot)system.reflection.metadata\$(SystemReflectionMetadataVersion)\lib\net6.0\System.Reflection.Metadata.dll"
|
|
45
|
-
Condition="Exists('$(NuGetPackageRoot)system.reflection.metadata\$(SystemReflectionMetadataVersion)\lib\net6.0\System.Reflection.Metadata.dll')"
|
|
46
|
-
/>
|
|
47
|
-
<AnalyzerDependency
|
|
48
|
-
Include="$(NuGetPackageRoot)system.reflection.metadata\$(SystemReflectionMetadataVersion)\lib\netstandard2.0\System.Reflection.Metadata.dll"
|
|
49
|
-
Condition="Exists('$(NuGetPackageRoot)system.reflection.metadata\$(SystemReflectionMetadataVersion)\lib\netstandard2.0\System.Reflection.Metadata.dll')"
|
|
50
|
-
/>
|
|
51
|
-
<AnalyzerDependency Include="$(NuGetPackageRoot)system.runtime.compilerservices.unsafe\$(SystemRuntimeCompilerServicesUnsafeVersion)\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll" />
|
|
52
60
|
<AllAnalyzerFiles Include="@(AnalyzerOutput)" />
|
|
53
|
-
<AllAnalyzerFiles
|
|
54
|
-
Include="@(AnalyzerDependency)"
|
|
55
|
-
Condition="Exists('%(AnalyzerDependency.Identity)')"
|
|
56
|
-
/>
|
|
57
61
|
</ItemGroup>
|
|
58
|
-
<!-- Copy into package Editor/Analyzers (used by SetupCscRsp and package consumers) -->
|
|
59
|
-
<MakeDir Directories="$(EditorAnalyzersDir)" Condition="!Exists('$(EditorAnalyzersDir)')" />
|
|
60
|
-
<Copy
|
|
61
|
-
SourceFiles="@(AllAnalyzerFiles)"
|
|
62
|
-
DestinationFolder="$(EditorAnalyzersDir)"
|
|
63
|
-
SkipUnchangedFiles="true"
|
|
64
|
-
/>
|
|
65
|
-
<!-- If building from inside a Unity project (Assets exists), also copy into Assets/Editor/Wallstop Studios -->
|
|
66
|
-
<!-- Preferred legacy Plugins path used by SetupCscRsp -->
|
|
67
62
|
<MakeDir
|
|
68
|
-
Directories="$(
|
|
69
|
-
Condition="
|
|
63
|
+
Directories="$(AnalyzerPayloadOutputDir)"
|
|
64
|
+
Condition="!Exists('$(AnalyzerPayloadOutputDir)')"
|
|
70
65
|
/>
|
|
71
66
|
<Copy
|
|
72
67
|
SourceFiles="@(AllAnalyzerFiles)"
|
|
73
|
-
DestinationFolder="$(
|
|
68
|
+
DestinationFolder="$(AnalyzerPayloadOutputDir)"
|
|
74
69
|
SkipUnchangedFiles="true"
|
|
75
|
-
Condition="Exists('$(UnityAssetsPluginsEditorWallstopDir)')"
|
|
76
70
|
/>
|
|
77
|
-
<!-- Removed copy to Assets/Editor/Wallstop Studios as requested -->
|
|
78
71
|
</Target>
|
|
79
72
|
</Project>
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
fileFormatVersion: 2
|
|
2
|
-
guid: e4915fed9609ee64f9cbdaaf0324b3d0
|
|
3
|
-
DefaultImporter:
|
|
4
|
-
externalObjects: {}
|
|
5
|
-
userData:
|
|
6
|
-
assetBundleName:
|
|
7
|
-
assetBundleVariant:
|
|
1
|
+
fileFormatVersion: 2
|
|
2
|
+
guid: e4915fed9609ee64f9cbdaaf0324b3d0
|
|
3
|
+
DefaultImporter:
|
|
4
|
+
externalObjects: {}
|
|
5
|
+
userData:
|
|
6
|
+
assetBundleName:
|
|
7
|
+
assetBundleVariant:
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
fileFormatVersion: 2
|
|
2
|
-
guid: c7573be5899a5694398fa600a0bcd7b1
|
|
3
|
-
folderAsset: yes
|
|
4
|
-
DefaultImporter:
|
|
5
|
-
externalObjects: {}
|
|
6
|
-
userData:
|
|
7
|
-
assetBundleName:
|
|
8
|
-
assetBundleVariant:
|
|
1
|
+
fileFormatVersion: 2
|
|
2
|
+
guid: c7573be5899a5694398fa600a0bcd7b1
|
|
3
|
+
folderAsset: yes
|
|
4
|
+
DefaultImporter:
|
|
5
|
+
externalObjects: {}
|
|
6
|
+
userData:
|
|
7
|
+
assetBundleName:
|
|
8
|
+
assetBundleVariant:
|
package/SourceGenerators.meta
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
fileFormatVersion: 2
|
|
2
|
-
guid: d606141670307c245b7a3726659948e6
|
|
3
|
-
folderAsset: yes
|
|
4
|
-
DefaultImporter:
|
|
5
|
-
externalObjects: {}
|
|
6
|
-
userData:
|
|
7
|
-
assetBundleName:
|
|
8
|
-
assetBundleVariant:
|
|
1
|
+
fileFormatVersion: 2
|
|
2
|
+
guid: d606141670307c245b7a3726659948e6
|
|
3
|
+
folderAsset: yes
|
|
4
|
+
DefaultImporter:
|
|
5
|
+
externalObjects: {}
|
|
6
|
+
userData:
|
|
7
|
+
assetBundleName:
|
|
8
|
+
assetBundleVariant:
|
package/Third Party Notices.md
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
# Third Party Notices
|
|
2
|
-
|
|
3
|
-
This package contains third-party software components governed by the license(s) indicated below:
|
|
1
|
+
# Third Party Notices
|
|
2
|
+
|
|
3
|
+
This package contains third-party software components governed by the license(s) indicated below:
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
fileFormatVersion: 2
|
|
2
|
-
guid: 35c462d45db3116429ff318131e6bd84
|
|
3
|
-
TextScriptImporter:
|
|
4
|
-
externalObjects: {}
|
|
5
|
-
userData:
|
|
6
|
-
assetBundleName:
|
|
7
|
-
assetBundleVariant:
|
|
1
|
+
fileFormatVersion: 2
|
|
2
|
+
guid: 35c462d45db3116429ff318131e6bd84
|
|
3
|
+
TextScriptImporter:
|
|
4
|
+
externalObjects: {}
|
|
5
|
+
userData:
|
|
6
|
+
assetBundleName:
|
|
7
|
+
assetBundleVariant:
|
package/package.json
CHANGED
|
@@ -1,92 +1,102 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "com.wallstop-studios.dxmessaging",
|
|
3
|
-
"version": "
|
|
4
|
-
"displayName": "DxMessaging",
|
|
5
|
-
"description": "Synchronous Event Bus for Unity",
|
|
6
|
-
"unity": "2021.3",
|
|
7
|
-
"documentationUrl": "https://
|
|
8
|
-
"changelogUrl": "https://
|
|
9
|
-
"licensesUrl": "https://github.com/
|
|
10
|
-
"keywords": [
|
|
11
|
-
"messaging",
|
|
12
|
-
"message",
|
|
13
|
-
"messages",
|
|
14
|
-
"event",
|
|
15
|
-
"event bus",
|
|
16
|
-
"eventing",
|
|
17
|
-
"send",
|
|
18
|
-
"receive",
|
|
19
|
-
"signal",
|
|
20
|
-
"slot"
|
|
21
|
-
],
|
|
22
|
-
"license": "MIT",
|
|
23
|
-
"repository": {
|
|
24
|
-
"type": "git",
|
|
25
|
-
"url": "git+https://github.com/
|
|
26
|
-
},
|
|
27
|
-
"bugs": {
|
|
28
|
-
"url": "https://github.com/
|
|
29
|
-
},
|
|
30
|
-
"author": "wallstop studios <wallstop@wallstopstudios.com> (https://wallstopstudios.com)",
|
|
31
|
-
"homepage": "https://
|
|
32
|
-
"main": "README.md",
|
|
33
|
-
"files": [
|
|
34
|
-
"Editor/**",
|
|
35
|
-
"Runtime/**",
|
|
36
|
-
"Samples~/**",
|
|
37
|
-
"SourceGenerators/Directory.Build.props",
|
|
38
|
-
"SourceGenerators/Directory.Build.props.meta",
|
|
39
|
-
"SourceGenerators/
|
|
40
|
-
"SourceGenerators/
|
|
41
|
-
"SourceGenerators/WallstopStudios.DxMessaging.SourceGenerators/*.
|
|
42
|
-
"SourceGenerators/WallstopStudios.DxMessaging.SourceGenerators/*.
|
|
43
|
-
"SourceGenerators/WallstopStudios.DxMessaging.SourceGenerators
|
|
44
|
-
"
|
|
45
|
-
"
|
|
46
|
-
"
|
|
47
|
-
"
|
|
48
|
-
"
|
|
49
|
-
"
|
|
50
|
-
"
|
|
51
|
-
"
|
|
52
|
-
"
|
|
53
|
-
"
|
|
54
|
-
"
|
|
55
|
-
"
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
"test
|
|
61
|
-
"format
|
|
62
|
-
"format:
|
|
63
|
-
"
|
|
64
|
-
"
|
|
65
|
-
"
|
|
66
|
-
"
|
|
67
|
-
"check:
|
|
68
|
-
"
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
"
|
|
72
|
-
"
|
|
73
|
-
"
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
{
|
|
87
|
-
"displayName": "
|
|
88
|
-
"description": "
|
|
89
|
-
"path": "Samples~/
|
|
90
|
-
}
|
|
91
|
-
|
|
92
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "com.wallstop-studios.dxmessaging",
|
|
3
|
+
"version": "3.1.0",
|
|
4
|
+
"displayName": "DxMessaging",
|
|
5
|
+
"description": "Synchronous Event Bus for Unity",
|
|
6
|
+
"unity": "2021.3",
|
|
7
|
+
"documentationUrl": "https://ambiguous-interactive.github.io/DxMessaging/",
|
|
8
|
+
"changelogUrl": "https://raw.githubusercontent.com/Ambiguous-Interactive/DxMessaging/master/CHANGELOG.md",
|
|
9
|
+
"licensesUrl": "https://github.com/Ambiguous-Interactive/DxMessaging/blob/master/LICENSE.md",
|
|
10
|
+
"keywords": [
|
|
11
|
+
"messaging",
|
|
12
|
+
"message",
|
|
13
|
+
"messages",
|
|
14
|
+
"event",
|
|
15
|
+
"event bus",
|
|
16
|
+
"eventing",
|
|
17
|
+
"send",
|
|
18
|
+
"receive",
|
|
19
|
+
"signal",
|
|
20
|
+
"slot"
|
|
21
|
+
],
|
|
22
|
+
"license": "MIT",
|
|
23
|
+
"repository": {
|
|
24
|
+
"type": "git",
|
|
25
|
+
"url": "git+https://github.com/Ambiguous-Interactive/DxMessaging.git"
|
|
26
|
+
},
|
|
27
|
+
"bugs": {
|
|
28
|
+
"url": "https://github.com/Ambiguous-Interactive/DxMessaging/issues"
|
|
29
|
+
},
|
|
30
|
+
"author": "wallstop studios <wallstop@wallstopstudios.com> (https://wallstopstudios.com)",
|
|
31
|
+
"homepage": "https://ambiguous-interactive.github.io/DxMessaging/",
|
|
32
|
+
"main": "README.md",
|
|
33
|
+
"files": [
|
|
34
|
+
"Editor/**",
|
|
35
|
+
"Runtime/**",
|
|
36
|
+
"Samples~/**",
|
|
37
|
+
"SourceGenerators/Directory.Build.props",
|
|
38
|
+
"SourceGenerators/Directory.Build.props.meta",
|
|
39
|
+
"SourceGenerators/global.json",
|
|
40
|
+
"SourceGenerators/global.json.meta",
|
|
41
|
+
"SourceGenerators/WallstopStudios.DxMessaging.SourceGenerators/*.cs",
|
|
42
|
+
"SourceGenerators/WallstopStudios.DxMessaging.SourceGenerators/*.cs.meta",
|
|
43
|
+
"SourceGenerators/WallstopStudios.DxMessaging.SourceGenerators/*.csproj",
|
|
44
|
+
"SourceGenerators/WallstopStudios.DxMessaging.SourceGenerators/*.csproj.meta",
|
|
45
|
+
"SourceGenerators/WallstopStudios.DxMessaging.SourceGenerators.meta",
|
|
46
|
+
"CHANGELOG.md",
|
|
47
|
+
"CHANGELOG.md.meta",
|
|
48
|
+
"LICENSE.md",
|
|
49
|
+
"LICENSE.md.meta",
|
|
50
|
+
"README.md",
|
|
51
|
+
"README.md.meta",
|
|
52
|
+
"Third Party Notices.md",
|
|
53
|
+
"Third Party Notices.md.meta",
|
|
54
|
+
"package.json.meta",
|
|
55
|
+
"Editor.meta",
|
|
56
|
+
"Runtime.meta",
|
|
57
|
+
"SourceGenerators.meta"
|
|
58
|
+
],
|
|
59
|
+
"scripts": {
|
|
60
|
+
"test": "node --test scripts/",
|
|
61
|
+
"format": "prettier --write \"**/*.{md,markdown,json,asmdef,asmref,yml,yaml}\"",
|
|
62
|
+
"format:check": "prettier --check \"**/*.{md,markdown,json,asmdef,asmref,yml,yaml}\"",
|
|
63
|
+
"lint:markdown": "markdownlint-cli2 \"**/*.md\" \"**/*.markdown\"",
|
|
64
|
+
"check:spelling": "cspell --no-progress --no-summary \"**/*.{md,markdown,cs,json,yml,yaml,ps1,js}\"",
|
|
65
|
+
"sync:banner": "node scripts/sync-banner-version.js",
|
|
66
|
+
"update:llms-txt": "node scripts/update-llms-txt.js",
|
|
67
|
+
"check:llms-txt": "node scripts/update-llms-txt.js --check",
|
|
68
|
+
"update:skills-index": "node scripts/generate-skills-index.js && prettier --write .llm/skills/index.md",
|
|
69
|
+
"check:skills-index": "node scripts/generate-skills-index.js --check",
|
|
70
|
+
"refresh:analyzers": "node scripts/analyzers/verify-analyzer-payload.js --write",
|
|
71
|
+
"check:analyzers": "node scripts/analyzers/verify-analyzer-payload.js --check",
|
|
72
|
+
"fix:csharp-underscores": "node scripts/fix-csharp-underscore-methods.js",
|
|
73
|
+
"validate:asmdef-references": "node scripts/validate-asmdef-references.js",
|
|
74
|
+
"validate:unity-versions": "node scripts/validate-unity-versions.js",
|
|
75
|
+
"validate:js-loc-budget": "node scripts/validate-js-loc-budget.js",
|
|
76
|
+
"validate:npm-meta": "node scripts/validate-npm-meta.js",
|
|
77
|
+
"validate:docs:strict": "python3 -m venv .artifacts/docs-venv && .artifacts/docs-venv/bin/python -m pip install -r requirements-docs.txt && .artifacts/docs-venv/bin/mkdocs build --strict --site-dir _site",
|
|
78
|
+
"validate:all": "npm run validate:asmdef-references && npm run validate:unity-versions && npm run validate:js-loc-budget && npm run validate:npm-meta && npm run check:analyzers && npm run check:llms-txt && npm run check:skills-index"
|
|
79
|
+
},
|
|
80
|
+
"devDependencies": {
|
|
81
|
+
"cspell": "10.0.1",
|
|
82
|
+
"markdownlint-cli2": "0.22.1",
|
|
83
|
+
"prettier": "3.8.4"
|
|
84
|
+
},
|
|
85
|
+
"samples": [
|
|
86
|
+
{
|
|
87
|
+
"displayName": "Mini Combat",
|
|
88
|
+
"description": "Simple combat scenario showing Untargeted (settings), Targeted (heal), Broadcast (damage) with MessageAwareComponent and emit helpers.",
|
|
89
|
+
"path": "Samples~/Mini Combat"
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
"displayName": "UI Buttons + Inspector",
|
|
93
|
+
"description": "UI-driven message emissions and a global observer demonstrating inspector diagnostics and RegisterGlobalAcceptAll.",
|
|
94
|
+
"path": "Samples~/UI Buttons + Inspector"
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
"displayName": "Dependency Injection",
|
|
98
|
+
"description": "Integration samples for Zenject, VContainer, and Reflex showing IMessageRegistrationBuilder usage with container lifecycles.",
|
|
99
|
+
"path": "Samples~/DI"
|
|
100
|
+
}
|
|
101
|
+
]
|
|
102
|
+
}
|
package/package.json.meta
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
fileFormatVersion: 2
|
|
2
|
-
guid: 0ba0ca7e30f2de0489c0268f937ad9b1
|
|
3
|
-
PackageManifestImporter:
|
|
4
|
-
externalObjects: {}
|
|
5
|
-
userData:
|
|
6
|
-
assetBundleName:
|
|
7
|
-
assetBundleVariant:
|
|
1
|
+
fileFormatVersion: 2
|
|
2
|
+
guid: 0ba0ca7e30f2de0489c0268f937ad9b1
|
|
3
|
+
PackageManifestImporter:
|
|
4
|
+
externalObjects: {}
|
|
5
|
+
userData:
|
|
6
|
+
assetBundleName:
|
|
7
|
+
assetBundleVariant:
|