Issue with Task Inspector for SerializedReference Drawer

christides11

New member
Unsure if this is an issue on the drawer's side or BD, but I'm having a problem with SerializedReference drawers not drawing correctly in BT's inspector while it's been fine everywhere else.
I've tried both this one (which is the main one I use in my project) and this one, neither which render correct.
Here's the script.
public class InState : FCharaConditional
{
[SerializeReference, SubclassSelector]
public FighterStateReferenceBase state = new FighterStateReferenceBase();

public override TaskStatus OnUpdate()
{
if (stateManager.CurrentState == state.GetState()) return TaskStatus.Success;
return TaskStatus.Failure;
}
}
How it looks in BD
1692428030151.png
How it's suppose to look
1692428120157.png
 
Top