最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

Dependency Injection in custom action Unity Behaviour Graph - Stack Overflow

programmeradmin3浏览0评论

How to get or inject dependencies in custom action classes? We can do GameObject.GetComponent OnStart but that will get every time the node starts. Instead of initializing one time.

Current work around

[SerializeReference] public AIMovementHandler aiMovementHandler;

protected override Status OnStart()
{
    if(aiMovementHandler == null)
        aiMovementHandler = GameObject.GetComponent<AIMovementHandler>();
    
    
    Debug.Log("on start of node");
    aiMovementHandler.SetDestinationToChild();
    return Status.Running;
}

There is unneccessary null check every time the node executes

Is there nothing like Awake or constructor where i can initialize it just once.

发布评论

评论列表(0)

  1. 暂无评论