They dont show up in my menu in Unreal 5.6 .
I have also tried manual loading “D:\Program Files\Epic Games\UE_5.6\Engine\Plugins\Animation\ControlRig\Content\Python\init_unreal.py” during launch.
I added “import unreal” to its top. Still no luck.
Any ideas how to get “Add Null above selected” menu option to show up?
Did go trough the python code and it seems that UE 5.6 has changed the context menu from New to New Element, but did not update the python code. So simply changing this line :
menu = tool_menus.extend_menu("ControlRigEditor.RigHierarchy.ContextMenu.New")
To this line
menu = tool_menus.extend_menu("ControlRigEditor.RigHierarchy.ContextMenu.NewElement")
fixed the issue. Now applying same fix to all the python code should do the trick.
I verify the engine and try again, just change the code @ezSonix mentioned, and remove the _pycache_, this time worked, even if i move back the _pycache_ files.