We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d71cbc0 commit f751ee8Copy full SHA for f751ee8
sources/editor/Stride.Core.Assets.Editor/CoreAssetsEditorPlugin.cs
@@ -20,8 +20,10 @@ public override void InitializeSession(ISessionViewModel session)
20
{
21
if (session.ServiceProvider.TryGet<ICopyPasteService>() is { } copyPasteService)
22
23
- copyPasteService.RegisterProcessor(new AssetItemPasteProcessor(session));
+ // FIXME xplat-editor order seems to matter we could make it buggy with plugins
24
+ // instead, we should have a sorting/priority mechanism similar to the template providers
25
copyPasteService.RegisterProcessor(new AssetPropertyPasteProcessor());
26
+ copyPasteService.RegisterProcessor(new AssetItemPasteProcessor(session));
27
}
28
29
0 commit comments