I'm trying to change the Home so that it recenters the display instead of taking the user to the home screen, but I can't seem to make this work. The documentation indicates either of the following method calls will work:
PXRSystem.PropertySetHomeKey(HomeEventEnum.SINGLECLICK, HomeFunctionEnum.VALUEHOMERECENTER, null);
PXRSystem.PropertySetHomeKeyAll(HomeEventEnum.SINGLECLICK, HomeFunctionEnum.VALUEHOMERECENTER, 0, null, null, null);
I am calling this from a GameObject attached to the camera, in it's Start() method, but neither one does anything - the home button behaves the same as before.
Is there some additional call I need to do before or instead of this, or some other functionality/setting I need to implement?