mirror of
https://gitee.com/langsisi_admin/serein-flow
synced 2026-03-27 19:46:35 +08:00
重新优化了NodeModel类;从硬编码类型改为“注册/获取”的方式,为下一步解耦Workbench与节点UI做准备。
新增了“全局数据节点”;保存项目文件时,不同节点可以使用自定义数据保存自身独特的数据,不再借用“方法参数”。 重新设计了运行时的环境输出;增量式生成器现在可以选择在属性变更的前后时间点插入自定义代码;重写了加载项目、保存项目的方法。
This commit is contained in:
@@ -5,18 +5,7 @@ namespace Serein.Workbench.Node.ViewModel
|
||||
{
|
||||
public class ActionNodeControlViewModel : NodeControlViewModelBase
|
||||
{
|
||||
//public SingleActionNode NodelModel
|
||||
//{
|
||||
// get => (SingleActionNode)base.NodeModel; set
|
||||
// {
|
||||
// if (base.NodeModel == null)
|
||||
// {
|
||||
// base.NodeModel = value;
|
||||
// }
|
||||
// }
|
||||
//}
|
||||
|
||||
public ActionNodeControlViewModel(SingleActionNode node):base(node)
|
||||
public ActionNodeControlViewModel(SingleActionNode node) : base(node)
|
||||
{
|
||||
// this.NodelModel = node;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user