当前位置:网站首页>脚本生命周期
脚本生命周期
2022-07-06 04:01:00 【A plum in fall】
文章目录
前言
MonoBehaviour类定义了一个脚本文件从最初被加载,到最后被销毁的一个完整过程。这个过程,通过对应的方法体现出来,在不同的方法中完成不能的功能。
我们把这些方法称为:脚本生命周期相关的方法。
一、初始化相关的方法
Awake()
脚本被加载到场景中时自动调用
整个生命周期中只执行一次
OnEnable()
当对象变为可用或激活状态时调用,判断对象或脚本是否可用
配合OnDisable()方法一起使用
执行次数不确定
Start()
第一次Update之前调用
整个生命周期中只执行一次,用于进行初始化
二、更新相关的方法
FixedUpdate()
固定更新
以帧为单位进行场景的刷新,以固定的时间隔来进行刷新
与物理相关的更新操作,放在FixedUpdate()完成
Update()
更新
每一帧与每一帧的执行时间可能是不一致的
Update()执行速率与硬件设备和被渲染物体有关系,有时快有时慢
主要完成场景中数据的更新和数据的逻辑处理操作
LateUpdate()
晚于更新
当一帧执行结束,在准备下一帧执行之前,会调用该方法
OnGUI()
渲染和处理GUI事件
三、销毁相关的方法
OnDisable()
当对象或脚本处于不可用(或不可激活)时执行
执行几次不确定
一般会与OnEnable()配合使用
OnDestory()
整个生命周期中只执行一次
当对象(脚本文件)被销毁时只执行该方法
一般会先执行OnDisable(),将对象变为不可用状态,然后再销毁
边栏推荐
- [001] [stm32] how to download STM32 original factory data
- C mouse event and keyboard event of C (XXVIII)
- Alibaba testers use UI automated testing to achieve element positioning
- How does technology have the ability to solve problems perfectly
- math_ Derivative function derivation of limit & differential & derivative & derivative / logarithmic function (derivative definition limit method) / derivative formula derivation of exponential functi
- DM8 backup set deletion
- 51nod 1130 n factorial length V2 (Stirling approximation)
- Ybtoj coloring plan [tree chain dissection, segment tree, tarjan]
- 【FPGA教程案例11】基于vivado核的除法器设计与实现
- Mathematical modeling regression analysis relationship between variables
猜你喜欢
【FPGA教程案例11】基于vivado核的除法器设计与实现
Solution to the problem that the root account of MySQL database cannot be logged in remotely
MySQL reads missing data from a table in a continuous period of time
C#(三十一)之自定义事件
What is the difference between gateway address and IP address in tcp/ip protocol?
WPF effect Article 191 box selection listbox
MySQL about self growth
KS008基于SSM的新闻发布系统
No qualifying bean of type ‘......‘ available
Detailed explanation of serialization and deserialization
随机推荐
pd. to_ numeric
记一次excel XXE漏洞
LTE CSFB test analysis
Oracle ORA error message
Multi project programming minimalist use case
C#(二十八)之C#鼠标事件、键盘事件
Align items and align content in flex layout
mysql关于自增长增长问题
Global and Chinese markets for medical gas manifolds 2022-2028: Research Report on technology, participants, trends, market size and share
The Research Report "2022 RPA supplier strength matrix analysis of China's banking industry" was officially launched
【PSO】基于PSO粒子群优化的物料点货物运输成本最低值计算matlab仿真,包括运输费用、代理人转换费用、运输方式转化费用和时间惩罚费用
Blue Bridge Cup - day of week
C (XXIX) C listbox CheckedListBox Imagelist
Error 1045 (28000): access denied for user 'root' @ 'localhost' (using password: no/yes
Python book learning notes - Chapter 09 section 01 create and use classes
How to execute an SQL statement in MySQL
Record the pit of NETCORE's memory surge
Containerization Foundation
asp. Core is compatible with both JWT authentication and cookies authentication
Esp32 (based on Arduino) connects the mqtt server of emqx to upload information and command control