摘要: using UnityEngine; using System.Collections; using System.Collections.Generic; using Obi; [RequireComponent(typeof(ObiSolver))] public class Collision 阅读全文
posted @ 2025-01-14 10:47 SummerTrainnn 阅读(37) 评论(0) 推荐(0)
摘要: 1.首先登录github并在自己的首页找到repository>Create a new repository 2.找到本地项目根目录 git init 3.克隆远程仓库 git clone git@github.com:yourName/yourProject.git 4.添加忽略文件 以要忽略一 阅读全文
posted @ 2024-12-27 17:04 SummerTrainnn 阅读(121) 评论(0) 推荐(0)
摘要: using System.Collections; using System.Collections.Generic; using System.Collections.ObjectModel; using System.Linq; using UnityEngine; /*转为UTF-8*/ pu 阅读全文
posted @ 2024-12-25 17:29 SummerTrainnn 阅读(54) 评论(0) 推荐(0)
摘要: 通过UnityWebRequest /// <summary> /// 获取本地某个路径下的txt文本文档 /// *NOTE 需要包含文件拓展名 /// </summary> /// <param name="filePath">txt文本的路径</param> /// <returns></re 阅读全文
posted @ 2024-12-13 15:48 SummerTrainnn 阅读(189) 评论(0) 推荐(0)
摘要: /// <summary> /// Untiy下载服务器的某个文件资源 /// </summary> /// <param name="url">文件的服务器地址</param> /// <param name="localPath">文件需要保存的本地地址</param> /// <returns 阅读全文
posted @ 2024-12-13 15:36 SummerTrainnn 阅读(131) 评论(0) 推荐(0)
摘要: using System; using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.UI; public class DrawRect : MonoBehavio 阅读全文
posted @ 2024-11-18 11:20 SummerTrainnn 阅读(73) 评论(0) 推荐(0)
摘要: using System; using System.Collections; using System.Collections.Generic; using System.Xml.Serialization; using UnityEngine; namespace eTaskHandleSyst 阅读全文
posted @ 2024-09-14 17:31 SummerTrainnn 阅读(9) 评论(0) 推荐(0)
摘要: 一、确认程序位置 确保你知道要运行的 Windows 程序的安装文件或可执行文件的位置。如果程序已经安装在 Windows 系统中,并且你想在麒麟 V10 Sp1 系统下通过 Wine 运行它,需要将该程序的安装目录或可执行文件复制到麒麟系统中,或者确保可以通过网络共享等方式访问到它。 二、打开终端 阅读全文
posted @ 2024-09-12 17:23 SummerTrainnn 阅读(3003) 评论(0) 推荐(0)
摘要: 1.进入目标文件夹 ls -r 可以打印所有的子文件名,可以通过这个判断当前的位置。 2.查看当前文件的权限 ls -l myExe.x86_64 可以打印此文件的权限,结果为-rw-rw-r-- ,表示可读可写,最右边--表明没有可执行权限。如果有,应该显示为X 3.修改权限 chmod +x m 阅读全文
posted @ 2024-08-23 11:16 SummerTrainnn 阅读(660) 评论(0) 推荐(0)
摘要: https://github.com/gkngkc/UnityStandaloneFileBrowser/releases/download/1.2/StandaloneFileBrowser.unitypackage 阅读全文
posted @ 2024-08-20 10:18 SummerTrainnn 阅读(26) 评论(0) 推荐(0)