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) 

     

     

  • 相关阅读:
    vue动态改变样式
    前端上传到七牛云图片
    vue实现发送验证码60秒
    移动端使用lib-flexible
    作用域插槽
    vue中的keep-alive
    vue优化
    vue动画move的实现
    vue自带的动画效果
    v-model的理解
  • 原文地址:https://www.cnblogs.com/FudgeBear/p/11069894.html
Copyright © 2011-2022 走看看