CustomInfo.cs 610 B

12345678910111213141516171819
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. public class CustomInfo
  5. {
  6. public static int mWidth = 1920;
  7. public static int mHight = 1080;
  8. public static int FPS = 40;
  9. public static string url = "apitest.shadowcreator.com";
  10. public static int POST = 6443;
  11. public static string disPlayName = "";
  12. public static string RoomId = "";
  13. public static string roomPwd = "";
  14. public static bool isRevAllAudio = true;
  15. public static bool isRevAllVideo = true;
  16. public static bool isSendAudio = false;
  17. public static bool isSendVideo = true;
  18. }