zoukankan      html  css  js  c++  java
  • UnityLearn_Beginner_UnityBasics

    UnityLearn_Beginner_UnityBasics

    Unity官方教程_BeginnerLevel

    课程: UnityBasics

    Tutorial. Using the Unity Interface

    The Scene View

    快捷键:
      hold alt + leftMouseButton, we can drag to rotate around our current point of focus
      hold alt + rightMouseButton, we can drag to zoom in and out at the current point of focus

    Center/ Pivot mode的使用: 在选择多个GameObject时会有完全不一样的效果

    Scene/Hierachy面板的搜索功能: 
      t: light -- 搜索带有Light组件的所有GameObject

      The Game View

    Display drop-down menu:
      choose between a list of cameras in the scene (camera的display属性默认值为display1)
      也可以用于isolate some specific cameras during play testing 

    The Project Window:

    meta文件:

    每一个asset文件,都会有一个associated meta file
    meta files are files created by unity when a new asset is created or imported 
    meta files contains importatnt infomation about how the asset is used in the project
    需要确保这些meta文件与related的asset文件在一起(stay with)
      所以在restructure(rename/ delete/ move等)目录时,推荐在Unity的ProjectWindow中进行操作

    Search Bar:

    filter类型有两种: 类型/ Tag标签(即在Inspector中的tag)

    也可以手动在搜索栏中打入filter:
      如"coffee t:texture"

    The Inspector Window:

    Normal/ Debug mode:
      Normal mode: shows all the public editable properties
      Debug mode: shows all the properties (including private ones, is still not able to be edited) 

     

     

  • 相关阅读:
    MVC3 缓存应用
    centos下安装tomcat
    VS2010安装完SP1后再安装Silverlight Tools 4遇到的问题解决办法
    TOMCAT多站点配置
    C#.NET 添加图片水印
    装了vs11后运行MVC3程序出问题
    ASP.NET Session的七点认识
    C# 用正则取文本中所有链接
    Long time no blog...
    从程序员到项目经理(二)
  • 原文地址:https://www.cnblogs.com/FudgeBear/p/11069894.html
Copyright © 2011-2022 走看看