To net8.0
This commit is contained in:
@@ -1,4 +1,3 @@
|
||||
using Enigmos.Modules.ProgrammableModules;
|
||||
using Godot;
|
||||
using Nocturnis;
|
||||
using Nocturnis.Enigmos.ModuleManuals;
|
||||
|
||||
@@ -28,10 +28,7 @@ public partial class ModulePolymorphismTab : Panel, IModuleManualTab, ISceneConc
|
||||
PortGroups = GetNode<VBoxContainer>("ScrolledItems/PortGroups");
|
||||
foreach (IDataPortGroup group in Module.ConfigurablePortGroups)
|
||||
{
|
||||
PortTypeSelector selector = GlobalProvider
|
||||
.AssetMapper<PortTypeSelector>.Scene
|
||||
.Instantiate<PortTypeSelector>();
|
||||
selector.Init(group);
|
||||
PortTypeSelector selector = GlobalProvider.ProcessProvider.BuildPortTypeSelector(group) as PortTypeSelector;
|
||||
PortGroups.AddChild(selector);
|
||||
}
|
||||
Name = "Poly";
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
using Godot;
|
||||
using Nocturnis;
|
||||
using Nocturnis.DataStructures.DataPortGroups;
|
||||
using Nocturnis.DataStructures.DataTypes;
|
||||
using Nocturnis.Enigmos.ModuleManuals;
|
||||
using Nocturnis.GlobalManagement.Providers;
|
||||
|
||||
namespace Enigmos.Manual;
|
||||
|
||||
public partial class PortTypeSelector : Control, ISceneConcept
|
||||
public partial class PortTypeSelector : Control, ISceneConcept, IPortTypeSelector
|
||||
{
|
||||
private bool InitFlag { get; set; }
|
||||
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
using Enigmos.Modules.ProgrammableModules;
|
||||
using Godot;
|
||||
using Nocturnis;
|
||||
using Nocturnis.Enigmos.ModuleManuals;
|
||||
|
||||
Reference in New Issue
Block a user