View Single Post
  #2  
Old 06-26-2016, 12:33 AM
Jeff Jeff is offline
WorldViz Team Member
 
Join Date: Aug 2008
Posts: 2,471
By default, the menu is aligned to the left of the window. It also can be aligned to the center:

Code:
menu = vizmenu.add()
menu.setAlignment(vizmenu.CENTER)
You can change the font size used by vizmenu to scale menus up/down. The default font size is 16:

Code:
#Scale the menu up
vizmenu.MENU_FONT_SIZE = 20
Reply With Quote