12345678910111213141516171819202122 |
- using System.Collections;
- using System.Collections.Generic;
- using UnityEngine;
- namespace CScript.App
- {
- public static class AppConfig
- {
- public static bool isNewMeshData = true;
-
-
-
-
-
-
-
-
- public static readonly string HOLORGRAPHIC_SERVER_IP = "101.229.213.71";
- public static readonly int HOLORGRAPHIC_TCP_SERVER_PORT = 4434;
- public static readonly int HOLORGRAPHIC_QUIC_SERVER_PORT = 4433;
- }
- }
|