Unity 模仿win 鼠标多选框
``` using System.Collections; using System.Collections.Generic; using UnityEngine;
Read More
unity中修改系统音量
在unity中修改系统音量,通过快捷键的方式调整音量 ``` //修改系统音量 public class UDAudioSystem : MonoBehaviour { //通过调整音量的快捷键来调整音量大小 #region System [DllImport(“user32.dll”)] static extern void keybd_event(byte bVk, byte bScan, UInt32 dwFlags, UInt32 dwExtraInfo);
Read More