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
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
namespace DxMessaging.Editor.Settings
|
|
2
2
|
{
|
|
3
3
|
#if UNITY_EDITOR
|
|
4
|
+
using System.Collections.Generic;
|
|
4
5
|
using System.Linq;
|
|
5
6
|
using Core.MessageBus;
|
|
6
7
|
using UnityEditor;
|
|
@@ -24,7 +25,7 @@ namespace DxMessaging.Editor.Settings
|
|
|
24
25
|
[SerializeField]
|
|
25
26
|
[HideInInspector]
|
|
26
27
|
[FormerlySerializedAs("_enableDiagnosticsInEditor")]
|
|
27
|
-
|
|
28
|
+
internal bool _legacyEnableDiagnosticsInEditor;
|
|
28
29
|
|
|
29
30
|
[SerializeField]
|
|
30
31
|
internal int _messageBufferSize = IMessageBus.DefaultMessageBufferSize;
|
|
@@ -32,13 +33,26 @@ namespace DxMessaging.Editor.Settings
|
|
|
32
33
|
[SerializeField]
|
|
33
34
|
internal bool _suppressDomainReloadWarning = true;
|
|
34
35
|
|
|
36
|
+
[SerializeField]
|
|
37
|
+
internal List<string> _baseCallIgnoredTypes = new();
|
|
38
|
+
|
|
39
|
+
[SerializeField]
|
|
40
|
+
internal bool _baseCallCheckEnabled = true;
|
|
41
|
+
|
|
42
|
+
[SerializeField]
|
|
43
|
+
internal bool _useConsoleBridge;
|
|
44
|
+
|
|
35
45
|
/// <summary>
|
|
36
46
|
/// Controls <see cref="DiagnosticsTarget"/> values applied to <see cref="IMessageBus.GlobalDiagnosticsTargets"/>.
|
|
37
47
|
/// </summary>
|
|
38
48
|
public DiagnosticsTarget DiagnosticsTargets
|
|
39
49
|
{
|
|
40
|
-
get =>
|
|
41
|
-
set
|
|
50
|
+
get => EffectiveDiagnosticsTargets;
|
|
51
|
+
set
|
|
52
|
+
{
|
|
53
|
+
_diagnosticsTargets = value;
|
|
54
|
+
_legacyEnableDiagnosticsInEditor = false;
|
|
55
|
+
}
|
|
42
56
|
}
|
|
43
57
|
|
|
44
58
|
/// <summary>
|
|
@@ -60,9 +74,124 @@ namespace DxMessaging.Editor.Settings
|
|
|
60
74
|
}
|
|
61
75
|
|
|
62
76
|
/// <summary>
|
|
63
|
-
///
|
|
77
|
+
/// Master toggle for the <c>MessageAwareComponent</c> base-call check (DXMSG006/007/008).
|
|
78
|
+
/// When <c>false</c>, the Inspector overlay and per-type warnings are silenced; the underlying
|
|
79
|
+
/// compile-time analyzer warnings remain unless explicitly suppressed via <c>.editorconfig</c>.
|
|
64
80
|
/// </summary>
|
|
65
|
-
|
|
81
|
+
/// <remarks>
|
|
82
|
+
/// S3: toggling from <c>false</c> back to <c>true</c> pokes
|
|
83
|
+
/// <see cref="DxMessaging.Editor.Analyzers.DxMessagingConsoleHarvester"/> on the next editor
|
|
84
|
+
/// tick so the snapshot repopulates without waiting for the user to clear/re-emit warnings
|
|
85
|
+
/// or to manually invoke <c>Tools/Wallstop Studios/DxMessaging/Rescan Base-Call Warnings</c>. The round-trip
|
|
86
|
+
/// is intentionally indirect (delayCall > RescanNow) to keep this property setter cheap and
|
|
87
|
+
/// safe to invoke from any editor context -- including OnValidate, where AssetDatabase may
|
|
88
|
+
/// be transitional.
|
|
89
|
+
/// </remarks>
|
|
90
|
+
public bool BaseCallCheckEnabled
|
|
91
|
+
{
|
|
92
|
+
get => _baseCallCheckEnabled;
|
|
93
|
+
set
|
|
94
|
+
{
|
|
95
|
+
bool previous = _baseCallCheckEnabled;
|
|
96
|
+
_baseCallCheckEnabled = value;
|
|
97
|
+
if (!previous && value)
|
|
98
|
+
{
|
|
99
|
+
// A master-toggle flip doesn't need a synchronous reflective harvest right now;
|
|
100
|
+
// the polled tick (~250ms) will pick up the sentinel cheaply on the editor's
|
|
101
|
+
// own update thread, avoiding a heavy reflection sweep on the main thread when
|
|
102
|
+
// the user has just clicked a checkbox. Indirected through delayCall so the
|
|
103
|
+
// setter is safe to invoke from any editor context (OnValidate, button click,
|
|
104
|
+
// etc.) without risking AssetDatabase reentrancy.
|
|
105
|
+
EditorApplication.delayCall += DxMessaging
|
|
106
|
+
.Editor
|
|
107
|
+
.Analyzers
|
|
108
|
+
.DxMessagingConsoleHarvester
|
|
109
|
+
.RequestRescan;
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
/// <summary>
|
|
115
|
+
/// Opt-in toggle for the legacy console-scrape bridge that augments the IL-reflection
|
|
116
|
+
/// scanner's snapshot with warnings harvested from <c>UnityEditor.LogEntries</c> and from
|
|
117
|
+
/// <c>CompilationPipeline.assemblyCompilationFinished</c>.
|
|
118
|
+
/// </summary>
|
|
119
|
+
/// <remarks>
|
|
120
|
+
/// <para>
|
|
121
|
+
/// Default <c>false</c>. The IL-reflection scanner
|
|
122
|
+
/// (<see cref="DxMessaging.Editor.Analyzers.BaseCallTypeScanner"/>) is the deterministic,
|
|
123
|
+
/// always-on primary source -- it walks every loaded <c>MessageAwareComponent</c> subclass
|
|
124
|
+
/// and inspects each override's IL body for the base-call shape, which is reliable across
|
|
125
|
+
/// Unity 2021 cache hits, incremental compiles, and arbitrary domain-reload sequences.
|
|
126
|
+
/// </para>
|
|
127
|
+
/// <para>
|
|
128
|
+
/// The legacy bridge predates the IL scanner and was the source of the intermittent
|
|
129
|
+
/// "missing warnings" bug on Unity 2021. Enable it ONLY if you want the union of both
|
|
130
|
+
/// data sources -- for example, to surface a regression in the IL byte-walker that is
|
|
131
|
+
/// already correctly captured by the compile-time analyzer's console output.
|
|
132
|
+
/// </para>
|
|
133
|
+
/// <para>
|
|
134
|
+
/// Toggling this property is observable via a deferred
|
|
135
|
+
/// <see cref="DxMessaging.Editor.Analyzers.DxMessagingConsoleHarvester.ScheduleRescanWhenIdle"/>
|
|
136
|
+
/// so the inspector overlay refreshes without waiting for the next compile.
|
|
137
|
+
/// </para>
|
|
138
|
+
/// </remarks>
|
|
139
|
+
public bool UseConsoleBridge
|
|
140
|
+
{
|
|
141
|
+
get => _useConsoleBridge;
|
|
142
|
+
set
|
|
143
|
+
{
|
|
144
|
+
if (_useConsoleBridge == value)
|
|
145
|
+
{
|
|
146
|
+
return;
|
|
147
|
+
}
|
|
148
|
+
_useConsoleBridge = value;
|
|
149
|
+
EditorUtility.SetDirty(this);
|
|
150
|
+
DxMessaging.Editor.Analyzers.DxMessagingConsoleHarvester.ScheduleRescanWhenIdle();
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
/// <summary>
|
|
155
|
+
/// Fully-qualified type names excluded from the base-call check. Editable on the settings
|
|
156
|
+
/// asset Inspector or via the Inspector overlay's "Ignore this type" button.
|
|
157
|
+
/// </summary>
|
|
158
|
+
public IReadOnlyList<string> BaseCallIgnoredTypes => _baseCallIgnoredTypes;
|
|
159
|
+
|
|
160
|
+
/// <summary>
|
|
161
|
+
/// Diagnostics target value after applying legacy serialized fields in memory. This does
|
|
162
|
+
/// not mark the settings asset dirty or persist the migration.
|
|
163
|
+
/// </summary>
|
|
164
|
+
internal DiagnosticsTarget EffectiveDiagnosticsTargets
|
|
165
|
+
{
|
|
166
|
+
get
|
|
167
|
+
{
|
|
168
|
+
if (
|
|
169
|
+
_diagnosticsTargets == DiagnosticsTarget.Off
|
|
170
|
+
&& _legacyEnableDiagnosticsInEditor
|
|
171
|
+
)
|
|
172
|
+
{
|
|
173
|
+
return DiagnosticsTarget.Editor;
|
|
174
|
+
}
|
|
175
|
+
return _diagnosticsTargets;
|
|
176
|
+
}
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
/// <summary>
|
|
180
|
+
/// Loads the settings asset without creating, saving, or migrating it. Returns
|
|
181
|
+
/// <c>null</c> when no asset exists.
|
|
182
|
+
/// </summary>
|
|
183
|
+
/// <remarks>
|
|
184
|
+
/// Unlike <see cref="GetOrCreateSettings"/>, this performs NO <c>AssetDatabase</c> mutation
|
|
185
|
+
/// (<c>CreateAsset</c>/<c>SaveAssets</c>/durable legacy migration), so it is safe to call
|
|
186
|
+
/// during the domain-load asset-import window -- e.g. from an <c>[InitializeOnLoad]</c>
|
|
187
|
+
/// static constructor -- where a synchronous mutation re-enters the importer and crashes
|
|
188
|
+
/// the native editor (issue #210). Legacy serialized fields are still reflected through
|
|
189
|
+
/// effective property getters so passive callers see the intended value while the durable
|
|
190
|
+
/// migration waits for a safe editor-idle tick. Callers that need the asset
|
|
191
|
+
/// created/migrated must schedule <see cref="GetOrCreateSettings"/> off that window (e.g.
|
|
192
|
+
/// via <see cref="DxMessaging.Editor.DxMessagingEditorIdle.ScheduleAssetDatabaseMutation"/>).
|
|
193
|
+
/// </remarks>
|
|
194
|
+
internal static DxMessagingSettings LoadSettingsPassive()
|
|
66
195
|
{
|
|
67
196
|
DxMessagingSettings settings = AssetDatabase.LoadAssetAtPath<DxMessagingSettings>(
|
|
68
197
|
SettingsPath
|
|
@@ -77,12 +206,29 @@ namespace DxMessaging.Editor.Settings
|
|
|
77
206
|
.FirstOrDefault(asset => asset != null);
|
|
78
207
|
}
|
|
79
208
|
|
|
209
|
+
return settings;
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
/// <summary>
|
|
213
|
+
/// Loads the settings asset if present, otherwise creates it with sensible defaults.
|
|
214
|
+
/// </summary>
|
|
215
|
+
/// <remarks>
|
|
216
|
+
/// Performs <c>AssetDatabase</c> mutations (create on first run, legacy-field migration), so
|
|
217
|
+
/// it MUST NOT be called synchronously during the domain-load asset-import window (issue
|
|
218
|
+
/// #210). Use <see cref="LoadSettingsPassive"/> for mutation-free reads in that context.
|
|
219
|
+
/// </remarks>
|
|
220
|
+
internal static DxMessagingSettings GetOrCreateSettings()
|
|
221
|
+
{
|
|
222
|
+
DxMessagingSettings settings = LoadSettingsPassive();
|
|
223
|
+
|
|
80
224
|
if (settings == null)
|
|
81
225
|
{
|
|
82
226
|
settings = CreateInstance<DxMessagingSettings>();
|
|
83
227
|
settings._diagnosticsTargets = DiagnosticsTarget.Off;
|
|
84
228
|
settings._messageBufferSize = IMessageBus.DefaultMessageBufferSize;
|
|
85
229
|
settings._suppressDomainReloadWarning = true;
|
|
230
|
+
settings._baseCallCheckEnabled = true;
|
|
231
|
+
settings._baseCallIgnoredTypes = new List<string>();
|
|
86
232
|
if (!AssetDatabase.IsValidFolder("Assets/Editor"))
|
|
87
233
|
{
|
|
88
234
|
AssetDatabase.CreateFolder("Assets", "Editor");
|
|
@@ -91,13 +237,8 @@ namespace DxMessaging.Editor.Settings
|
|
|
91
237
|
AssetDatabase.SaveAssets();
|
|
92
238
|
}
|
|
93
239
|
|
|
94
|
-
if (
|
|
95
|
-
settings._diagnosticsTargets == DiagnosticsTarget.Off
|
|
96
|
-
&& settings._legacyEnableDiagnosticsInEditor
|
|
97
|
-
)
|
|
240
|
+
if (settings.ApplyLegacyDiagnosticsMigration())
|
|
98
241
|
{
|
|
99
|
-
settings._diagnosticsTargets = DiagnosticsTarget.Editor;
|
|
100
|
-
settings._legacyEnableDiagnosticsInEditor = false;
|
|
101
242
|
EditorUtility.SetDirty(settings);
|
|
102
243
|
AssetDatabase.SaveAssets();
|
|
103
244
|
}
|
|
@@ -105,6 +246,21 @@ namespace DxMessaging.Editor.Settings
|
|
|
105
246
|
return settings;
|
|
106
247
|
}
|
|
107
248
|
|
|
249
|
+
internal bool ApplyLegacyDiagnosticsMigration()
|
|
250
|
+
{
|
|
251
|
+
if (!_legacyEnableDiagnosticsInEditor)
|
|
252
|
+
{
|
|
253
|
+
return false;
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
if (_diagnosticsTargets == DiagnosticsTarget.Off)
|
|
257
|
+
{
|
|
258
|
+
_diagnosticsTargets = DiagnosticsTarget.Editor;
|
|
259
|
+
}
|
|
260
|
+
_legacyEnableDiagnosticsInEditor = false;
|
|
261
|
+
return true;
|
|
262
|
+
}
|
|
263
|
+
|
|
108
264
|
/// <summary>
|
|
109
265
|
/// Returns a serialized wrapper for use in SettingsProvider inspectors.
|
|
110
266
|
/// </summary>
|
|
@@ -112,6 +268,100 @@ namespace DxMessaging.Editor.Settings
|
|
|
112
268
|
{
|
|
113
269
|
return new SerializedObject(GetOrCreateSettings());
|
|
114
270
|
}
|
|
271
|
+
|
|
272
|
+
private void OnEnable()
|
|
273
|
+
{
|
|
274
|
+
// Defensive: the field can be null if the asset was saved before this field existed.
|
|
275
|
+
EnsureIgnoreListInitialized();
|
|
276
|
+
// Intentionally NOT regenerating the sidecar here. OnEnable fires on every domain reload
|
|
277
|
+
// and play-mode entry; the sidecar on disk is already consistent with what we'd write
|
|
278
|
+
// (RegenerateSidecar is idempotent, but ImportAsset still produces churn). Regen runs
|
|
279
|
+
// only from OnValidate (user-driven edits) and from explicit Add/RemoveIgnoredType calls.
|
|
280
|
+
}
|
|
281
|
+
|
|
282
|
+
private void OnValidate()
|
|
283
|
+
{
|
|
284
|
+
EnsureIgnoreListInitialized();
|
|
285
|
+
// Issue #210: OnValidate fires during asset deserialization, including the domain-load
|
|
286
|
+
// asset-import-worker window where EditorApplication.isUpdating/isCompiling are both
|
|
287
|
+
// false. Writing + importing the sidecar synchronously there re-enters the asset
|
|
288
|
+
// importer and hard-crashes the native editor (GuidReservations::Reserve abort on Unity
|
|
289
|
+
// 6000.4+). Always defer to the next editor tick; never import synchronously from here.
|
|
290
|
+
DxMessagingBaseCallIgnoreSync.RegenerateSidecarDeferred(this);
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
private void EnsureIgnoreListInitialized()
|
|
294
|
+
{
|
|
295
|
+
if (_baseCallIgnoredTypes == null)
|
|
296
|
+
{
|
|
297
|
+
_baseCallIgnoredTypes = new List<string>();
|
|
298
|
+
}
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
/// <summary>
|
|
302
|
+
/// Adds <paramref name="fullyQualifiedTypeName"/> to the ignore list, marks the asset
|
|
303
|
+
/// dirty, saves, and regenerates the sidecar. No-op when the entry is already present.
|
|
304
|
+
/// </summary>
|
|
305
|
+
internal void AddIgnoredType(string fullyQualifiedTypeName)
|
|
306
|
+
{
|
|
307
|
+
if (string.IsNullOrWhiteSpace(fullyQualifiedTypeName))
|
|
308
|
+
{
|
|
309
|
+
return;
|
|
310
|
+
}
|
|
311
|
+
EnsureIgnoreListInitialized();
|
|
312
|
+
if (
|
|
313
|
+
_baseCallIgnoredTypes.Any(entry =>
|
|
314
|
+
string.Equals(entry, fullyQualifiedTypeName, System.StringComparison.Ordinal)
|
|
315
|
+
)
|
|
316
|
+
)
|
|
317
|
+
{
|
|
318
|
+
return;
|
|
319
|
+
}
|
|
320
|
+
_baseCallIgnoredTypes.Add(fullyQualifiedTypeName);
|
|
321
|
+
EditorUtility.SetDirty(this);
|
|
322
|
+
AssetDatabase.SaveAssets();
|
|
323
|
+
TryRegenerateSidecar();
|
|
324
|
+
}
|
|
325
|
+
|
|
326
|
+
/// <summary>
|
|
327
|
+
/// Removes <paramref name="fullyQualifiedTypeName"/> from the ignore list, marks the asset
|
|
328
|
+
/// dirty, saves, and regenerates the sidecar. No-op when the entry is absent.
|
|
329
|
+
/// </summary>
|
|
330
|
+
internal void RemoveIgnoredType(string fullyQualifiedTypeName)
|
|
331
|
+
{
|
|
332
|
+
if (string.IsNullOrWhiteSpace(fullyQualifiedTypeName))
|
|
333
|
+
{
|
|
334
|
+
return;
|
|
335
|
+
}
|
|
336
|
+
if (_baseCallIgnoredTypes == null)
|
|
337
|
+
{
|
|
338
|
+
return;
|
|
339
|
+
}
|
|
340
|
+
int removed = _baseCallIgnoredTypes.RemoveAll(entry =>
|
|
341
|
+
string.Equals(entry, fullyQualifiedTypeName, System.StringComparison.Ordinal)
|
|
342
|
+
);
|
|
343
|
+
if (removed > 0)
|
|
344
|
+
{
|
|
345
|
+
EditorUtility.SetDirty(this);
|
|
346
|
+
AssetDatabase.SaveAssets();
|
|
347
|
+
TryRegenerateSidecar();
|
|
348
|
+
}
|
|
349
|
+
}
|
|
350
|
+
|
|
351
|
+
private void TryRegenerateSidecar()
|
|
352
|
+
{
|
|
353
|
+
try
|
|
354
|
+
{
|
|
355
|
+
DxMessagingBaseCallIgnoreSync.RegenerateSidecar(this);
|
|
356
|
+
}
|
|
357
|
+
catch (System.Exception ex)
|
|
358
|
+
{
|
|
359
|
+
DxMessaging.Editor.DxMessagingEditorLog.LogWarning(
|
|
360
|
+
"Failed to regenerate base-call ignore sidecar.",
|
|
361
|
+
ex
|
|
362
|
+
);
|
|
363
|
+
}
|
|
364
|
+
}
|
|
115
365
|
}
|
|
116
366
|
#endif
|
|
117
367
|
}
|
|
@@ -1,3 +1,11 @@
|
|
|
1
|
-
fileFormatVersion: 2
|
|
2
|
-
guid: 477d53eef70c4496b945199c62169dfb
|
|
3
|
-
|
|
1
|
+
fileFormatVersion: 2
|
|
2
|
+
guid: 477d53eef70c4496b945199c62169dfb
|
|
3
|
+
MonoImporter:
|
|
4
|
+
externalObjects: {}
|
|
5
|
+
serializedVersion: 2
|
|
6
|
+
defaultReferences: []
|
|
7
|
+
executionOrder: 0
|
|
8
|
+
icon: {instanceID: 0}
|
|
9
|
+
userData:
|
|
10
|
+
assetBundleName:
|
|
11
|
+
assetBundleVariant:
|
|
@@ -10,7 +10,7 @@ namespace DxMessaging.Editor.Settings
|
|
|
10
10
|
/// Project Settings provider for DxMessaging configuration.
|
|
11
11
|
/// </summary>
|
|
12
12
|
/// <remarks>
|
|
13
|
-
/// Exposes toggles for global diagnostics mode and message buffer size under Project Settings
|
|
13
|
+
/// Exposes toggles for global diagnostics mode and message buffer size under Project Settings > Wallstop Studios > DxMessaging.
|
|
14
14
|
/// </remarks>
|
|
15
15
|
public sealed class DxMessagingSettingsProvider : SettingsProvider
|
|
16
16
|
{
|
|
@@ -41,53 +41,70 @@ namespace DxMessaging.Editor.Settings
|
|
|
41
41
|
/// <param name="searchContext">Search text provided by the Project Settings window.</param>
|
|
42
42
|
public override void OnGUI(string searchContext)
|
|
43
43
|
{
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
44
|
+
float previousLabelWidth = EditorGUIUtility.labelWidth;
|
|
45
|
+
EditorGUIUtility.labelWidth = 240f;
|
|
46
|
+
try
|
|
47
|
+
{
|
|
48
|
+
SerializedProperty targetsProp = _messagingSettings.FindProperty(
|
|
49
|
+
nameof(DxMessagingSettings._diagnosticsTargets)
|
|
50
|
+
);
|
|
51
|
+
DiagnosticsTarget currentTargets = (DiagnosticsTarget)targetsProp.enumValueFlag;
|
|
52
|
+
DiagnosticsTarget updatedTargets = (DiagnosticsTarget)
|
|
53
|
+
EditorGUILayout.EnumFlagsField(
|
|
54
|
+
new GUIContent(
|
|
55
|
+
"Diagnostics Targets",
|
|
56
|
+
"Select where global diagnostics should be enabled by default. Combine flags for multiple targets."
|
|
57
|
+
),
|
|
58
|
+
currentTargets
|
|
59
|
+
);
|
|
60
|
+
if (updatedTargets != currentTargets)
|
|
61
|
+
{
|
|
62
|
+
targetsProp.enumValueFlag = (int)updatedTargets;
|
|
63
|
+
}
|
|
64
|
+
EditorGUILayout.PropertyField(
|
|
65
|
+
_messagingSettings.FindProperty(nameof(DxMessagingSettings._messageBufferSize)),
|
|
50
66
|
new GUIContent(
|
|
51
|
-
"
|
|
52
|
-
"
|
|
67
|
+
"Message Buffer Size",
|
|
68
|
+
"Number of emissions kept per bus/token when diagnostics mode is active."
|
|
69
|
+
)
|
|
70
|
+
);
|
|
71
|
+
EditorGUILayout.PropertyField(
|
|
72
|
+
_messagingSettings.FindProperty(
|
|
73
|
+
nameof(DxMessagingSettings._suppressDomainReloadWarning)
|
|
53
74
|
),
|
|
54
|
-
|
|
75
|
+
new GUIContent(
|
|
76
|
+
"Suppress Domain Reload Warning",
|
|
77
|
+
"Disable the warning shown when Enter Play Mode Options skips domain reload; DxMessaging still resets its statics."
|
|
78
|
+
)
|
|
55
79
|
);
|
|
56
|
-
|
|
80
|
+
|
|
81
|
+
_messagingSettings.ApplyModifiedProperties();
|
|
82
|
+
}
|
|
83
|
+
finally
|
|
57
84
|
{
|
|
58
|
-
|
|
85
|
+
EditorGUIUtility.labelWidth = previousLabelWidth;
|
|
59
86
|
}
|
|
60
|
-
EditorGUILayout.PropertyField(
|
|
61
|
-
_messagingSettings.FindProperty(nameof(DxMessagingSettings._messageBufferSize)),
|
|
62
|
-
new GUIContent(
|
|
63
|
-
"Message Buffer Size",
|
|
64
|
-
"Number of emissions kept per bus/token when diagnostics mode is active."
|
|
65
|
-
)
|
|
66
|
-
);
|
|
67
|
-
EditorGUILayout.PropertyField(
|
|
68
|
-
_messagingSettings.FindProperty(
|
|
69
|
-
nameof(DxMessagingSettings._suppressDomainReloadWarning)
|
|
70
|
-
),
|
|
71
|
-
new GUIContent(
|
|
72
|
-
"Suppress Domain Reload Warning",
|
|
73
|
-
"Disable the warning shown when Enter Play Mode Options skips domain reload; DxMessaging still resets its statics."
|
|
74
|
-
)
|
|
75
|
-
);
|
|
76
|
-
|
|
77
|
-
_messagingSettings.ApplyModifiedProperties();
|
|
78
87
|
}
|
|
79
88
|
|
|
80
|
-
[SettingsProvider]
|
|
81
89
|
/// <summary>
|
|
82
90
|
/// Factory used by Unity to register the DxMessaging project settings page.
|
|
83
91
|
/// </summary>
|
|
84
92
|
/// <returns>Configured settings provider instance.</returns>
|
|
93
|
+
[SettingsProvider]
|
|
85
94
|
public static SettingsProvider CreateDxMessagingSettingsProvider()
|
|
86
95
|
{
|
|
87
|
-
DxMessagingSettingsProvider provider = new("Project/DxMessaging")
|
|
96
|
+
DxMessagingSettingsProvider provider = new("Project/Wallstop Studios/DxMessaging")
|
|
88
97
|
{
|
|
89
98
|
keywords = new HashSet<string>(
|
|
90
|
-
new[]
|
|
99
|
+
new[]
|
|
100
|
+
{
|
|
101
|
+
"DxMessaging",
|
|
102
|
+
"Diagnostics",
|
|
103
|
+
"MessageBus",
|
|
104
|
+
"Targets",
|
|
105
|
+
"Wallstop",
|
|
106
|
+
"Wallstop Studios",
|
|
107
|
+
}
|
|
91
108
|
),
|
|
92
109
|
};
|
|
93
110
|
|
|
@@ -1,3 +1,11 @@
|
|
|
1
|
-
fileFormatVersion: 2
|
|
2
|
-
guid: e4353b92a69a4703abc268fb885a1224
|
|
3
|
-
|
|
1
|
+
fileFormatVersion: 2
|
|
2
|
+
guid: e4353b92a69a4703abc268fb885a1224
|
|
3
|
+
MonoImporter:
|
|
4
|
+
externalObjects: {}
|
|
5
|
+
serializedVersion: 2
|
|
6
|
+
defaultReferences: []
|
|
7
|
+
executionOrder: 0
|
|
8
|
+
icon: {instanceID: 0}
|
|
9
|
+
userData:
|
|
10
|
+
assetBundleName:
|
|
11
|
+
assetBundleVariant:
|
package/Editor/Settings.meta
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
fileFormatVersion: 2
|
|
2
|
-
guid: 73f79e95899848a9b4307c19174b4a45
|
|
1
|
+
fileFormatVersion: 2
|
|
2
|
+
guid: 73f79e95899848a9b4307c19174b4a45
|
|
3
3
|
timeCreated: 1749668065
|