コード例 #1
0
 public DomainNodeRenderer(ConversationNode node, PointF p, Func <Id <LocalizedStringType>, Id <LocalizedText>, string> localizer)
     : base(node, p)
 {
     m_titleSection      = new TitleSection(node);
     m_outputsSection    = new OutputsSection(node);
     m_parametersSection = new ParametersSection(node, localizer);
 }
コード例 #2
0
 public EditableUI(ConversationNode node, PointF p, Func <Id <LocalizedStringType>, Id <LocalizedText>, string> localizer)
     : base(node, p)
 {
     m_titleSection = new TitleSection(node);
     //m_descriptionSection = new DescriptionSection(node);
     m_outputsSection    = new OutputsSection(node);
     m_parametersSection = new ParametersSection(node, localizer, ShouldRender);
     m_rounded           = RoundedConfig.TryGet(Node.Data.Config) ?? false;
 }