---恢复内容开始---

1.Mono打不开且鼠标点击标签页无反应的解决办法

http://answers.unity3d.com/questions/574157/monodevelop-not-opening-in-unity-43.html0

2.Rename: Ctrl + H (Mono暂时没有好的rename方案)

在场景中飞行 : 鼠标右键 + WASD 按住Shift 会提速

3.将场景中的物体拖入Project,能生成其Prefab

Vetor3.Lerp(start,end,frac) 用于线性插值(其中frac为[0,1])

4.使用#define 需要在文件的第一个分号之前

Cannot define or undefine preprocessor symbols after first token in file

5.C#中var关键字

http://blog.csdn.net/courageously/article/details/5695626

6.svn冲突:先删除了本地冲突的文件,再更新则可解决此问题

7.Vector3.magnitude Returns the length of this vector (Read Only).

8.DrawGizmos的时候tiff格式的缩写为tif

9.将动画调整为loop才会一直循环,否则在该状态下,该动画只会播放一遍!

10.Random.Range

static float Range(float min, float max);
Description

Returns a random float number between and min [inclusive] and max [inclusive] (Read Only).

static function Range(min: int, max: int): int;
Description

Returns a random integer number between min [inclusive] and max [exclusive] (Read Only).

11.m_aniInfo = m_animator.GetCurrentAnimatorStateInfo(0) 要在Update中调用,否则后面的判断可能出现不正确的情况

12.Input.GetKeyUp(KeyCode.Space)   Input.GetKeyUp("space")

一些unity问题的收集的更多相关文章

  1. UNITY优化资料收集

    U3D手册: Optimizing garbage collection in Unity games https://zhuanlan.zhihu.com/p/25306993 https://gi ...

  2. [Unity] 常用技巧收集

    Unity 屏幕旋转 void Update () { //处理横向两个方向旋转 if(Input.deviceOrientation == DeviceOrientation.LandscapeLe ...

  3. UNITY插件信息收集

    2018.8.7 UNITY超级优化神器 : Amplify Impostors

  4. Unity Github 项目收集

    http://gad.qq.com/article/detail/24048 重磅推荐: Github 热门 Unity Assets 查询:http://unitylist.com/browse 最 ...

  5. 最棒的Unity Github 项目收集(2016)

    http://1darray.com/blog/2016/03/08/best-unity-github-repositories/ List of best public GitHub reposi ...

  6. Unity 图文重现官方教程视频 2droguelike 第一集

    初衷: 本人初学Unity,四处收集了一些视频和教材,学习和摸索了一段时间, 我发现官网教程简单易上手,只不过他是英文讲解不方便,我就想把他翻译翻译吧, 然后我又发现看视频学习要暂停回放好多遍,麻烦, ...

  7. Unity5-ABSystem(四):AssetBundle依赖

    版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明.本文链接:https://blog.csdn.net/lodypig/article/detai ...

  8. unity收集log工具

    参考 yusong:http://www.xuanyusong.com/archives/2477 凉鞋     :https://www.cnblogs.com/liangxiegame/p/Uni ...

  9. Unity 插件收集(持续更新)

    MGS Machinery Unity绑定机械关节,铰链,机构插件包.    MGS Mechanical Drive 用于绑定场景中的机械驱动器的Unity插件   Unity Wave Propa ...

随机推荐

  1. MySQL 报错记录

    #--------------------------------------------------------------------------------------------------- ...

  2. Ubuntu终端快捷键使用

    快捷键 功能 Tab 自动补全 Ctrl+a 光标移动到开始位置 Ctrl+e 光标移动到最末尾 Ctrl+k 删除此处至末尾的所有内容 Ctrl+u 删除此处至开始的所有内容 Ctrl+d 删除当前 ...

  3. [UE4]Character,飞行模式。

    Character 是pawn的子类,可以行走.跳跃.游泳.飞行的Pawn.

  4. application/xml 和 text/xml的区别

    application/xml and text/xml的区别 经常看到有关xml时提到"application/xml" 和 "text/xml"两种类型, ...

  5. Impala源码分析

    问题导读:1.Scheduler任务中Distributed Plan.Scan Range是什么?2.Scheduler基本接口有哪些?3.QuerySchedule这个类如何理解?4.Simple ...

  6. 在docker中运行jenkins实现代码自动发布到测试服务器

    在docker中运行jenkins 用的镜像是apline版:lts-alpine,并设置正确的时区. docker run --name jenkins_master -d \ -p 8081:80 ...

  7. win10下多版本apache(2.2,2.4)+php(5.3.5,5.5.37,5.6.25,7.0.8)注意点

    1.Loaded Configuration File 问题: apache2.2 httpd PHPIniDir D:\php5.3.5\php.ini AddType application/x- ...

  8. 学习MongoDB 七: MongoDB索引(索引基本操作)(一)

    一.简介 在MongoDB建立索引能提高查询效率,只需要扫描索引只存储的这个集合的一小部分,并只把这小部分加载到内存中,效率大大的提高,如果没有建立索引,在查询时,MongoDB必须执行全表扫描,在数 ...

  9. tcp 大文件上传 ,切换目录 及登陆文件加盐处理

    实现大文件的传输 服务器 import socketimport jsonimport structsk = socket.socket()sk.bind(("127.0.0.1" ...

  10. python-pycharm中使用anaconda部署python环境

    pycharm中使用anaconda部署python环境 今天来说一下python中一个管理包很好用的工具anaconda,可以轻松实现python中各种包的管理.相信大家都会有这种体验,在pycha ...