说明:Mathf类主要提供数学计算的函数与常量,包含了所有数学计算时需要用到的函数.所以掌握Mathf类里面的成员变量和成员函数是必要的. 使用Mathf:通常的如果使用一个类中的成员变量或者成员函数,首先需要定义一个类对象,然后通过类对象再使用里面的属性和函数.但是如果使用Mathf的成员变量和成员函数的话,可以直接使用Mathf类来访问.如使用PI时,可以用Mathf.PI.原因是在Mathf类中,其所有的成员变量和成员函数全部是公有的静态的. 类变量: Class Variables类变量…
Mathf.Abs绝对值 计算并返回指定参数 f 绝对值. Mathf.Acos反余弦 static function Acos (f : float) : float 以弧度为单位计算并返回参数 f 中指定的数字的反余弦值. Mathf.Approximately近似 static function Approximately (a : float, b: float) : bool 比较两个浮点数值,看它们是否非常接近, 由于浮点数值不精确,不建议使用等于来比较它们.例如,1.0==10.0…
先上代码: 1 using System.Threading; using UnityEngine; using System.IO; using System.Collections; public class TextureUtility { public class ThreadData { public int start; public int end; public ThreadData (int s, int e) { start = s; end = e; } } private…
Time class in UnityEngine Description The interface to get time information from Unity. Static Variables captureFramerate Slows game playback time to allow screenshots to be saved between frames. 表示设置每秒的频率而不考虑真实时间 deltaTime The time in seconds it t…
进行本地数据存档和载入在游戏开发中非常常见,几乎任何一款游戏都需要这样的功能. 命名空间: using System.IO; 主要用于引入File类以处理各类文件操作. using System.Runtime.Serialization.Formatters.Binary; 用于对文件进行序列化与反序列化. 1.判断数据文件是否存在: static public bool HasGameSaveData(string fileName) { if (File.Exists(Applicatio…