![](https://i-blog.csdnimg.cn/columns/default/20201014180756916.png?x-oss-process=image/resize,m_fixed,h_224,w_224)
Unity3D
悟無生
这个作者很懒,什么都没留下…
展开
-
Unity3D Debug.Log 不输出信息
原因是Consol面板关闭了信息输出:所以我们把这里点开就行了:好了,回来了~原创 2021-07-30 13:22:22 · 5352 阅读 · 1 评论 -
Unity3D 设置摄像头的分辨率,比如罗技
Unity3D 设置摄像头的分辨率,比如罗技转载 2016-11-14 13:27:59 · 6528 阅读 · 0 评论 -
Unity3D 去掉 exe 边框
public class NoWindows : MonoBehaviour { public Rect screenPosition; [DllImport("user32.dll")] static extern IntPtr SetWindowLong(IntPtr hwnd, int _nIndex, int dwNewLong); [Dll原创 2016-12-07 15:28:57 · 1298 阅读 · 0 评论 -
Unity3D 得到 主窗口句柄
public delegate bool WNDENUMPROC(IntPtr hwnd, uint lParam); [DllImport("user32.dll", SetLastError = true)] public static extern bool EnumWindows(WNDENUMPROC lpEnumFunc, uint lParam);原创 2016-12-07 15:29:55 · 4563 阅读 · 1 评论