- 博客(8)
- 收藏
- 关注
原创 unityc#根据变量名任意设置修改保存读取数据
public class Base_all{ static System.Reflection.FieldInfo fi; public static void Set(object o,string var_name, string value) { fi = o.GetType().GetField(var_name, System.Reflection.BindingFlags.Static | System.Reflection.BindingFlag.
2022-04-10 14:58:31 322
原创 windows文本转语音调用
internal class Program { public static bool runflag = true; static void Main(string[] args) { while (runflag) { V_speak(System.Console.ReadLine()); }; } //语音..
2022-03-03 10:32:13 510
原创 c#unity程序运行相关备忘
//开启新的实例 System.Diagnostics.Process.Start(System.Diagnostics.Process.GetCurrentProcess().MainModule.FileName);System.Threading.Thread.Sleep(5000);//关闭当前实例System.Diagnostics.Process.GetCurrentProcess().Kill(); Resources.UnloadUnusedAsse...
2022-02-23 17:05:36 187
原创 字符串路径文件名获取方法
string d = "c://ad/df/cv/gh/fgg.txt"; d.Substring(d.LastIndexOf('/') + 1);Time.realtimeSinceStartup;
2022-02-21 11:45:46 243
原创 c#不同编码字符之间转换,解决dll中文乱码问题
// UTF8转GBKbyte[] a = Encoding.UTF8.GetBytes("D://转.txt"); a = Encoding.Convert(Encoding.UTF8, Encoding.GetEncoding("GBK"), a); Encoding.GetEncoding("GBK").GetString(a);//需要转其它格式的,替换UTF8和GBK即可,代码中,UTF8为待转字符格式,GBK为转换后的字符编码格式//本转换可以有效解...
2022-02-18 12:08:42 1999
原创 unity相机旋转放大缩小平移
using UnityEngine;public class Camera_rota : MonoBehaviour{ // Start is called before the first frame update void Start() { } // Update is called once per frame void Update() { if (Input.GetMouseButton(0)).
2022-02-13 23:27:35 556 2
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人