12345678910111213141516171819 |
- using System.Collections;
- using System.Collections.Generic;
- using UnityEngine;
- public class CustomInfo
- {
- public static int mWidth = 1920;
- public static int mHight = 1080;
- public static int FPS = 40;
- public static string url = "apitest.shadowcreator.com";
- public static int POST = 6443;
- public static string disPlayName = "";
- public static string RoomId = "";
- public static string roomPwd = "";
- public static bool isRevAllAudio = true;
- public static bool isRevAllVideo = true;
- public static bool isSendAudio = false;
- public static bool isSendVideo = true;
- }
|