您好,欢迎光临本网站![请登录][注册会员]  
文件名称: Unity3D圣典中文脚本
  所属分类: C#
  开发工具:
  文件大小: 8mb
  下载次数: 0
  上传时间: 2013-12-11
  提 供 者: wang_w******
 详细说明: This is a short overview of how scripting inside Unity works. Scripting inside Unity consists of attaching custom script objects called behaviours to game objects. Different functions inside the script objects are called on certain events. The most used ones being the following: 这是一个简短的Unity脚本手册 Unity的脚本功能,是通过将自定义的脚本附加到物体对象构成的,我们称之为行为.脚本中有各种函数被不同的事件所调用.下面几个最常用的: Update: This function is called before rendering a frame. This is where most game behaviour code goes, except physics code. 这个函数在运行一帧之前被调用.这是很多游戏运行行为代码的地方,除了物理代码. FixedUpdate: This function is called once every physics time step. This is the place to do physics-based game behaviour. 这个函数会在每个固定的物理时间片被调用一次.这是放置游戏基本物理行为代码的地方. Code outside any function 函数外部代码 : Code outside functions is run when the object is loaded. This can be used to initialise the state of the script. ??函数外部的代码在物体被加载时运行.这可以用来初始化脚本状态. Note: Sections of this document assume you are using Javascript, but see Writing scripts in C# for information about how to use C# or Boo scripts. 注意:这个文档假设你使用的是Javascript,否则请查看 Writing scripts in C# (用C#编写脚本)来获取如何使用C#或Boo编写脚本. You can also define event handlers. These all have names starting with On, (i.e. OnCollisionEnter). To see the full list of predefined events, see the documentation for MonoBehaviour. 你也可以使用事件处理程序.这些函数的名字都开始于On(类似的OnCollisionEnter).看所有的预定义事件列表,查阅文档 MonoBehaviour . ...展开收缩
(系统自动生成,下载前可以参看下载内容)

下载文件列表

相关说明

  • 本站资源为会员上传分享交流与学习,如有侵犯您的权益,请联系我们删除.
  • 本站是交换下载平台,提供交流渠道,下载内容来自于网络,除下载问题外,其它问题请自行百度
  • 本站已设置防盗链,请勿用迅雷、QQ旋风等多线程下载软件下载资源,下载后用WinRAR最新版进行解压.
  • 如果您发现内容无法下载,请稍后再次尝试;或者到消费记录里找到下载记录反馈给我们.
  • 下载后发现下载的内容跟说明不相乎,请到消费记录里找到下载记录反馈给我们,经确认后退回积分.
  • 如下载前有疑问,可以通过点击"提供者"的名字,查看对方的联系方式,联系对方咨询.
 相关搜索: Unity3d U3D 圣典
 输入关键字,在本站1000多万海量源码库中尽情搜索: