码迷,mamicode.com
首页 >  
搜索关键字:unity profile使用    ( 7761个结果
Python资源
官方提供的邮件列表和新闻组: https://www.python.org/community/lists/ ...
分类:编程语言   时间:2020-02-13 15:10:49    阅读次数:72
【Unity|C#】基础篇(19)——集合库(Collections)
【学习资料】 《C#图解教程》(第6章):https://www.cnblogs.com/moonache/p/7687551.html 电子书下载:https://pan.baidu.com/s/1mhOmBG0 其他文章 C#集合类型大揭秘(实现原理):https://www.cnblogs.c ...
分类:编程语言   时间:2020-02-13 00:18:53    阅读次数:86
Unity杂记
void SwitchAnim() { if (isGround) { if (state != State.PlayerIdle && ((state == State.PlayerRun && Mathf.Abs(rb.velocity.x) < 0.01f) || state == State ...
分类:编程语言   时间:2020-02-10 13:25:44    阅读次数:66
unity Failed to create agent because there is no valid NavMesh
在进行简单的导航/寻路练习时遇到这个问题 后来在 这里 找到了解决办法,原因是没有进行网格烘培Bake。 那么,我们进行简单的烘培 我的需求是只要能进行导航即可,所以只对地面进行默认烘培,点击Bake进行烘培。 重新运行就OK了。 ...
分类:编程语言   时间:2020-02-09 16:49:08    阅读次数:133
unity Camera.main.X找不到
在unity中编辑camera的脚本时遇到了这个问题 想要去访问并修改Camera的相关属性以期达到操纵主相机的目的,但是main老是找不到 原因: 脚本名称/类名设置成Camera了! 解决方法: 1. 使用 UnityEngine.Camera.main 代替 Camera.main 使用 2. ...
分类:编程语言   时间:2020-02-09 14:43:40    阅读次数:258
unity 在模型上绘画
```C# using UnityEngine; /// /// 在模型上绘画 /// public class DrawOnModel:BaseMonoBehaviour{ [Tooltip("颜色")] public Color color=Color.cyan; [Tooltip("笔刷大小"... ...
分类:编程语言   时间:2020-02-08 17:17:27    阅读次数:91
【Unity|C#】基础篇(12)——反射(Reflection)(核心类:Type、Assembly)
【学习资料】 《C#图解教程》(第24章):https://www.cnblogs.com/moonache/p/7687551.html 电子书下载:https://pan.baidu.com/s/1mhOmBG0 【内容】 对以下文章的整合: 详解C#中的反射(主要参考):https://www ...
分类:编程语言   时间:2020-02-08 15:50:08    阅读次数:151
热更新--lua
参考链接:https://www.cnblogs.com/imteach/p/11267312.html 介绍: Lua的几个变种:XLua、ToLua(原uLua)和Slua都可以做Unity热更,而ToLua更是提供了一个简易的热更框架--LuaFramework_UGUI ToLua搭建了一个 ...
分类:其他好文   时间:2020-02-06 20:19:07    阅读次数:62
【Unity|C#】基础篇(6)——const、readonly、static readonly
【学习资料】 《C#图解教程》(第6章):https://www.cnblogs.com/moonache/p/7687551.html 电子书下载:https://pan.baidu.com/s/1mhOmBG0 【内容】 const readonly static readonly 三者比较 【 ...
分类:编程语言   时间:2020-02-06 20:06:33    阅读次数:75
使用Visual Studio编写Unity脚本时不联想代码的解决办法
1.Unity版本5.6.6 Visual Studio2019 2.点击Unity编辑器的Edit->Preferences->External Tools->External Script Editor 如果没有显式所使用的VS,则点击Browser手动添加VS的exe文件: D:\VS\Com ...
分类:编程语言   时间:2020-02-05 16:46:27    阅读次数:284
7761条   上一页 1 ... 39 40 41 42 43 ... 777 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!