Dependency Injection in custom action Unity Behaviour Graph - Stack Overflow

How to get or inject dependencies in custom action classes?We can do GameObject.GetComponent OnStart b

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.

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743885977a4524034.html

相关推荐

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信