behavior3行为树
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

23 行
562 B

%%%-------------------------------------------------------------------
%%% @author DY
%%% @copyright (C) 2020, <COMPANY>
%%% @doc
%%% 判断自己是否死亡
%%% 死亡:SUCCESS
%%% 存活:FAILURE
%%% @end
%%% Created : 07. 10月 2020 15:26
%%%-------------------------------------------------------------------
-module(cond_is_died).
-include("eBhv3.hrl").
%% API
-export([tick/2]).
tick(_BTree, #{cur_power := CurPower} = State) ->
case CurPower =< 0 of
true ->
{?BT_SUCCESS, State};
false ->
{?BT_FAILURE, State}
end.