Skip to content

Hide The Reference Picker

You can add the HideReferenceObjectPicker attribute to the class to hide the reference picker.

1
2
3
4
5
6
7
8
[HideReferenceObjectPicker]
public interface ISomeInterface
{
    float SomeField { get; set; }
    float SomeOtherField { get; set; }
}

public ISomeInterface SomeInterfaceField;

You can also add the attribute to the SomeInterfaceField instead if you only want to hide the reference picker for that specific instance.


Last update: September 30, 2021
Back to top