sourceTree外部工具解决冲突BCompare
2019-4-28 雨辰
SourceTree 外部对比工具: https://www.scootersoftware.com/download.php 注册码: w4G-in5u3SH75RoB3VZIX8htiZgw4ELilwvPcHAIQWfwfXv5n0IHDp5hv 1BM3+H1XygMtiE0-JBgacjE9tz33sIh542EmsGs1yg638UxVfmWqNLqu- Zw91XxNEiZF7DC7-iV1XbSfsgxI8Tvqr-ZMTxlGCJU+2YLveAc-YXs8ci RTtssts7leEbJ979H5v+G0sw-FwP9bjvE4GCJ8oj+...标签: 技术问题
Unity Asset Danshari 资源断舍离
Git :https://github.com/akof1314/UnityAssetDanshari 资源清理重复以及引用被引用查找 原因 在游戏制作过程,随着资源越来越多,可能存在重复的资源,也需要删除不被使用的资源,但是如果使用 Unity 的 API 去查找引用关系将会很耗时间,另外,资源都是对应使用的,比如 UI 图片只在 UI 界面上进行引用,所以不需要去查找其他地方是否引用到。 目标 实现可以自定义类别的资源清理,也可以查看资源的引用情况。标签: Unity3D-优化性能 Unity3D-Shader 技术问题
游戏高性能战争迷雾系统
https://github.com/smilehao/fog-of-war fog-of-war Unity3D游戏高性能战争迷雾系统 博客:http://www.cnblogs.com/SChivas/p/7881515.htmlOpenCVForUnity Examples 之脸部识别 AR
2019-4-23 雨辰
OpenCVForUnity Examples git: https://github.com/EnoxSoftware/OpenCVForUnity Demo WebGL https://enoxsoftware.github.io/OpenCVForUnity/webgl_example/index.html Android https://play.google.com/store/apps/details?id=com.enoxsoftware.opencvforunityexample ...标签: Unity3D-优化性能 Unity3D
Unity的投影阴影
2019-2-22 雨辰
转自: https://github.com/xieliujian/UnityDemo_ProjectorShadow blog: https://zhuanlan.zhihu.com/p/42433900删除所有Prefab 上Miss的脚本
/************************************************************ Description:删除所有Miss的脚本 ************************************************************/ using UnityEngine; using UnityEditor; public class DeleteMissingScripts : MonoBehaviour { [MenuItem("Tools/Delete Missing Scripts")] ...标签: Unity3D-Editer
带权重的随机
/// <summary> /// 带权重的随机 /// </summary> /// <param name="list">原始列表</param> /// <param name="count">随机抽取条数</param> /// <returns></returns> public static List<T> GetRandomList<T>(List<...标签: C#
Unity 头发随动效果 SpringBone
目标 实现角色的衣袖、头发、裙摆、披风、尾巴等,在角色运动时,可以产生随动的效果。类似王者荣耀角色展示界面,具体介绍:http://youxiputao.com/articles/11495 SpringBone 原版:http://rocketjump.skr.jp/unity3d/109/ 改版:https://github.com/unity3d-jp/unitychan-crs标签: Unity3D
unity 实现简单的宠物跟随(平滑处理)
1: 玩家移动类 using UnityEngine; using System.Collections; public class PlayerMove : MonoBehaviour { public float speed = 8f; Animator anim; // Use this for initialization void Start () { anim = this.GetComponent<Animator>(); } // Update is called once per fra...标签: Unity3D
xLua开源
https://github.com/Tencent/xlua xLua的几项突破 xLua在功能、性能、易用性都有不少突破,这几方面分别最具代表性的是: Unity3D全平台热补丁技术,可以运行时把C#实现(方法,操作符,属性,事件,构造函数,析构函数,支持泛化)替换成lua实现; 自定义struct,枚举在Lua和C#间传递无C# gc alloc; 编辑器下无需生成代码,开发更轻量;标签: Unity3D