2023-10-28 23:56:34 +00:00
|
|
|
package funkin.util;
|
|
|
|
|
2023-11-07 09:04:22 +00:00
|
|
|
/**
|
|
|
|
* Utility functions related to specific platforms.
|
|
|
|
*/
|
2023-10-28 23:56:34 +00:00
|
|
|
class PlatformUtil
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Returns true if the current platform is MacOS.
|
|
|
|
*
|
|
|
|
* NOTE: Only use this for choosing modifier keys for shortcut hints.
|
|
|
|
* @return Whether the current platform is MacOS, or HTML5 running on MacOS.
|
|
|
|
*/
|
|
|
|
public static function isMacOS():Bool
|
|
|
|
{
|
|
|
|
#if mac
|
|
|
|
return true;
|
|
|
|
#elseif html5
|
2023-11-05 04:26:03 +00:00
|
|
|
return js.Browser.window.navigator.platform.startsWith("Mac")
|
|
|
|
|| js.Browser.window.navigator.platform.startsWith("iPad")
|
|
|
|
|| js.Browser.window.navigator.platform.startsWith("iPhone");
|
2023-10-28 23:56:34 +00:00
|
|
|
#else
|
|
|
|
return false;
|
|
|
|
#end
|
|
|
|
}
|
|
|
|
}
|