We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
给代码 virtual EBTStatus update_impl(Agent* pAgent, EBTStatus childStatus) { BEHAVIAC_UNUSED_VAR(pAgent); BEHAVIAC_UNUSED_VAR(childStatus); unsigned long long& opl = ((ClientAI*)pAgent)->player_id; unsigned long opr = 0; bool op = PrivateDetails::Equal(opl, opr);//一个是ull 一个是ul 我想两边比较应该和player_id 类型一直,策划经常会拿一个玩家id 去比较 return op ? BT_SUCCESS : BT_FAILURE; }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
给代码
virtual EBTStatus update_impl(Agent* pAgent, EBTStatus childStatus)
{
BEHAVIAC_UNUSED_VAR(pAgent);
BEHAVIAC_UNUSED_VAR(childStatus);
unsigned long long& opl = ((ClientAI*)pAgent)->player_id;
unsigned long opr = 0;
bool op = PrivateDetails::Equal(opl, opr);//一个是ull 一个是ul 我想两边比较应该和player_id 类型一直,策划经常会拿一个玩家id 去比较
return op ? BT_SUCCESS : BT_FAILURE;
}
The text was updated successfully, but these errors were encountered: