大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
这篇文章主要讲解了Unity实现相机截图功能的方法,内容清晰明了,对此有兴趣的小伙伴可以学习一下,相信大家阅读完之后会有帮助。
成都创新互联公司不只是一家网站建设的网络公司;我们对营销、技术、服务都有自己独特见解,公司采取“创意+综合+营销”一体化的方式为您提供更专业的服务!我们经历的每一步也许不一定是最完美的,但每一步都有值得深思的意义。我们珍视每一份信任,关注我们的网站设计制作、成都网站设计质量和服务品质,在得到用户满意的同时,也能得到同行业的专业认可,能够为行业创新发展助力。未来将继续专注于技术创新,服务升级,满足企业一站式成都营销网站建设需求,让再小的高端网站设计也能产生价值!
最近做项目的时候需要在游戏里截一张高清截图,研究了一下写成脚本,方便以后使用。
脚本可以自定义分辨率,用相机截高清截图。可以用代码动态截图,也可以在编辑模式下截图。
注意截图宽高比要正确,宽高比不正确时可能会出问题。
截图效果:
脚本:
CameraCapture.cs
using UnityEngine; using System.IO; ////// 相机截图 /// public class CameraCapture : MonoBehaviour { // 截图尺寸 public enum CaptureSize { CameraSize, ScreenResolution, FixedSize } // 目标摄像机 public Camera targetCamera; // 截图尺寸 public CaptureSize captureSize = CaptureSize.CameraSize; // 像素尺寸 public Vector2 pixelSize; // 保存路径 public string savePath = "StreamingAssets/"; // 文件名称 public string fileName = "cameraCapture.png"; #if UNITY_EDITOR private void Reset() { targetCamera = GetComponentZhangYu 2018-07-06 ///(); pixelSize = new Vector2(Screen.currentResolution.width, Screen.currentResolution.height); } #endif /// 保存截图 /// 目标摄像机 public void saveCapture() { Vector2 size = pixelSize; if (captureSize == CaptureSize.CameraSize) { size = new Vector2(targetCamera.pixelWidth, targetCamera.pixelHeight); } else if (captureSize == CaptureSize.ScreenResolution) { size = new Vector2(Screen.currentResolution.width, Screen.currentResolution.height); } string path = Application.dataPath + "/" + savePath + fileName; saveTexture(path, capture(targetCamera, (int)size.x, (int)size.y)); } ///相机截图 /// 目标相机 public static Texture2D capture(Camera camera) { return capture(camera, Screen.width, Screen.height); } ///相机截图 /// 目标相机 /// 宽度 /// 高度 public static Texture2D capture(Camera camera, int width, int height) { RenderTexture rt = new RenderTexture(width, height, 0); rt.depth = 24; rt.antiAliasing = 8; camera.targetTexture = rt; camera.RenderDontRestore(); RenderTexture.active = rt; Texture2D texture = new Texture2D(width, height, TextureFormat.ARGB32, false, true); Rect rect = new Rect(0, 0, width, height); texture.ReadPixels(rect, 0, 0); texture.filterMode = FilterMode.Point; texture.Apply(); camera.targetTexture = null; RenderTexture.active = null; Destroy(rt); return texture; } ///保存贴图 /// 保存路径 /// Texture2D public static void saveTexture(string path, Texture2D texture) { File.WriteAllBytes(path, texture.EncodeToPNG()); #if UNITY_EDITOR Debug.Log("已保存截图到:" + path); #endif } }
脚本编辑器:
CameraCaptureEditor.cs
using UnityEditor; using UnityEngine; ////// 相机截图 编辑器 /// [CanEditMultipleObjects] [CustomEditor(typeof(CameraCapture))] public class CameraCaptureEditor : Editor { public override void OnInspectorGUI() { // 属性 CameraCapture script = (CameraCapture)target; int selected = (int)script.captureSize; // 重绘GUI EditorGUI.BeginChangeCheck(); drawProperty("targetCamera", "目标像机"); string[] options = new string[] { "像机尺寸", "屏幕尺寸", "固定尺寸"}; selected = EditorGUILayout.Popup("截图尺寸", selected, options, GUILayout.ExpandWidth(true)); script.captureSize = (CameraCapture.CaptureSize)selected; if (script.captureSize == CameraCapture.CaptureSize.FixedSize) { drawProperty("pixelSize", "像素尺寸"); EditorGUILayout.HelpBox("请保持正确的宽高比!\n否则截图区域可能出现错误。", MessageType.Info); } drawProperty("savePath", "保存路径"); drawProperty("fileName", "文件名称"); // 保存截图按钮 bool isPress = GUILayout.Button("保存截图", GUILayout.ExpandWidth(true)); if (isPress) script.saveCapture(); if (EditorGUI.EndChangeCheck()) serializedObject.ApplyModifiedProperties(); } private void drawProperty(string property, string label) { EditorGUILayout.PropertyField(serializedObject.FindProperty(property), new GUIContent(label), true); } }ZhangYu 2018-07-06 ///
看完上述内容,是不是对Unity实现相机截图功能的方法有进一步的了解,如果还想学习更多内容,欢迎关注创新互联行业资讯频道。