update
This commit is contained in:
parent
8a27ca60e5
commit
40836a1ee6
|
@ -336,7 +336,7 @@ QList<std::shared_ptr<LogicalNode>> SequenceNode::getForwards() const
|
|||
|
||||
QString SequenceNode::typeName() const
|
||||
{
|
||||
return u8"顺序节点";
|
||||
return u8"顺序";
|
||||
}
|
||||
|
||||
LogicalResult SequenceNode::execute() {
|
||||
|
@ -481,7 +481,7 @@ void SelectorNode::reset()
|
|||
|
||||
QString SelectorNode::typeName() const
|
||||
{
|
||||
return u8"选择节点";
|
||||
return u8"选择";
|
||||
}
|
||||
|
||||
LogicalResult SelectorNode::execute()
|
||||
|
@ -523,7 +523,7 @@ void ParallelNode::reset()
|
|||
|
||||
QString ParallelNode::typeName() const
|
||||
{
|
||||
return u8"并行节点";
|
||||
return u8"并行";
|
||||
}
|
||||
|
||||
LogicalResult ParallelNode::execute()
|
||||
|
@ -579,7 +579,7 @@ void CompareNode::reset() {
|
|||
|
||||
QString CompareNode::typeName() const
|
||||
{
|
||||
return QString(u8"%1<%2>").arg(u8"比较节点", delegateName());
|
||||
return QString(u8"%1<%2>").arg(u8"比较", delegateName());
|
||||
}
|
||||
|
||||
LogicalResult CompareNode::execute()
|
||||
|
@ -764,7 +764,7 @@ QList<std::shared_ptr<LogicalNode>> ExecuteNode::getForwards() const
|
|||
|
||||
QString ExecuteNode::typeName() const
|
||||
{
|
||||
return QString(u8"执行节点<%1>").arg(delegateName());
|
||||
return QString(u8"执行<%1>").arg(delegateName());
|
||||
}
|
||||
|
||||
QHash<QString, std::shared_ptr<TopicData>> ExecuteNode::inputList() const
|
||||
|
|
|
@ -465,7 +465,7 @@ enum class IO_TYPE {
|
|||
class COMPONENTBASIC_EXPORT BehaviorMapNode : public LogicalNode {
|
||||
private:
|
||||
std::shared_ptr<MapKernal> _bind_kernal;
|
||||
QString _map_name = u8"行为树节点";
|
||||
QString _map_name = u8"行为树";
|
||||
|
||||
/// <summary>
|
||||
/// 華芞曹講桶
|
||||
|
|
Loading…
Reference in New Issue