LanguageUtil.cs 271 B

12345678910111213141516
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. namespace SC.XR.Unity
  5. {
  6. public class LanguageUtil
  7. {
  8. public static SystemLanguage GetLanguage()
  9. {
  10. return Application.systemLanguage;
  11. }
  12. }
  13. }