GetPlatformName - Debug
Revision as of 17:06, 4 August 2021 by imported>SkylerModder
Member of: Debug Script
Obtains the game's platform name.
Syntax
string Function GetPlatformName() native global
Parameters
None.
Return Value
The game's platform name (PC, 360, etc).
- "Win32" (Skyrim / Skyrim Legendary Edition (PC))
- "Win64" (Skyrim Special Edition (PC))
- "XB1" (Xbox One)
Examples
; Print out the current platform name to the log
Debug.Trace("You are running on the " + Debug.GetPlatformName() + " platform")