returns true if Processing is running on a Mac OS X machine.
()
| 22 | * returns true if Processing is running on a Mac OS X machine. |
| 23 | */ |
| 24 | static public boolean isMacOS() { |
| 25 | //return PApplet.platform == PConstants.MACOSX; |
| 26 | return System.getProperty("os.name").contains("Mac"); |
| 27 | } |
| 28 | |
| 29 | static public boolean hasMacOSStyleMenus() { |
| 30 | return OSUtils.isMacOS() && "true".equals(System.getProperty("apple.laf.useScreenMenuBar")); |
no outgoing calls