CustomInfo.cs 779 B

123456789101112131415161718192021
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. public class CustomInfo
  5. {
  6. public static int mWidth = 1280;
  7. public static int mHight = 720;
  8. public static int FPS = 30;
  9. //public static string url = "apitest.shadowcreator.com";//uat测试版
  10. // public static string url = "api.shadowcreator.com:443/rtcwss/";//正式版
  11. public static string url = "office.ghz-tech.com:3442/rtcwss/";
  12. public static int POST = 3442;
  13. public static string disPlayName = "";
  14. public static string RoomId = "1111";
  15. public static string roomPwd = "";
  16. public static bool isRevAllAudio = true;
  17. public static bool isRevAllVideo = false;
  18. public static bool isSendAudio = true;
  19. public static bool isSendVideo = false;
  20. }