AppConfig.cs 974 B

12345678910111213141516171819202122
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. namespace CScript.App
  5. {
  6. public static class AppConfig
  7. {
  8. public static bool isNewMeshData = true;
  9. //serverIP.text = "192.168.0.183";
  10. //serverPort.text = "7005";
  11. //serverIP.text = "192.168.60.77";
  12. //serverPort.text = "7004";
  13. //serverIP.text = "192.168.0.72";
  14. //serverPort.text = "7003";
  15. //TCP通道参数: tcp,222.70.2.28,4434
  16. //Quic通道参数:quic,222.70.2.28,4433
  17. public static readonly string HOLORGRAPHIC_SERVER_IP = "101.229.213.71";// "222.70.2.28";//"222.128.117.206";// "222.70.2.28";//"192.168.0.72";//"222.70.2.28";// "192.168.200.144";// "222.70.2.28";// "222.70.2.28";222.128.117.206
  18. public static readonly int HOLORGRAPHIC_TCP_SERVER_PORT = 4434;//6666;//7004;//6666;//6666 7003
  19. public static readonly int HOLORGRAPHIC_QUIC_SERVER_PORT = 4433;//4433;//6666 7003
  20. }
  21. }