blackboardset(name,value);
Inheritance: StorySystem.AbstractStoryCommand
Exemple #1
0
        protected override IStoryCommand CloneCommand()
        {
            BlackboardSetCommand cmd = new BlackboardSetCommand();

            cmd.m_AttrName = m_AttrName.Clone();
            cmd.m_Value    = m_Value.Clone();
            return(cmd);
        }
 public override IStoryCommand Clone()
 {
     BlackboardSetCommand cmd = new BlackboardSetCommand();
     cmd.m_AttrName = m_AttrName.Clone();
     cmd.m_Value = m_Value.Clone();
     return cmd;
 }