sevenPixels

2019年6月21日

截图

摘要: public static Texture2D CaptureScreen(Camera came, Rect r) { RenderTexture rt = new RenderTexture((int)r.width, (int)r.height, 0); came.targetTexture = rt; came.Render... 阅读全文

posted @ 2019-06-21 09:49 sevenPixels 阅读(103) 评论(0) 推荐(0) 编辑

读取指定路径图片

摘要: public static Sprite GetSpriteByIO(string _path) { FileStream fileStream = new FileStream(_path, FileMode.Open, FileAccess.Read); fileStream.Seek(0, SeekOrigin.Begin); b... 阅读全文

posted @ 2019-06-21 09:42 sevenPixels 阅读(210) 评论(0) 推荐(0) 编辑

2019年5月23日

MySql增删查改

摘要: using MySql.Data.MySqlClient; using System; using System.Collections.Generic; using System.Data; using UnityEngine; public class SqlConnectJson { public string Server; public string port; ... 阅读全文

posted @ 2019-05-23 14:44 sevenPixels 阅读(126) 评论(0) 推荐(0) 编辑

读写Json创建删除文件夹

摘要: using UnityEngine; using System.Collections; using System.Collections.Generic; using UnityEngine.UI; using System.IO; public static class Tools { static StreamWriter mStreamWriter; static St... 阅读全文

posted @ 2019-05-23 14:27 sevenPixels 阅读(305) 评论(0) 推荐(0) 编辑

动态加载图片

摘要: using System.Collections; using System.Collections.Generic; using UnityEngine.UI; using System.IO; public static class Tools { /// /// 加载图片 /// /// 地址 /// 需要赋值的图片 /// public static IEnumerator I... 阅读全文

posted @ 2019-05-23 14:23 sevenPixels 阅读(619) 评论(0) 推荐(0) 编辑

2019年3月5日

指定方向射线

摘要: Ray ray = new Ray(transform.position, -transform.up); RaycastHit hit; if (Physics.Raycast(ray, out hit, Mathf.Infinity)) { // 如果射线与平面碰撞,打印碰撞物体信息 D... 阅读全文

posted @ 2019-03-05 14:10 sevenPixels 阅读(174) 评论(0) 推荐(0) 编辑

2019年2月27日

不重复随机

摘要: public static List MyRandom(ref List tras, int number) { if (number > tras.Count) { Debug.Log("要取的个数大于数组长度!"); return null; } List res... 阅读全文

posted @ 2019-02-27 10:55 sevenPixels 阅读(114) 评论(0) 推荐(0) 编辑

Texture转Texture2D

摘要: private Texture2D TextureToTexture2D(Texture texture) { Texture2D texture2D = new Texture2D(texture.width, texture.height, TextureFormat.RGBA32, false); RenderTexture currentRT ... 阅读全文

posted @ 2019-02-27 10:48 sevenPixels 阅读(1175) 评论(0) 推荐(0) 编辑

导航