unity3d 屏幕适配 iPhone X 解决方案
1:获取手机型号后针对适配 #import <sys/utsname.h> + (NSString*)getDeviceVersion { struct utsname systemInfo; uname(&systemInfo); NSString *deviceVersion = [NSString stringWithCString:systemInfo.machine encoding:NSUTF8StringEncoding]; return deviceVersion; } //在unity导出的xcode工...标签: Unity3D-优化性能 Unity3D 技术问题
ascill 码转换
http://www.qqxiuzi.cn/bianma/ascii.htm标签: 技术问题
test-ipv6
http://test-ipv6.com标签: 网络通信协议
《奥古捕鱼》3D 千炮捕鱼 上线
https://play.google.com/store/apps/details?id=com.jjworld.fishing 扫码下载标签: Unity3D-Editer Unity3D-Shader
unity UnityEngine.dll 源代码
https://github.com/MattRix/UnityDecompiled/tree/master/UnityEngine标签: Unity3D-Editer Unity3D-Shader Unity3D unity
Cornerstone mac 破解版 启动损坏 解决
打开终端: sudo xattr -rd com.apple.quarantine /Applications/Cornerstone.app 即可使用标签: 技术问题
excel System.Data.OleDb.OleDbException 问题
最近 使用 读取excel 发现报这个错 ,原来是系统更新了截图后出现问题。 卸载就好了。 原因: 由于微软在2017-10-10更新了安全补丁(KB4041678,KB4041681),两个补丁的更新内容中,都包含有这个更新内容(Security updates to Microsoft Windows Search Component, Windows kernel-mode drivers, Microsoft Graphics Component, Internet Explorer, Windows kernel, Windows W...标签: 技术问题
Unity Editor 查找替换 Material材质球
using UnityEngine; using UnityEditor; public class ShowMaterialUsePrefab : EditorWindow { private static Material _material; private static bool isChangeMaterial = false; private static Material _changeMaterial; //window菜单下 [MenuItem("Window/查找材质球引用")] private st...标签: Unity3D-Editer
Unity Editor 替换 UISprite 引用 Altas
using UnityEngine; using UnityEditor; using System.Collections.Generic; /// <summary> /// 根据鼠标点中的对象批量修改所有精灵 图集,脚本位于Editor文件夹 /// </summary> public class ChangeAltasWindow : EditorWindow { private static bool isChangAltas = false; private static int altCount = 1; ...标签: Unity3D-Editer
Unity Editor 替换UILabel 引用的Font
using UnityEngine; using UnityEditor; /// <summary> /// 根据鼠标点中的对象批量修改所有UI字体脚本,脚本位于Editor文件夹 /// </summary> public class ChangeFontWindow : EditorWindow { //是否改变当前字体 private static bool isChangFont = false; //是否改变引用字体库 private static bool isChangFontLibrary = f...标签: Unity3D-Editer