Is there a way to get the current Owner within ObjectDrawer in edit-time?

Deadcow

New member
this.Task.Owner is null in edit mode 🤔 Maybe there is some way to get the Owner?
I found the way to access the private field mActiveObject of BehaviorDesignerWindow.instance.
Are there any downsides of accessing the private field here? Will it persist with behavior designer lock?
 
Last edited:
Task.Owner is only set at runtime, it's not set at edit time. You can use the private field.
 
Last edited:
Back
Top