It possible with a small code change (wich I already made).
Please open up ‘EditorUtils.ContextMenus’ and in method ‘Internal_GetMethodSelectionMenu’, please change this piece of code:
1
2
3
4
5
if(propertiesOnly!=method.IsSpecialName){
continue;
}
With this:
1
2
3
4
5
if(propertiesOnly!=method.IsPropertyAccessor()){
continue;
}
With this change, operators will be shown in the list.
Let me know if that works for you.
Thanks!
Join us on Discord: https://discord.gg/97q2Rjh
Login
Register
By registering on this website you agree to our Privacy Policy.