Mathf.Approximately()

作者:追风剑情 发布于:2017-6-9 18:45 分类:Unity3d

public static bool Approximately(float a, float b); 判断两个float型是否近似相等。 示例 using UnityEngine; using System.Collections; public class ExampleClass : MonoBehaviour { void Start(...

阅读全文>>

标签: Unity3d

评论(0) 浏览(8953)

Mathf.SmoothDamp()

作者:追风剑情 发布于:2017-6-9 18:27 分类:Unity3d

public static float SmoothDamp(float current, float target, ref float currentVelocity, float smoothTime, float maxSpeed, float deltaTime); 平滑阻尼插值 表示效果:从current位置到target位置,先加速再减速运动。 us...

阅读全文>>

标签: Unity3d

评论(0) 浏览(5237)

Mathf.SmoothStep()

作者:追风剑情 发布于:2017-6-9 18:10 分类:Unity3d

public static float SmoothStep(float from, float to, float t); 在from与to之间平滑插值。 示例: using UnityEngine; using System.Collections; public class ExampleClass : MonoBehaviour { p...

阅读全文>>

标签: Unity3d

评论(0) 浏览(4900)

DES加密解密

作者:追风剑情 发布于:2017-6-2 17:36 分类:C#

转载: http://blog.csdn.net/tammy520/article/details/23434931 public class DESCrypto { private static byte[] Keys = { 0x12, 0x34, 0x56, 0x78, 0x90, 0xAB, 0xCD, 0xEF }; ...

阅读全文>>

标签: C#

评论(0) 浏览(8464)

着色器数据类型与精度

作者:追风剑情 发布于:2017-5-27 15:29 分类:Shader

高精准度float 32位 高精度通常用于世界空间位置,纹理坐标或涉及复数函数(如三角法或幂/取幂)的标量计算。 中等精度half 16位 范围为-60000至+60000,精度约为3位十进制数 半精度对于短矢量,方向,对象空间位置,高动态范围颜色是有用的。 低精度fixed 11位 范围为-2.0至+2.0和1/256精度 固定精度对常规颜色(通常存储在常规纹理中)和...

阅读全文>>

标签: Shader

评论(0) 浏览(4594)

让Sprite支持描边

作者:追风剑情 发布于:2017-5-25 20:05 分类:Shader

参考:http://blog.csdn.net/bulademian/article/details/57082556 一、修改Sprites-Default.shader Shader "Custom/Sprite-Outline" { Properties { [PerRendererData] _MainTex ("Sprite Texture...

阅读全文>>

标签: Shader

评论(0) 浏览(12217)

ISerializationCallbackReceiver

作者:追风剑情 发布于:2017-5-24 11:54 分类:Unity3d

用来处理不能被JsonUtility序列化的类,比如Dictionary using UnityEngine; using System; using System.Collections.Generic; /// <summary> /// 封装一个可被JsonUtility序列化&反序列化的字典类 /// </summary> [Ser...

阅读全文>>

标签: Unity3d

评论(0) 浏览(4150)

水波效果

作者:追风剑情 发布于:2017-5-22 20:57 分类:Shader

一、创建SinWater.shader Shader "Custom/SinWater" { Properties { _MainTex ("Texture", 2D) = "white" {} //控制波动周期长度 _DistanceFactor ("Distance Factor", float) = 1.0 //控制波动速率(值越大越快) _...

阅读全文>>

标签: Shader

评论(0) 浏览(5147)

Unity Remote

作者:追风剑情 发布于:2017-5-18 11:53 分类:Unity3d

一、应用商店下载Unity Remote安装到手机 二、在Unity中设置Edit->Project Settings->Editor 三、用数据线连接电脑与手机(要开启USB调试) 三、在手机中运行Unity Remote 四、在Unity中运行游戏,此时手机与电脑会同步运行。 如果连接不上,重启下Unity试试。

阅读全文>>

评论(0) 浏览(4900)

合成精灵图集——Texture2D.PackTextures()

作者:追风剑情 发布于:2017-5-17 19:06 分类:Unity3d

[MenuItem("ZWWX/Merge Selection Sprites")] static void MergeSprites() { UnityEngine.Object[] gos = Selection.GetFiltered(typeof(Texture2D), SelectionMode.Assets); Debug.Log...

阅读全文>>

标签: Unity3d

评论(0) 浏览(8200)

安装固态硬盘

作者:追风剑情 发布于:2017-5-16 17:53 分类:其他

一、在BIOS中开启AHCI模式 用AS SSD Benchmark软件查看是否打开了AHCI模式 二、设置4K对齐 (1)用AS SSD Benchmark软件查看是否4K对齐 (2)若没4K对齐,使用DiskGenius分区工具手动进行4K对齐(扇区数选择2048),只要首分区对齐即可。 三、接在原生SATA3.0接口下 用HD Tune Pro软件查看主板是否支持SATA...

阅读全文>>

评论(0) 浏览(3353)

动画编辑(四)——Any State

作者:追风剑情 发布于:2017-5-13 21:01 分类:Unity3d

Any State所指向的转换只要满足条件就会立即转换,而不管当前处于什么状态。 例如 只要isState2为true就会立即转到State2状态,而不管当前是处于State1还是其他任何状态。 Has Exit Time: 如果不勾上,就不会自动转到下一个状态。 Transition Duration: 这个时间...

阅读全文>>

标签: Unity3d

评论(0) 浏览(5630)

屏幕坐标——挖空效果

作者:追风剑情 发布于:2017-5-13 14:55 分类:Shader

一、创建ScreenCutout.shader Shader "Custom/Screen Cutout" { Properties { _MainTex ("Texture", 2D) = "white" {} _ClipX0 ("Clip x0", float) = 0 _ClipY0 ("Clip y0", float) = 0 _ClipX1...

阅读全文>>

标签: Shader

评论(0) 浏览(4135)

Google Play services

作者:追风剑情 发布于:2017-5-12 17:45 分类:Android

Google Play services API Description in build.gradle Google+ com.google.android.gms:play-services-plus:10.2.4 Google Account...

阅读全文>>

标签: Android

评论(0) 浏览(4728)

Unity Attributes

作者:追风剑情 发布于:2017-5-11 19:06 分类:Unity3d

https://docs.unity3d.com/ScriptReference/HelpURLAttribute.html 给字段添加提示 -------------------------------------------------------------------------------------------- 给...

阅读全文>>

标签: Unity3d

评论(0) 浏览(4429)

Mathf.Repeat()

作者:追风剑情 发布于:2017-5-11 14:27 分类:Unity3d

public static float Repeat(float t, float length); 此方法相当于取模(t%length) for (int i = -6; i <= 6; i++ ) Debug.Log(Mathf.Repeat(i, 3f)); 运行测试

阅读全文>>

标签: Unity3d

评论(0) 浏览(8287)

运动模糊(一)

作者:追风剑情 发布于:2017-5-9 11:47 分类:Shader

一、创建Shader Shader "Custom/MotionBlur" { Properties { _MainTex ("Texture", 2D) = "white" {} //混合图像时使用的混合系数 _BlurAmount ("Blur Amount", Float) = 1.0 } SubShader { Tags { "Ren...

阅读全文>>

标签: Shader

评论(0) 浏览(4581)

自定义Inspector(一)

作者:追风剑情 发布于:2017-5-8 14:50 分类:Unity3d

一、创建Custom.cs并把它挂在一个GameObject上 using UnityEngine; public class Custom : MonoBehaviour { } 二、创建CustomInspector.cs并放在Assets/Editor目录下 using System.Collections; using...

阅读全文>>

标签: Unity3d

评论(0) 浏览(5068)

三次埃尔米特(Hermite)曲线插值

作者:追风剑情 发布于:2017-5-7 9:32 分类:Algorithms

三次埃尔米特(Hermite)曲线插值 已知表示一条曲线的某个函数f(t)在两点t0、t1的函数值f(t0)、f(t1)和一阶导数值f'(t0)、f'(t1),求三次多项式P(t):   使其满足: 于是可得到下列一组方程: 求解上述方程组得到三次多项式 经整理,所...

阅读全文>>

标签: Algorithms

评论(0) 浏览(7280)

拉格朗日(Lagrange)曲线插值

作者:追风剑情 发布于:2017-4-27 23:33 分类:Algorithms

  已知若干个离散点的位置值和导数值,求经过这些点的插值多项式,是数学上熟知的Hermite插值问题。这一问题的明确提法是:已知函数f(t)在k+1个点{ti}处的函数值和导数值$\{f^{(j)}(t_i)\},i=0,1,\cdots,k,\quad j=0,1,\cdots,m_i-1$要求确定一个$N=m_0+m_1+\cdots+m_k-1$次的多项式P(t),满足下面的插值条件: $...

阅读全文>>

标签: Algorithms

评论(0) 浏览(5066)

Rigidbody2D

作者:追风剑情 发布于:2017-4-26 11:32 分类:Unity3d

一、动态刚体 Dynamic被设计用来制作在物理模拟下会移动的物体。它会与所有类型的Rigidbody2D进行碰撞,是最常用的Rigidbody2D类型、默认的类型,同时也是最耗费性能的类型。 Collision Detection Discrete: 离散检测,高速运动时容易穿过物体。 Continuous: 连续检测,适...

阅读全文>>

标签: Unity3d

评论(0) 浏览(4576)

动画编辑(三)——转换

作者:追风剑情 发布于:2017-4-21 23:40 分类:Unity3d

示例一:使一个Cube先从(0,0,0)移动到(5,0,0),再从(5,0,0)移动到(5,5,0) 一、创建一个Cube 二、创建Cube.controller、Cube1.anim、Cube2.anim 三、编辑动画状态机(Cube.controller) 创建状态转换 ...

阅读全文>>

标签: Unity3d

评论(0) 浏览(3230)

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号